Home
last modified time | relevance | path

Searched refs:EndPos (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDPPLexerChange.cpp275 const char *EndPos = CurLexer->BufferEnd; in getCurLexerEndPos() local
276 if (EndPos != CurLexer->BufferStart && in getCurLexerEndPos()
277 (EndPos[-1] == '\n' || EndPos[-1] == '\r')) { in getCurLexerEndPos()
278 --EndPos; in getCurLexerEndPos()
281 if (EndPos != CurLexer->BufferStart && in getCurLexerEndPos()
282 (EndPos[-1] == '\n' || EndPos[-1] == '\r') && in getCurLexerEndPos()
283 EndPos[-1] != EndPos[0]) in getCurLexerEndPos()
284 --EndPos; in getCurLexerEndPos()
287 return EndPos; in getCurLexerEndPos()
408 const char *EndPos = getCurLexerEndPos(); in HandleEndOfFile() local
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDRewriteMacros.cpp171 unsigned EndPos; in RewriteMacrosInInput() local
174 EndPos = RawOffs+RawTok.getLength(); in RewriteMacrosInInput()
188 RB.InsertTextBefore(EndPos, "*/"); in RewriteMacrosInInput()
/NextBSD/contrib/llvm/lib/IR/
HDGCOV.cpp198 uint32_t EndPos = Buff.getCursor() + LineTableLength * 4; in readGCNO() local
215 if (Buff.getCursor() != (EndPos - sizeof(uint32_t))) { in readGCNO()
226 while (Buff.getCursor() < (EndPos - 2 * sizeof(uint32_t))) { in readGCNO()
/NextBSD/contrib/llvm/utils/TableGen/
HDAsmMatcherEmitter.cpp881 size_t EndPos = End - String.begin(); in tokenizeAsmString() local
882 addAsmOperand(i, EndPos+1); in tokenizeAsmString()
883 Prev = EndPos + 1; in tokenizeAsmString()
884 i = EndPos; in tokenizeAsmString()