HomeSort by relevance Sort by last modified time
    Searched refs:new_dict (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_element_lookup_trie.py 39 new_dict = defaultdict(list)
43 new_dict[tag[index].lower()].append(tag)
44 return new_dict
  /external/skia/tools/
jsondiff.py 141 def _DictionaryDiff(self, old_dict, new_dict):
142 """Generate a dictionary showing the diffs between old_dict and new_dict.
145 all_keys = set(old_dict.keys() + new_dict.keys())
147 if old_dict.get(key) != new_dict.get(key):
150 new_entry['new'] = new_dict.get(key)
  /dalvik/vm/compiler/template/
gen-template.py 261 new_dict = dict.copy()
263 new_dict.update(eval(tokens[2]))
264 #print " including src=%s dict=%s" % (alt_source, new_dict)
265 appendSourceFile(alt_source, new_dict, outfp, sister_list)
  /dalvik/vm/mterp/
gen-mterp.py 454 new_dict = dict.copy()
456 new_dict.update(eval(tokens[2]))
457 #print " including src=%s dict=%s" % (alt_source, new_dict)
458 appendSourceFile(alt_source, new_dict, outfp, sister_list)
  /external/v8/src/
objects.cc 3674 StringDictionary* new_dict; local
11198 SeededNumberDictionary* new_dict = SeededNumberDictionary::cast(obj); local
    [all...]