Lines Matching refs:it
368 auto it = find_property(name, lineno); in get_strings() local
369 if (it == properties_.end()) { in get_strings()
374 std::vector<std::string> strings = android::base::Split(it->second.value(), ","); in get_strings()
384 auto it = find_property(name, lineno); in get_bool() local
385 if (it == properties_.end()) { in get_bool()
389 return it->second.value() == "true"; in get_bool()
393 auto it = find_property(name, lineno); in get_string() local
394 return (it == properties_.end()) ? "" : it->second.value(); in get_string()
437 auto it = properties_.find(name); in find_property() local
438 if (it != properties_.end() && lineno != nullptr) { in find_property()
439 *lineno = it->second.lineno(); in find_property()
442 return it; in find_property()