HomeSort by relevance Sort by last modified time
    Searched defs:subdict (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/policy/
registry_dict_win.cc 281 RegistryDict*& subdict = keys_[entry->first]; local
282 if (!subdict)
283 subdict = new RegistryDict();
284 subdict->Merge(*entry->second);
344 scoped_ptr<RegistryDict> subdict(new RegistryDict());
345 subdict->ReadRegistry(hive, root + L"\\" + it.Name());
346 SetKey(name, subdict.Pass());
preg_parser_win.cc 161 RegistryDict* subdict = dict->GetKey(name); local
162 if (!subdict) {
163 subdict = new RegistryDict();
164 dict->SetKey(name, make_scoped_ptr(subdict));
166 dict = subdict;
  /external/chromium_org/third_party/libxml/src/
dict.c 100 struct _xmlDict *subdict; member in struct:_xmlDict
460 dict->subdict = NULL;
489 dict->subdict = sub;
490 xmlDictReference(dict->subdict);
683 if (dict->subdict != NULL) {
684 xmlDictFree(dict->subdict);
770 if (dict->subdict) {
773 /* we cannot always reuse the same okey for the subdict */
775 (dict->subdict->size != MIN_DICT_SIZE)) ||
777 (dict->subdict->size == MIN_DICT_SIZE))
    [all...]
  /external/libxml2/
dict.c 122 struct _xmlDict *subdict; member in struct:_xmlDict
487 dict->subdict = NULL;
522 dict->subdict = sub;
523 xmlDictReference(dict->subdict);
716 if (dict->subdict != NULL) {
717 xmlDictFree(dict->subdict);
803 if (dict->subdict) {
806 /* we cannot always reuse the same okey for the subdict */
808 (dict->subdict->size != MIN_DICT_SIZE)) ||
810 (dict->subdict->size == MIN_DICT_SIZE))
    [all...]

Completed in 933 milliseconds