HomeSort by relevance Sort by last modified time
    Searched defs:getLocEnd (Results 1 - 8 of 8) sorted by null

  /external/clang/include/clang/AST/
StmtOpenMP.h 131 SourceLocation getLocEnd() const { return EndLoc; }
OpenMPClause.h 48 SourceLocation getLocEnd() const { return EndLoc; }
    [all...]
ExprCXX.h 90 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
211 SourceLocation getLocEnd() const LLVM_READONLY { return RParenLoc; }
405 SourceLocation getLocEnd() const { return getRParenLoc(); }
443 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
471 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
505 SourceLocation getLocEnd() const LLVM_READONLY {
506 return SubExpr->getLocEnd();
593 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
637 return SourceRange(getLocStart(), getLocEnd());
650 SourceLocation getLocEnd() const { return getMemberLoc();
    [all...]
Stmt.h 365 SourceLocation getLocEnd() const LLVM_READONLY;
474 SourceLocation getLocEnd() const LLVM_READONLY { return EndLoc; }
535 SourceLocation getLocEnd() const LLVM_READONLY { return SemiLoc; }
618 SourceLocation getLocEnd() const LLVM_READONLY { return RBracLoc; }
673 SourceLocation getLocEnd() const LLVM_READONLY;
723 SourceLocation getLocEnd() const LLVM_READONLY {
729 return CS->getSubStmt()->getLocEnd();
762 SourceLocation getLocEnd() const LLVM_READONLY { return SubStmt->getLocEnd();}
772 inline SourceLocation SwitchCase::getLocEnd() const
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 792 SourceLocation ObjCMethodDecl::getLocEnd() const {
794 return Body->getLocEnd();
    [all...]
ExprCXX.cpp 282 SourceLocation CXXPseudoDestructorExpr::getLocEnd() const {
491 SourceLocation CXXConstructExpr::getLocEnd() const {
493 return cast<CXXTemporaryObjectExpr>(this)->getLocEnd();
502 SourceLocation NewEnd = Arg->getLocEnd();
518 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
529 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
531 return SourceRange(getArg(0)->getLocStart(), getArg(1)->getLocEnd());
733 SourceLocation CXXFunctionalCastExpr::getLocEnd() const {
734 return RParenLoc.isValid() ? RParenLoc : getSubExpr()->getLocEnd();
    [all...]
Stmt.cpp 166 (void) is_good(implements_getLocEnd(&type::getLocEnd))
214 static_cast<const S*>(stmt)->getLocEnd());
243 SourceLocation Stmt::getLocEnd() const {
249 return static_cast<const type*>(this)->getLocEnd();
754 SourceLocation ObjCAtTryStmt::getLocEnd() const {
756 return getFinallyStmt()->getLocEnd();
758 return getCatchStmt(NumCatchStmts - 1)->getLocEnd();
759 return getTryBody()->getLocEnd();
    [all...]
Expr.cpp 172 // See also Stmt.cpp:{getLocStart(),getLocEnd()}.
445 SourceLocation DeclRefExpr::getLocEnd() const {
448 return getNameInfo().getLocEnd();
    [all...]

Completed in 168 milliseconds