Home | History | Annotate | Download | only in mterp

Lines Matching full:line

160     for line in opcode_fp:
161 match = opcode_re.match(line)
277 for line in asm_stub_text:
278 templ = Template(line)
282 # Append the file specified by "source" to the open "outfp". Each line will
285 # If the first line of the file starts with "%" it is taken as a directive.
286 # A "%include" line contains a filename and, optionally, a Python-style
290 # If "sister_list" is provided, and we find a line that contains only "&",
300 for line in infp:
301 if line.startswith("%include"):
302 # Parse the "include" line
303 tokens = line.strip().split(' ', 2)
319 elif line.startswith("%default"):
321 tokens = line.strip().split(' ', 1)
329 elif line.startswith("%verify"):
333 elif line.startswith("%break") and sister_list != None:
342 templ = Template(line)
349 print "ERROR: substitution failed: " + line
352 subline = line
436 for line in config_fp:
437 line = line.strip() # remove CRLF, leading spaces
438 tokens = line.split(' ') # tokenize