Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
DLexer.cpp450 Token TheTok; in MeasureTokenLength() local
451 if (getRawToken(Loc, TheTok, SM, LangOpts)) in MeasureTokenLength()
453 return TheTok.getLength(); in MeasureTokenLength()
536 Token TheTok; in getBeginningOfFileToken() local
538 TheLexer.LexFromRawLexer(TheTok); in getBeginningOfFileToken()
544 if (TheLexer.getBufferLocation() - TheTok.getLength() <= StrData) in getBeginningOfFileToken()
545 return TheTok.getLocation(); in getBeginningOfFileToken()
551 } while (TheTok.getKind() != tok::eof); in getBeginningOfFileToken()
598 Token TheTok; in ComputePreamble() local
618 TheLexer.LexFromRawLexer(TheTok); in ComputePreamble()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DHTMLDiagnostics.cpp950 Token TheTok; in HandlePiece() local
951 rawLexer.LexFromRawLexer(TheTok); in HandlePiece()
952 for (unsigned i = 0, n = TheTok.getLength(); i < n; ++i) in HandlePiece()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
DLiteralSupport.h256 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExpr.cpp1304 Token TheTok; in getLocationOfByte() local
1305 TheLexer.LexFromRawLexer(TheTok); in getLocationOfByte()
1308 StringLiteralParser SLP(TheTok, SM, Features, Target); in getLocationOfByte()
1314 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte()