OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:subdict
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/components/policy/core/common/
registry_dict_win.cc
223
RegistryDict*&
subdict
= keys_[entry->first];
local
224
if (!
subdict
)
225
subdict
= new RegistryDict();
226
subdict
->Merge(*entry->second);
286
scoped_ptr<RegistryDict>
subdict
(new RegistryDict());
287
subdict
->ReadRegistry(hive, root + L"\\" + it.Name());
288
SetKey(name,
subdict
.Pass());
preg_parser_win.cc
164
RegistryDict*
subdict
= dict->GetKey(name);
local
165
if (!
subdict
) {
166
subdict
= new RegistryDict();
167
dict->SetKey(name, make_scoped_ptr(
subdict
));
169
dict =
subdict
;
/external/chromium_org/chrome/browser/bookmarks/
bookmark_codec.cc
423
const base::DictionaryValue*
subdict
;
local
424
it.value().GetAsDictionary(&
subdict
);
425
DecodeMetaInfoHelper(*
subdict
, prefix + it.key() + ".", meta_info_map);
/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
...]
/external/chromium_org/base/
values.cc
764
DictionaryValue*
subdict
= NULL;
local
765
if (!GetDictionary(subdict_path, &
subdict
))
767
result =
subdict
->RemovePath(path.substr(delimiter_position + 1),
769
if (result &&
subdict
->empty())
Completed in 589 milliseconds