Home
last modified time | relevance | path

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

/external/skia/tools/
Djsondiff.py141 def _DictionaryDiff(self, old_dict, new_dict): argument
145 all_keys = set(old_dict.keys() + new_dict.keys())
147 if old_dict.get(key) != new_dict.get(key):
149 new_entry['old'] = old_dict.get(key)
/external/skqp/tools/
Djsondiff.py141 def _DictionaryDiff(self, old_dict, new_dict): argument
145 all_keys = set(old_dict.keys() + new_dict.keys())
147 if old_dict.get(key) != new_dict.get(key):
149 new_entry['old'] = old_dict.get(key)
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Doptrecord.py88 def _reduce_memory_dict(old_dict): argument
90 for (k, v) in iteritems(old_dict):
/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()