Searched refs:dict (Results 1 – 3 of 3) sorted by relevance
/dalvik/vm/mterp/ |
D | gen-mterp.py | 202 dict = getGlobalSubDict() 203 dict.update({ "opcode":op, "opnum":i }) 205 "_%(opcode)s /* 0x%(opnum)02x */\n" % dict) 322 dict = getGlobalSubDict() 323 dict.update({ "opcode":op, "opnum":opindex }) 325 emitAsmHeader(asm_fp, dict, alt_label_prefix) 326 appendSourceFile(source, dict, asm_fp, None) 367 dict = getGlobalSubDict() 368 dict.update({ "opcode":op, "opnum":opindex }) 370 appendSourceFile(source, dict, c_fp, None) [all …]
|
D | README.txt | 177 %include "filename" [subst-dict] 186 %default <subst-dict>
|
/dalvik/vm/compiler/template/ |
D | gen-template.py | 198 dict = getGlobalSubDict() 199 dict.update({ "opcode":op, "opnum":opindex }) 202 emitAsmHeader(asm_fp, dict) 203 appendSourceFile(source, dict, asm_fp, sister_list) 208 def emitAsmHeader(outfp, dict): argument 216 template_name = "dvmCompiler_%(opcode)s" % dict 224 def emitAsmStub(outfp, dict): argument 225 emitAsmHeader(outfp, dict) 228 outfp.write(templ.substitute(dict)) 245 def appendSourceFile(source, dict, outfp, sister_list): argument [all …]
|