Home
last modified time | relevance | path

Searched refs:found_value (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/tools/gn/
Dscope_unittest.cc92 const Value* found_value = new_scope.GetValue("v"); in TEST() local
93 ASSERT_TRUE(found_value); in TEST()
94 EXPECT_TRUE(old_value == *found_value); in TEST()
112 const Template* found_value = new_scope.GetTemplate("templ"); in TEST() local
113 ASSERT_TRUE(found_value); in TEST()
114 EXPECT_TRUE(templ.get() == found_value); in TEST()
/external/chromium_org/base/prefs/
Dpref_service.cc493 const base::Value* found_value = NULL; in GetRecommendedValue() local
494 if (pref_value_store()->GetRecommendedValue(name_, type_, &found_value)) { in GetRecommendedValue()
495 DCHECK(found_value->IsType(type_)); in GetRecommendedValue()
496 return found_value; in GetRecommendedValue()
544 const base::Value* found_value = NULL; in GetPreferenceValue() local
546 if (pref_value_store_->GetValue(path, default_type, &found_value)) { in GetPreferenceValue()
547 DCHECK(found_value->IsType(default_type)); in GetPreferenceValue()
548 return found_value; in GetPreferenceValue()
/external/chromium_org/extensions/browser/
Dverified_contents.cc59 std::string found_value; in FindDictionaryWithValue() local
60 if (dictionary->GetString(key, &found_value) && found_value == value) in FindDictionaryWithValue()