Lines Matching refs:properties

184                               std::unordered_map<std::string, PropertyValue>* properties,  in parse_config_file()  argument
307 if (properties->find(name) != properties->end()) { in parse_config_file()
314 (*properties)[name] = PropertyValue(std::move(value), cp.lineno()); in parse_config_file()
316 if (properties->find(name) == properties->end()) { in parse_config_file()
321 (*properties)[name] = PropertyValue(std::move(value), cp.lineno()); in parse_config_file()
326 (*properties)[name].append_value(std::move(value)); in parse_config_file()
331 (*properties)[name].append_value(std::move(value)); in parse_config_file()
360 explicit Properties(std::unordered_map<std::string, PropertyValue>&& properties) in Properties() argument
361 : properties_(std::move(properties)), target_sdk_version_(__ANDROID_API__) {} in Properties()
474 Properties properties(std::move(property_map)); in read_binary_config() local
482 …std::vector<std::string> additional_namespaces = properties.get_strings(kPropertyAdditionalNamespa… in read_binary_config()
487 bool versioning_enabled = properties.get_bool("enable.target.sdk.version"); in read_binary_config()
506 properties.set_target_sdk_version(target_sdk_version); in read_binary_config()
524 properties.get_strings(property_name_prefix + ".links", &lineno); in read_binary_config()
534 bool allow_all_shared_libs = properties.get_bool(property_name_prefix + ".link." + in read_binary_config()
537 std::string shared_libs = properties.get_string(property_name_prefix + in read_binary_config()
564 ns_config->set_isolated(properties.get_bool(property_name_prefix + ".isolated")); in read_binary_config()
565 ns_config->set_visible(properties.get_bool(property_name_prefix + ".visible")); in read_binary_config()
568 properties.get_string(property_name_prefix + ".whitelisted", &lineno); in read_binary_config()
581 ns_config->set_search_paths(properties.get_paths(property_name_prefix + ".search.paths", true)); in read_binary_config()
589 …ns_config->set_permitted_paths(properties.get_paths(property_name_prefix + ".permitted.paths", fal… in read_binary_config()