Lines Matching refs:it
99 auto it = properties.find("BuildDate"); in Callout() local
100 if (it != properties.end()) in Callout()
102 buildDate(std::get<std::string>(it->second)); in Callout()
105 it = properties.find("Manufacturer"); in Callout()
106 if (it != properties.end()) in Callout()
108 manufacturer(std::get<std::string>(it->second)); in Callout()
111 it = properties.find("Model"); in Callout()
112 if (it != properties.end()) in Callout()
114 model(std::get<std::string>(it->second)); in Callout()
117 it = properties.find("PartNumber"); in Callout()
118 if (it != properties.end()) in Callout()
120 partNumber(std::get<std::string>(it->second)); in Callout()
123 it = properties.find("SerialNumber"); in Callout()
124 if (it != properties.end()) in Callout()
126 serialNumber(std::get<std::string>(it->second)); in Callout()