Searched refs:GetIntegerWithoutPathExpansion (Results 1 – 4 of 4) sorted by relevance
/external/libchrome/base/json/ |
D | json_reader_unittest.cc | 394 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/ |
D | values_unittest.cc | 1756 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()
|
D | values.h | 496 bool GetIntegerWithoutPathExpansion(StringPiece key, int* out_value) const;
|
D | values.cc | 973 bool DictionaryValue::GetIntegerWithoutPathExpansion(StringPiece key, in GetIntegerWithoutPathExpansion() function in base::DictionaryValue
|