Home
last modified time | relevance | path

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

/external/libchrome/base/
Dvalues_unittest.cc337 ASSERT_TRUE(dict.GetDictionaryWithoutPathExpansion("this", &value2)); in TEST()
361 ASSERT_TRUE(dict.GetDictionaryWithoutPathExpansion("this", &value2)); in TEST()
1056 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("bool", NULL)); in TEST()
1057 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("int", NULL)); in TEST()
1058 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("double", NULL)); in TEST()
1059 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("string", NULL)); in TEST()
1060 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("binary", NULL)); in TEST()
1061 EXPECT_TRUE(main_dict.GetDictionaryWithoutPathExpansion("dict", NULL)); in TEST()
1062 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("list", NULL)); in TEST()
1063 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("DNE", NULL)); in TEST()
Dvalues.cc474 if (!current_dictionary->GetDictionaryWithoutPathExpansion( in Get()
678 bool DictionaryValue::GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion() function in base::DictionaryValue
692 bool DictionaryValue::GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion() function in base::DictionaryValue
697 return const_this.GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion()
790 if (GetDictionaryWithoutPathExpansion(it.key(), &sub_dict)) { in MergeDictionary()
Dvalues.h315 bool GetDictionaryWithoutPathExpansion(
318 bool GetDictionaryWithoutPathExpansion(const std::string& key,
/external/libchrome/base/json/
Djson_reader_unittest.cc420 dict_val->GetDictionaryWithoutPathExpansion("d.e.f", &inner_dict)); in TEST()