Searched refs:TokenLoc (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/clang/lib/Tooling/Refactoring/Extract/ |
D | SourceExtraction.cpp | 21 bool isSemicolonAtLocation(SourceLocation TokenLoc, const SourceManager &SM, in isSemicolonAtLocation() argument 24 CharSourceRange::getTokenRange(TokenLoc, TokenLoc), SM, in isSemicolonAtLocation()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 3626 SourceLocation TokenLoc; variable 3632 TokenLoc(Loc) { } in GNUNullExpr() 3638 SourceLocation getTokenLocation() const { return TokenLoc; } in getTokenLocation() 3639 void setTokenLocation(SourceLocation L) { TokenLoc = L; } in setTokenLocation() 3641 SourceLocation getLocStart() const LLVM_READONLY { return TokenLoc; } in getLocStart() 3642 SourceLocation getLocEnd() const LLVM_READONLY { return TokenLoc; } in getLocEnd()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Expr.h | 4521 SourceLocation TokenLoc; variable 4525 : Expr(GNUNullExprClass, Ty, VK_RValue, OK_Ordinary), TokenLoc(Loc) { in GNUNullExpr() 4533 SourceLocation getTokenLocation() const { return TokenLoc; } in getTokenLocation() 4534 void setTokenLocation(SourceLocation L) { TokenLoc = L; } in setTokenLocation() 4536 SourceLocation getBeginLoc() const LLVM_READONLY { return TokenLoc; } in getBeginLoc() 4537 SourceLocation getEndLoc() const LLVM_READONLY { return TokenLoc; } in getEndLoc()
|
/external/clang/lib/Lex/ |
D | Lexer.cpp | 1213 SourceLocation TokenLoc = Tok.getLocation(); in findLocationAfterToken() local 1218 const char *TokenEnd = SM.getCharacterData(TokenLoc) + in findLocationAfterToken() 1236 return TokenLoc.getLocWithOffset(Tok.getLength() + NumWhitespaceChars); in findLocationAfterToken()
|
/external/llvm-project/clang/lib/Lex/ |
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()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 12319 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { in ActOnGNUNullExpr() argument 12334 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 4112 ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExpr.cpp | 15619 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { in ActOnGNUNullExpr() argument 15634 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 5376 ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);
|