Searched refs:found_value (Results 1 – 3 of 3) sorted by relevance
92 const Value* found_value = new_scope.GetValue("v"); in TEST() local93 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() local113 ASSERT_TRUE(found_value); in TEST()114 EXPECT_TRUE(templ.get() == found_value); in TEST()
493 const base::Value* found_value = NULL; in GetRecommendedValue() local494 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() local546 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()
59 std::string found_value; in FindDictionaryWithValue() local60 if (dictionary->GetString(key, &found_value) && found_value == value) in FindDictionaryWithValue()