Home
last modified time | relevance | path

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

/external/skia/tools/
Djsondiff.py140 def _DictionaryDiff(self, old_dict, new_dict): argument
144 all_keys = set(old_dict.keys() + new_dict.keys())
146 if old_dict.get(key) != new_dict.get(key):
148 new_entry['old'] = old_dict.get(key)
/external/skqp/tools/
Djsondiff.py140 def _DictionaryDiff(self, old_dict, new_dict): argument
144 all_keys = set(old_dict.keys() + new_dict.keys())
146 if old_dict.get(key) != new_dict.get(key):
148 new_entry['old'] = old_dict.get(key)
/external/pdfium/third_party/lcms/src/
Dcmsnamed.c923 _cmsDICT* old_dict = (_cmsDICT*) hDict; in cmsDictDup() local
927 _cmsAssert(old_dict != NULL); in cmsDictDup()
929 hNew = cmsDictAlloc(old_dict ->ContextID); in cmsDictDup()
933 entry = old_dict ->head; in cmsDictDup()