Home
last modified time | relevance | path

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

/external/chromium_org/chrome/browser/prefs/
Dpref_metrics_service_unittest.cc220 const DictionaryValue* child_dictionary = NULL; in TEST_F() local
222 profile_name_, &child_dictionary)); in TEST_F()
226 ASSERT_TRUE(child_dictionary->GetString(kTrackedPrefs[0], &pref1_hash)); in TEST_F()
227 ASSERT_TRUE(child_dictionary->GetString(kTrackedPrefs[1], &pref2_hash)); in TEST_F()
366 DictionaryValue* child_dictionary = NULL; in TEST_F() local
370 &child_dictionary)); in TEST_F()
371 child_dictionary->SetString(kTrackedPrefs[0], old_style_hash); in TEST_F()
Dpref_metrics_service.cc355 DictionaryValue* child_dictionary = NULL; in UpdateTrackedPreference() local
360 &child_dictionary)) { in UpdateTrackedPreference()
361 child_dictionary = new DictionaryValue; in UpdateTrackedPreference()
362 update->SetWithoutPathExpansion(profile_name_, child_dictionary); in UpdateTrackedPreference()
365 child_dictionary->SetString(path, in UpdateTrackedPreference()
/external/chromium/base/
Dvalues.cc349 DictionaryValue* child_dictionary = NULL; in Set() local
350 if (!current_dictionary->GetDictionary(key, &child_dictionary)) { in Set()
351 child_dictionary = new DictionaryValue; in Set()
352 current_dictionary->SetWithoutPathExpansion(key, child_dictionary); in Set()
355 current_dictionary = child_dictionary; in Set()
403 DictionaryValue* child_dictionary = NULL; in Get() local
405 current_path.substr(0, delimiter_position), &child_dictionary)) in Get()
408 current_dictionary = child_dictionary; in Get()
/external/chromium_org/base/
Dvalues.cc392 DictionaryValue* child_dictionary = NULL; in Set() local
393 if (!current_dictionary->GetDictionary(key, &child_dictionary)) { in Set()
394 child_dictionary = new DictionaryValue; in Set()
395 current_dictionary->SetWithoutPathExpansion(key, child_dictionary); in Set()
398 current_dictionary = child_dictionary; in Set()
473 const DictionaryValue* child_dictionary = NULL; in Get() local
475 current_path.substr(0, delimiter_position), &child_dictionary)) in Get()
478 current_dictionary = child_dictionary; in Get()