Home
last modified time | relevance | path

Searched refs:GetProperty (Results 1 – 3 of 3) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dconfig_file_test.cpp75 EXPECT_TRUE(section1.GetProperty("key1")); in TEST()
77 EXPECT_FALSE(section1.GetProperty("key2")); in TEST()
80 EXPECT_FALSE(section1.GetProperty("key3")); in TEST()
85 EXPECT_TRUE(section2.GetProperty("key1")); in TEST()
87 EXPECT_FALSE(section2.GetProperty("key2")); in TEST()
90 EXPECT_TRUE(cfg.GetProperty("global", "", "key1")); in TEST()
91 EXPECT_TRUE(cfg.GetProperty("library1", "34", "key2")); in TEST()
Dconfig_file.h44 bool GetProperty(const std::string &name) const { in GetProperty() function
56 bool operator[](const std::string &name) const { return GetProperty(name); }
114 bool GetProperty(const std::string &section_name, const std::string &version, in GetProperty() function
120 return it->second.GetProperty(property_name); in GetProperty()
/development/vndk/tools/elfcheck/bpflatten/
Dmain.go72 if prop, found := module.GetProperty("name"); found {