Home | History | Annotate | Download | only in IR

Lines Matching refs:CurPos

1297     size_t CurPos = 0;
1298 size_t NewLine = Asm.find_first_of('\n', CurPos);
1304 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1307 CurPos = NewLine+1;
1308 NewLine = Asm.find_first_of('\n', CurPos);
1310 std::string rest(Asm.begin()+CurPos, Asm.end());