Searched refs:GetWithoutPathExpansion (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/ |
D | values.cc | 484 return current_dictionary->GetWithoutPathExpansion(current_path.as_string(), in Get() 613 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue 625 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue 627 return static_cast<const DictionaryValue&>(*this).GetWithoutPathExpansion( in GetWithoutPathExpansion() 635 if (!GetWithoutPathExpansion(key, &value)) in GetBooleanWithoutPathExpansion() 644 if (!GetWithoutPathExpansion(key, &value)) in GetIntegerWithoutPathExpansion() 653 if (!GetWithoutPathExpansion(key, &value)) in GetDoubleWithoutPathExpansion() 663 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion() 672 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion() 682 bool result = GetWithoutPathExpansion(key, &value); in GetDictionaryWithoutPathExpansion() [all …]
|
D | values_unittest.cc | 345 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST() 369 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST() 983 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("bool", NULL)); in TEST() 984 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("int", NULL)); in TEST() 985 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("double", NULL)); in TEST() 986 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("string", NULL)); in TEST() 987 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("binary", NULL)); in TEST() 988 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("dict", NULL)); in TEST() 989 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("list", NULL)); in TEST() 990 EXPECT_FALSE(main_dict.GetWithoutPathExpansion("DNE", NULL)); in TEST()
|
D | values.h | 302 bool GetWithoutPathExpansion(const std::string& key, 304 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
|