Home | History | Annotate | Download | only in VMCore

Lines Matching full:curpos

1213     size_t CurPos = 0;
1214 size_t NewLine = Asm.find_first_of('\n', CurPos);
1220 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1223 CurPos = NewLine+1;
1224 NewLine = Asm.find_first_of('\n', CurPos);
1226 std::string rest(Asm.begin()+CurPos, Asm.end());