Lines Matching full:it

24  * The output of astyle should not be taken unquestioningly, but it is a good
171 for (auto it = annotations.begin(); it != annotations.end(); it++) { in parse_list_field() local
172 if (it->first.compare(0, elem_prefix.size(), elem_prefix) == 0) { in parse_list_field()
173 std::string elem_key = "vt" + it->first.substr(elem_prefix.size()); in parse_list_field()
174 elem_annotations[elem_key] = it->second; in parse_list_field()
183 for (auto it = elem_rules.begin(); it != elem_rules.end(); it++) { in parse_list_field() local
184 validation_rule* rule = new validation_rule(elem_prefix, *it); in parse_list_field()
198 for (auto it = annotations.begin(); it != annotations.end(); it++) { in parse_map_field() local
199 if (it->first.compare(0, key_prefix.size(), key_prefix) == 0) { in parse_map_field()
200 std::string key_key = "vt" + it->first.substr(key_prefix.size()); in parse_map_field()
201 key_annotations[key_key] = it->second; in parse_map_field()
206 for (auto it = key_rules.begin(); it != key_rules.end(); it++) { in parse_map_field() local
207 validation_rule* rule = new validation_rule(key_prefix, *it); in parse_map_field()
213 for (auto it = annotations.begin(); it != annotations.end(); it++) { in parse_map_field() local
214 if (it->first.compare(0, value_prefix.size(), value_prefix) == 0) { in parse_map_field()
215 std::string value_key = "vt" + it->first.substr(value_prefix.size()); in parse_map_field()
216 value_annotations[value_key] = it->second; in parse_map_field()
221 for (auto it = value_rules.begin(); it != value_rules.end(); it++) { in parse_map_field() local
222 validation_rule* rule = new validation_rule(value_prefix, *it); in parse_map_field()
269 auto it = annotations.find(key); in add_bool_rule() local
270 if (it != annotations.end() && !it->second.empty()) { in add_bool_rule()
271 for (auto& annotation_value : it->second) { in add_bool_rule()
279 std::istringstream(it->second.back()) >> std::boolalpha >> constant; in add_bool_rule()
292 auto it = annotations.find(key); in add_double_rule() local
293 if (it != annotations.end() && !it->second.empty()) { in add_double_rule()
294 for (auto& annotation_value : it->second) { in add_double_rule()
321 auto it = annotations.find(key); in add_enum_list_rule() local
322 if (it != annotations.end() && !it->second.empty()) { in add_enum_list_rule()
323 for (auto& annotation_value : it->second) { in add_enum_list_rule()
376 auto it = annotations.find(key); in add_double_list_rule() local
377 if (it != annotations.end() && !it->second.empty()) { in add_double_list_rule()
378 for (auto& annotation_value : it->second) { in add_double_list_rule()
420 auto it = annotations.find(key); in add_integer_rule() local
421 if (it != annotations.end() && !it->second.empty()) { in add_integer_rule()
422 for (auto& annotation_value : it->second) { in add_integer_rule()
449 auto it = annotations.find(key); in add_integer_list_rule() local
450 if (it != annotations.end() && !it->second.empty()) { in add_integer_list_rule()
451 for (auto& annotation_value : it->second) { in add_integer_list_rule()
493 auto it = annotations.find(key); in add_string_rule() local
494 if (it != annotations.end() && !it->second.empty()) { in add_string_rule()
495 for (auto& annotation_value : it->second) { in add_string_rule()