Home
last modified time | relevance | path

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

/external/libxml2/
Ddict.c123 struct _xmlDict *subdict; member
588 dict->subdict = NULL; in xmlDictCreate()
623 dict->subdict = sub; in xmlDictCreateSub()
624 xmlDictReference(dict->subdict); in xmlDictCreateSub()
817 if (dict->subdict != NULL) { in xmlDictFree()
818 xmlDictFree(dict->subdict); in xmlDictFree()
911 if (dict->subdict) { in xmlDictLookup()
916 (dict->subdict->size != MIN_DICT_SIZE)) || in xmlDictLookup()
918 (dict->subdict->size == MIN_DICT_SIZE))) in xmlDictLookup()
919 skey = xmlDictComputeKey(dict->subdict, name, l); in xmlDictLookup()
[all …]
/external/libchrome/ipc/
Dipc_message_unittest.cc97 auto subdict = std::make_unique<base::DictionaryValue>(); in TEST() local
98 subdict->SetString("str", "forty two"); in TEST()
99 subdict->SetBoolean("bool", false); in TEST()
105 subdict->Set("list", std::move(sublist)); in TEST()
107 input.Set("dict", std::move(subdict)); in TEST()
/external/libchrome/base/
Dvalues.cc1096 DictionaryValue* subdict = nullptr; in RemovePath() local
1097 if (!GetDictionary(subdict_path, &subdict)) in RemovePath()
1099 result = subdict->RemovePath(path.substr(delimiter_position + 1), in RemovePath()
1101 if (result && subdict->empty()) in RemovePath()