Home
last modified time | relevance | path

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

/external/libchrome/base/json/
Djson_reader_unittest.cc394 EXPECT_TRUE(dict_val->GetIntegerWithoutPathExpansion("a.b", &integer_value)); in TEST()
396 EXPECT_TRUE(dict_val->GetIntegerWithoutPathExpansion("c", &integer_value)); in TEST()
403 inner_dict->GetIntegerWithoutPathExpansion("g.h.i.j", &integer_value)); in TEST()
411 EXPECT_TRUE(dict_val->GetIntegerWithoutPathExpansion("a.b", &integer_value)); in TEST()
/external/libchrome/base/
Dvalues_unittest.cc1756 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("bool", nullptr)); in TEST()
1757 EXPECT_TRUE(main_dict.GetIntegerWithoutPathExpansion("int", nullptr)); in TEST()
1758 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("double", nullptr)); in TEST()
1759 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("string", nullptr)); in TEST()
1760 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("binary", nullptr)); in TEST()
1761 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("dict", nullptr)); in TEST()
1762 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("list", nullptr)); in TEST()
1763 EXPECT_FALSE(main_dict.GetIntegerWithoutPathExpansion("DNE", nullptr)); in TEST()
Dvalues.h496 bool GetIntegerWithoutPathExpansion(StringPiece key, int* out_value) const;
Dvalues.cc973 bool DictionaryValue::GetIntegerWithoutPathExpansion(StringPiece key, in GetIntegerWithoutPathExpansion() function in base::DictionaryValue