Home
last modified time | relevance | path

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

/external/libchrome/base/
Dvalues.cc513 return current_dictionary->GetWithoutPathExpansion(current_path.as_string(), in Get()
642 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue
655 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue
657 return static_cast<const DictionaryValue&>(*this).GetWithoutPathExpansion( in GetWithoutPathExpansion()
665 if (!GetWithoutPathExpansion(key, &value)) in GetBooleanWithoutPathExpansion()
674 if (!GetWithoutPathExpansion(key, &value)) in GetIntegerWithoutPathExpansion()
683 if (!GetWithoutPathExpansion(key, &value)) in GetDoubleWithoutPathExpansion()
693 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion()
702 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion()
712 bool result = GetWithoutPathExpansion(key, &value); in GetDictionaryWithoutPathExpansion()
[all …]
Dvalues_unittest.cc342 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
366 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
975 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("bool", NULL)); in TEST()
976 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("int", NULL)); in TEST()
977 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("double", NULL)); in TEST()
978 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("string", NULL)); in TEST()
979 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("binary", NULL)); in TEST()
980 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("dict", NULL)); in TEST()
981 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("list", NULL)); in TEST()
982 EXPECT_FALSE(main_dict.GetWithoutPathExpansion("DNE", NULL)); in TEST()
Dvalues.h303 bool GetWithoutPathExpansion(const std::string& key,
305 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
/external/libweave/third_party/chromium/base/
Dvalues.cc488 return current_dictionary->GetWithoutPathExpansion(current_path.as_string(), in Get()
608 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue
621 bool DictionaryValue::GetWithoutPathExpansion(const std::string& key, in GetWithoutPathExpansion() function in base::DictionaryValue
623 return static_cast<const DictionaryValue&>(*this).GetWithoutPathExpansion( in GetWithoutPathExpansion()
631 if (!GetWithoutPathExpansion(key, &value)) in GetBooleanWithoutPathExpansion()
640 if (!GetWithoutPathExpansion(key, &value)) in GetIntegerWithoutPathExpansion()
649 if (!GetWithoutPathExpansion(key, &value)) in GetDoubleWithoutPathExpansion()
659 if (!GetWithoutPathExpansion(key, &value)) in GetStringWithoutPathExpansion()
669 bool result = GetWithoutPathExpansion(key, &value); in GetDictionaryWithoutPathExpansion()
693 bool result = GetWithoutPathExpansion(key, &value); in GetListWithoutPathExpansion()
Dvalues_unittest.cc328 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
352 ASSERT_TRUE(dict.GetWithoutPathExpansion("this.isnt.expanded", &value4)); in TEST()
926 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("bool", NULL)); in TEST()
927 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("int", NULL)); in TEST()
928 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("double", NULL)); in TEST()
929 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("string", NULL)); in TEST()
930 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("binary", NULL)); in TEST()
931 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("dict", NULL)); in TEST()
932 EXPECT_TRUE(main_dict.GetWithoutPathExpansion("list", NULL)); in TEST()
933 EXPECT_FALSE(main_dict.GetWithoutPathExpansion("DNE", NULL)); in TEST()
Dvalues.h293 bool GetWithoutPathExpansion(const std::string& key,
295 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
/external/libweave/src/
Dcomponent_manager_impl.cc51 if (root->GetWithoutPathExpansion(name, nullptr)) { in AddComponent()
704 if (!root->GetWithoutPathExpansion(element.first, &value)) { in FindComponentAt()