Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDLexer.cpp409 Token TheTok; in MeasureTokenLength() local
410 if (getRawToken(Loc, TheTok, SM, LangOpts)) in MeasureTokenLength()
412 return TheTok.getLength(); in MeasureTokenLength()
488 Token TheTok; in getBeginningOfFileToken() local
490 TheLexer.LexFromRawLexer(TheTok); in getBeginningOfFileToken()
496 if (TheLexer.getBufferLocation() - TheTok.getLength() <= StrData) in getBeginningOfFileToken()
497 return TheTok.getLocation(); in getBeginningOfFileToken()
503 } while (TheTok.getKind() != tok::eof); in getBeginningOfFileToken()
553 Token TheTok; in ComputePreamble() local
575 TheLexer.LexFromRawLexer(TheTok); in ComputePreamble()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDHTMLDiagnostics.cpp479 Token TheTok; in HandlePiece() local
480 rawLexer.LexFromRawLexer(TheTok); in HandlePiece()
481 for (unsigned i = 0, n = TheTok.getLength(); i < n; ++i) in HandlePiece()
/NextBSD/contrib/llvm/tools/clang/include/clang/Lex/
HDLiteralSupport.h229 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExpr.cpp1035 Token TheTok; in getLocationOfByte() local
1036 TheLexer.LexFromRawLexer(TheTok); in getLocationOfByte()
1039 StringLiteralParser SLP(TheTok, SM, Features, Target); in getLocationOfByte()
1045 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte()