Lines Matching refs:endOfLine
289 endOfLine = ''
291 endOfLine = mo.group()
292 oldAsm = line[len(self.indent):len(line) - len(endOfLine)]
296 self.TranslateAsm(oldAsm, endOfLine)
407 def TranslateAsm(self, oldAsm, endOfLine):
410 endOfLine = endOfLine.replace(self.inputFileBase, self.outputFileBase)
420 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
423 self.EmitLine(oldAsm + endOfLine)
426 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
432 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
438 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
442 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
445 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
450 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
456 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
459 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
462 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
465 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
473 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
486 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
497 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
508 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
517 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
520 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
563 def EmitAsmReplaceOp(self, oldAsm, oldOp, newOp, endOfLine):
565 self.EmitAsmWithComment(oldAsm, newAsm, endOfLine)
569 def EmitAsmWithComment(self, oldAsm, newAsm, endOfLine):
575 newLine = newAsm + endOfLine
577 ((oldAsm + endOfLine).strip() == ''))