Home
last modified time | relevance | path

Searched refs:source_dict (Results 1 – 5 of 5) sorted by relevance

/external/chromium/net/base/
Dnet_log.cc85 DictionaryValue* source_dict = new DictionaryValue(); in EntryToDictionaryValue() local
86 source_dict->SetInteger("id", source.id); in EntryToDictionaryValue()
88 source_dict->SetInteger("type", static_cast<int>(source.type)); in EntryToDictionaryValue()
90 source_dict->SetString("type", in EntryToDictionaryValue()
93 entry_dict->Set("source", source_dict); in EntryToDictionaryValue()
/external/chromium_org/net/base/
Dnet_log.cc105 base::DictionaryValue* source_dict; in FromEventParameters() local
110 !dict->GetDictionary("source_dependency", &source_dict) || in FromEventParameters()
111 !source_dict->GetInteger("id", &source_id) || in FromEventParameters()
112 !source_dict->GetInteger("type", &source_type)) { in FromEventParameters()
129 base::DictionaryValue* source_dict = new base::DictionaryValue(); in ToValue() local
130 source_dict->SetInteger("id", source_.id); in ToValue()
131 source_dict->SetInteger("type", static_cast<int>(source_.type)); in ToValue()
132 entry_dict->Set("source", source_dict); in ToValue()
/external/chromium_org/native_client_sdk/src/build_tools/
Dgenerate_make.py60 def GetProjectObjects(source_dict): argument
63 for src in source_dict[key]:
/external/chromium/chrome/browser/extensions/
Dextension_prefs.cc1411 const DictionaryValue* source_dict = prefs_->GetDictionary(kExtensionsPref); in GetExtensionControlledPrefs() local
1412 if (source_dict->GetDictionary(key, &preferences)) in GetExtensionControlledPrefs()
1420 const DictionaryValue* source_dict = prefs_->GetDictionary(kExtensionsPref); in GetExtensionControlledPrefs() local
1421 source_dict->GetDictionary(key, &preferences); in GetExtensionControlledPrefs()
1434 const DictionaryValue* source_dict = prefs_->GetDictionary(kExtensionsPref); in InitPrefStore() local
1438 if (!source_dict->GetDictionary(key, NULL)) in InitPrefStore()
/external/chromium_org/chrome/browser/extensions/api/preference/
Dpreference_api.cc426 const DictionaryValue* source_dict = prefs->pref_service()-> in LoadExtensionControlledPrefs() local
429 if (!source_dict->GetDictionary(key, &preferences)) in LoadExtensionControlledPrefs()