Lines Matching refs:it
365 auto it = find_property(name, lineno); in get_strings() local
366 if (it == properties_.end()) { in get_strings()
371 std::vector<std::string> strings = android::base::Split(it->second.value(), ","); in get_strings()
381 auto it = find_property(name, lineno); in get_bool() local
382 if (it == properties_.end()) { in get_bool()
386 return it->second.value() == "true"; in get_bool()
390 auto it = find_property(name, lineno); in get_string() local
391 return (it == properties_.end()) ? "" : it->second.value(); in get_string()
449 auto it = properties_.find(name); in find_property() local
450 if (it != properties_.end() && lineno != nullptr) { in find_property()
451 *lineno = it->second.lineno(); in find_property()
454 return it; in find_property()