Lines Matching defs:NewLine
1298 size_t NewLine = Asm.find_first_of('\n', CurPos);
1300 while (NewLine != std::string::npos) {
1301 // We found a newline, print the portion of the asm string from the
1302 // last newline up to this newline.
1304 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1307 CurPos = NewLine+1;
1308 NewLine = Asm.find_first_of('\n', CurPos);
1770 /// printInstructionLine - Print an instruction and a newline character.