Home
last modified time | relevance | path

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

/external/libchrome/base/
Dvalues_unittest.cc594 ASSERT_TRUE(dict.GetDictionaryWithoutPathExpansion("this", &value2)); in TEST()
618 ASSERT_TRUE(dict.GetDictionaryWithoutPathExpansion("this", &value2)); in TEST()
1422 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("bool", NULL)); in TEST()
1423 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("int", NULL)); in TEST()
1424 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("double", NULL)); in TEST()
1425 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("string", NULL)); in TEST()
1426 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("binary", NULL)); in TEST()
1427 EXPECT_TRUE(main_dict.GetDictionaryWithoutPathExpansion("dict", NULL)); in TEST()
1428 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("list", NULL)); in TEST()
1429 EXPECT_FALSE(main_dict.GetDictionaryWithoutPathExpansion("DNE", NULL)); in TEST()
Dvalues.cc725 if (!current_dictionary->GetDictionaryWithoutPathExpansion( in Get()
922 bool DictionaryValue::GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion() function in base::DictionaryValue
936 bool DictionaryValue::GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion() function in base::DictionaryValue
941 return const_this.GetDictionaryWithoutPathExpansion( in GetDictionaryWithoutPathExpansion()
1035 if (GetDictionaryWithoutPathExpansion(it.key(), &sub_dict)) { in MergeDictionary()
Dvalues.h310 bool GetDictionaryWithoutPathExpansion(
313 bool GetDictionaryWithoutPathExpansion(StringPiece key,
/external/libchrome/base/json/
Djson_reader_unittest.cc420 dict_val->GetDictionaryWithoutPathExpansion("d.e.f", &inner_dict)); in TEST()