Home | History | Annotate | Download | only in search

Lines Matching refs:entry_dict

79     const base::DictionaryValue* entry_dict = NULL;
80 if (!it.value().GetAsDictionary(&entry_dict))
85 if (!entry_dict->GetStringWithoutPathExpansion(kKeyPrimary, &primary) ||
86 !entry_dict->GetStringWithoutPathExpansion(kKeyUpdateTime,
93 if (entry_dict->GetListWithoutPathExpansion(kKeySecondary, &secondary_list))
160 base::DictionaryValue* entry_dict = GetEntryDict(query);
161 entry_dict->SetWithoutPathExpansion(kKeyPrimary,
173 base::DictionaryValue* entry_dict = GetEntryDict(query);
174 entry_dict->SetWithoutPathExpansion(kKeySecondary, results_list.release());
180 base::DictionaryValue* entry_dict = GetEntryDict(query);
181 entry_dict->SetWithoutPathExpansion(kKeyUpdateTime,
205 base::DictionaryValue* entry_dict = NULL;
206 if (!assoc_dict->GetDictionaryWithoutPathExpansion(query, &entry_dict)) {
208 entry_dict = new base::DictionaryValue;
209 assoc_dict->SetWithoutPathExpansion(query, entry_dict);
212 return entry_dict;