Lines Matching refs:it
364 auto it = find_property(name, lineno); in get_strings() local
365 if (it == properties_.end()) { in get_strings()
370 std::vector<std::string> strings = android::base::Split(it->second.value(), ","); in get_strings()
380 auto it = find_property(name, lineno); in get_bool() local
381 if (it == properties_.end()) { in get_bool()
385 return it->second.value() == "true"; in get_bool()
389 auto it = find_property(name, lineno); in get_string() local
390 return (it == properties_.end()) ? "" : it->second.value(); in get_string()
448 auto it = properties_.find(name); in find_property() local
449 if (it != properties_.end() && lineno != nullptr) { in find_property()
450 *lineno = it->second.lineno(); in find_property()
453 return it; in find_property()