Lines Matching refs:content
46 spec = response.content
81 spec = response.content
90 spec_ext = response_ext.content
490 content = f.read()
492 content = content.split(AUTOGEN_OPCODE_SECTION_MARKER)
494 existing_opcodes = [k[11:] for k in re.findall('def SPV_OC_\w+', content[1])]
542 content = f.read()
544 content = content.split(AUTOGEN_OPCODE_SECTION_MARKER)
545 assert len(content) == 3
548 existing_opcodes = [k[11:] for k in re.findall('def SPV_OC_\w+', content[1])]
560 content = content[0] + AUTOGEN_OPCODE_SECTION_MARKER + '\n\n' + \
562 + content[2]
565 f.write(content)
577 content = f.read()
579 content = content.split(AUTOGEN_ENUM_SECTION_MARKER)
580 assert len(content) == 3
584 k[8:-4] for k in re.findall('def SPV_\w+Attr', content[1])]
604 content = content[0] + AUTOGEN_ENUM_SECTION_MARKER + '\n\n' + \
606 + content[2];
609 f.write(content)
939 content = f.read()
942 ops = content.split(AUTOGEN_OP_DEF_SEPARATOR)
985 content = AUTOGEN_OP_DEF_SEPARATOR.join(op_defs)
988 f.write(content)