Home
last modified time | relevance | path

Searched refs:GetWithoutPathExpansion (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/
Dvalues.cc823 return current_dictionary->GetWithoutPathExpansion(current_path, out_value); in Get()
945 bool DictionaryValue::GetWithoutPathExpansion(StringPiece key, in GetWithoutPathExpansion() function in base::DictionaryValue
957 bool DictionaryValue::GetWithoutPathExpansion(StringPiece key, in GetWithoutPathExpansion() function in base::DictionaryValue
959 return static_cast<const DictionaryValue&>(*this).GetWithoutPathExpansion( in GetWithoutPathExpansion()
967 if (!GetWithoutPathExpansion(key, &value)) in GetBooleanWithoutPathExpansion()
976 if (!GetWithoutPathExpansion(key, &value)) in GetIntegerWithoutPathExpansion()
985 if (!GetWithoutPathExpansion(key, &value)) in GetDoubleWithoutPathExpansion()
995 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion()
1004 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion()
1014 bool result = GetWithoutPathExpansion(key, &value); in GetDictionaryWithoutPathExpansion()
[all …]
Dvalues_unittest.cc1004 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
1028 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
1738 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("bool", nullptr)); in TEST()
1739 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("int", nullptr)); in TEST()
1740 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("double", nullptr)); in TEST()
1741 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("string", nullptr)); in TEST()
1742 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("binary", nullptr)); in TEST()
1743 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("dict", nullptr)); in TEST()
1744 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("list", nullptr)); in TEST()
1745 EXPECT_FALSE(main_dict.GetWithoutPathExpansion("DNE", nullptr)); in TEST()
Dvalues.h490 bool GetWithoutPathExpansion(StringPiece key, const Value** out_value) const;
492 bool GetWithoutPathExpansion(StringPiece key, Value** out_value);
/external/libchrome/components/policy/core/common/
Dschema.cc956 dict->GetWithoutPathExpansion(it.key(), &sub_value); in Normalize()