Searched refs:TokenLoc (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/ |
H A D | SourceExtraction.cpp | 21 bool isSemicolonAtLocation(SourceLocation TokenLoc, const SourceManager &SM, in isSemicolonAtLocation() argument 24 CharSourceRange::getTokenRange(TokenLoc, TokenLoc), SM, in isSemicolonAtLocation()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | Expr.h | 4523 SourceLocation TokenLoc; variable 4527 : Expr(GNUNullExprClass, Ty, VK_RValue, OK_Ordinary), TokenLoc(Loc) { in GNUNullExpr() 4535 SourceLocation getTokenLocation() const { return TokenLoc; } in getTokenLocation() 4536 void setTokenLocation(SourceLocation L) { TokenLoc = L; } in setTokenLocation() 4538 SourceLocation getBeginLoc() const LLVM_READONLY { return TokenLoc; } in getBeginLoc() 4539 SourceLocation getEndLoc() const LLVM_READONLY { return TokenLoc; } in getEndLoc()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
H A D | Lexer.cpp | 1279 SourceLocation TokenLoc = Tok->getLocation(); in findLocationAfterToken() local 1284 const char *TokenEnd = SM.getCharacterData(TokenLoc) + Tok->getLength(); in findLocationAfterToken() 1301 return TokenLoc.getLocWithOffset(Tok->getLength() + NumWhitespaceChars); in findLocationAfterToken()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 15738 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { in ActOnGNUNullExpr() argument 15753 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | Sema.h | 5520 ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);
|