Home | History | Annotate | Download | only in Support

Lines Matching refs:Pos

54   const char *Pos = CurrentLine.end();
55 assert(Pos == Buffer->getBufferStart() || isAtLineEnd(Pos) || *Pos == '\0');
57 if (skipIfAtLineEnd(Pos))
59 if (!SkipBlanks && isAtLineEnd(Pos)) {
63 while (skipIfAtLineEnd(Pos))
68 if (isAtLineEnd(Pos) && !SkipBlanks)
70 if (*Pos == CommentMarker)
72 ++Pos;
73 } while (*Pos != '\0' && !isAtLineEnd(Pos));
74 if (!skipIfAtLineEnd(Pos))
80 if (*Pos == '\0') {
89 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
93 CurrentLine = StringRef(Pos, Length);