Home
last modified time | relevance | path

Searched refs:TokenLoc (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/
HDSourceExtraction.cpp21 bool isSemicolonAtLocation(SourceLocation TokenLoc, const SourceManager &SM, in isSemicolonAtLocation() argument
24 CharSourceRange::getTokenRange(TokenLoc, TokenLoc), SM, in isSemicolonAtLocation()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDExpr.h4218 SourceLocation TokenLoc; variable
4224 TokenLoc(Loc) { } in GNUNullExpr()
4230 SourceLocation getTokenLocation() const { return TokenLoc; } in getTokenLocation()
4231 void setTokenLocation(SourceLocation L) { TokenLoc = L; } in setTokenLocation()
4233 SourceLocation getBeginLoc() const LLVM_READONLY { return TokenLoc; } in getBeginLoc()
4234 SourceLocation getEndLoc() const LLVM_READONLY { return TokenLoc; } in getEndLoc()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
HDLexer.cpp1276 SourceLocation TokenLoc = Tok->getLocation(); in findLocationAfterToken() local
1281 const char *TokenEnd = SM.getCharacterData(TokenLoc) + Tok->getLength(); in findLocationAfterToken()
1298 return TokenLoc.getLocWithOffset(Tok->getLength() + NumWhitespaceChars); in findLocationAfterToken()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExpr.cpp14676 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { in ActOnGNUNullExpr() argument
14691 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h5007 ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);