HomeSort by: relevance | last modified time | path
    Searched refs:TokenLoc (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
SourceExtraction.cpp 21 bool isSemicolonAtLocation(SourceLocation TokenLoc, const SourceManager &SM,
24 CharSourceRange::getTokenRange(TokenLoc, TokenLoc), SM,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 4522 /// TokenLoc - The location of the __null keyword.
4523 SourceLocation TokenLoc;
4527 : Expr(GNUNullExprClass, Ty, VK_RValue, OK_Ordinary), TokenLoc(Loc) {
4535 SourceLocation getTokenLocation() const { return TokenLoc; }
4536 void setTokenLocation(SourceLocation L) { TokenLoc = L; }
4538 SourceLocation getBeginLoc() const LLVM_READONLY { return TokenLoc; }
4539 SourceLocation getEndLoc() const LLVM_READONLY { return TokenLoc; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5520 ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 15738 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
15753 return new (Context) GNUNullExpr(Ty, TokenLoc);

Completed in 141 milliseconds