Home | History | Annotate | Download | only in template

Lines Matching full:line

155     for line in opcode_fp:
156 match = opcode_re.match(line)
225 for line in asm_stub_text:
226 templ = Template(line)
230 # Append the file specified by "source" to the open "outfp". Each line will
233 # If the first line of the file starts with "%" it is taken as a directive.
234 # A "%include" line contains a filename and, optionally, a Python-style
238 # If "sister_list" is provided, and we find a line that contains only "&",
248 for line in infp:
249 if line.startswith("%include"):
250 # Parse the "include" line
251 tokens = line.strip().split(' ', 2)
267 elif line.startswith("%default"):
269 tokens = line.strip().split(' ', 1)
277 elif line.startswith("%verify"):
281 elif line.startswith("%break") and sister_list != None:
290 templ = Template(line)
297 print "ERROR: substitution failed: " + line
300 subline = line
382 for line in config_fp:
383 line = line.strip() # remove CRLF, leading spaces
384 tokens = line.split(' ') # tokenize