reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1256 while (Buf[I] != '\n' && Buf[I] != '\r' && Buf[I] != '\0') 1256 while (Buf[I] != '\n' && Buf[I] != '\r' && Buf[I] != '\0') 1256 while (Buf[I] != '\n' && Buf[I] != '\r' && Buf[I] != '\0') 1257 ++I; 1259 if (Buf[I] == '\n' || Buf[I] == '\r') { 1259 if (Buf[I] == '\n' || Buf[I] == '\r') { 1261 if (Buf[I] == '\r' && Buf[I+1] == '\n') 1261 if (Buf[I] == '\r' && Buf[I+1] == '\n') 1262 ++I; 1263 ++I; 1264 LineOffsets.push_back(I); 1267 if (Buf+I == End) break; 1268 ++I;