Searched refs:dict (Results 1 – 3 of 3) sorted by relevance
/dalvik/vm/mterp/ |
D | gen-mterp.py | 236 dict = getGlobalSubDict() 237 dict.update({ "opcode":op, "opnum":opindex }) 239 appendSourceFile(source, dict, c_fp, None) 242 emitAsmStub(asm_fp, dict) 250 dict = getGlobalSubDict() 251 dict.update({ "opcode":op, "opnum":opindex }) 255 emitAsmHeader(asm_fp, dict) 256 appendSourceFile(source, dict, asm_fp, sister_list) 261 def emitAsmHeader(outfp, dict): argument 269 outfp.write(label_prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict) [all …]
|
D | README.txt | 143 %include "filename" [subst-dict] 152 %default <subst-dict>
|
/dalvik/vm/compiler/template/ |
D | gen-template.py | 197 dict = getGlobalSubDict() 198 dict.update({ "opcode":op, "opnum":opindex }) 201 emitAsmHeader(asm_fp, dict) 202 appendSourceFile(source, dict, asm_fp, sister_list) 207 def emitAsmHeader(outfp, dict): argument 215 template_name = "dvmCompiler_%(opcode)s" % dict 223 def emitAsmStub(outfp, dict): argument 224 emitAsmHeader(outfp, dict) 227 outfp.write(templ.substitute(dict)) 244 def appendSourceFile(source, dict, outfp, sister_list): argument [all …]
|