HomeSort by relevance Sort by last modified time
    Searched refs:getLocEnd (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/clang/include/clang/AST/
StmtObjC.h 59 SourceLocation getLocEnd() const LLVM_READONLY {
60 return SubExprs[BODY]->getLocEnd();
108 SourceLocation getLocEnd() const LLVM_READONLY { return Body->getLocEnd(); }
136 SourceLocation getLocEnd() const LLVM_READONLY {
137 return AtFinallyStmt->getLocEnd();
242 SourceLocation getLocEnd() const LLVM_READONLY;
299 SourceLocation getLocEnd() const LLVM_READONLY {
300 return getSynchBody()->getLocEnd();
332 SourceLocation getLocEnd() const LLVM_READONLY
    [all...]
StmtCXX.h 45 SourceLocation getLocEnd() const LLVM_READONLY {
46 return HandlerBlock->getLocEnd();
89 SourceLocation getLocEnd() const LLVM_READONLY { return getEndLoc(); }
93 return getStmts()[NumHandlers]->getLocEnd();
193 SourceLocation getLocEnd() const LLVM_READONLY {
194 return SubExprs[BODY]->getLocEnd();
279 SourceLocation getLocEnd() const LLVM_READONLY { return SubStmt->getLocEnd();}
Stmt.h 363 SourceLocation getLocEnd() const LLVM_READONLY;
479 SourceLocation getLocEnd() const LLVM_READONLY { return EndLoc; }
534 SourceLocation getLocEnd() const LLVM_READONLY { return SemiLoc; }
607 SourceLocation getLocEnd() const LLVM_READONLY { return RBracLoc; }
661 SourceLocation getLocEnd() const LLVM_READONLY;
711 SourceLocation getLocEnd() const LLVM_READONLY {
717 return CS->getSubStmt()->getLocEnd();
750 SourceLocation getLocEnd() const LLVM_READONLY { return SubStmt->getLocEnd();}
760 inline SourceLocation SwitchCase::getLocEnd() const
    [all...]
ExprCXX.h 88 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
209 SourceLocation getLocEnd() const LLVM_READONLY { return RParenLoc; }
401 SourceLocation getLocEnd() const { return getRParenLoc(); }
438 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
464 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
547 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
623 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
673 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
723 SourceLocation getLocEnd() const LLVM_READONLY {
726 return getSubExpr()->getLocEnd();
    [all...]
ExprObjC.h 48 SourceLocation getLocEnd() const LLVM_READONLY { return String->getLocEnd(); }
75 SourceLocation getLocEnd() const LLVM_READONLY { return Loc; }
116 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
154 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
323 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
375 SourceLocation getLocEnd() const LLVM_READONLY { return RParenLoc; }
407 SourceLocation getLocEnd() const LLVM_READONLY { return RParenLoc; }
446 SourceLocation getLocEnd() const LLVM_READONLY { return RParenLoc; }
499 SourceLocation getLocEnd() const LLVM_READONLY { return Loc;
    [all...]
Expr.h 809 SourceLocation getLocEnd() const LLVM_READONLY {
810 return SourceExpr ? SourceExpr->getLocEnd() : Loc;
    [all...]
Comment.h 209 SourceLocation getLocEnd() const LLVM_READONLY {
342 getLocEnd());
549 Content.back()->getLocEnd()));
684 SourceLocation NewLocEnd = PC->getLocEnd();
946 return SourceRange(TextBegin, getLocEnd());
1074 Blocks.back()->getLocEnd()));
DeclFriend.h 143 return SourceRange(getFriendLoc(), ND->getLocEnd());
DeclarationName.h 527 return SourceRange(getLocStart(), getLocEnd());
532 SourceLocation getLocEnd() const LLVM_READONLY {
DeclCXX.h 214 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerHelpers.cpp 22 if (S->getLocEnd().isMacroID())
PathDiagnostic.cpp 431 SourceLocation L = UseEnd ? S->getLocEnd() : S->getLocStart();
460 L = ADC->getDecl()->getLocEnd();
464 L = UseEnd ? Parent->getLocEnd() : Parent->getLocStart();
    [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 131 SourceLocation afterSemi = findLocationAfterSemi((*retI)->getLocEnd(),
139 (*retI)->getLocEnd()),
244 return SourceRange((*rangeS)->getLocStart(), (*rangeE)->getLocEnd());
310 findLocationAfterSemi(retS->getLocEnd(), Pass.Ctx).isValid()) {
TransUnbridgedCasts.cpp 238 TA.insertAfterToken(E->getLocEnd(), ")");
263 TA.insertAfterToken(WrapE->getLocEnd(), ")");
TransProtectedScope.cpp 76 SourceLocation NextLoc = S->getLocEnd();
  /external/clang/lib/AST/
Stmt.cpp 167 (void) sizeof(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();
764 SourceLocation ObjCAtTryStmt::getLocEnd() const {
766 return getFinallyStmt()->getLocEnd();
768 return getCatchStmt(NumCatchStmts - 1)->getLocEnd();
769 return getTryBody()->getLocEnd();
    [all...]
ExprCXX.cpp 219 SourceLocation CXXPseudoDestructorExpr::getLocEnd() const {
427 SourceLocation CXXConstructExpr::getLocEnd() const {
429 return cast<CXXTemporaryObjectExpr>(this)->getLocEnd();
438 SourceLocation NewEnd = Arg->getLocEnd();
454 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
465 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
467 return SourceRange(getArg(0)->getLocStart(), getArg(1)->getLocEnd());
744 SourceLocation CXXTemporaryObjectExpr::getLocEnd() const {
    [all...]
Expr.cpp 184 // See also Stmt.cpp:{getLocStart(),getLocEnd()}.
454 SourceLocation DeclRefExpr::getLocEnd() const {
457 return getNameInfo().getLocEnd();
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 57 return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
63 call->getArg(argCount - 1)->getLocEnd());
730 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
    [all...]
SemaLambda.cpp 729 CallOperator->getBody()->getLocEnd());
743 CallOperator->getBody()->getLocEnd());
800 CallOperator->getBody()->getLocEnd());
    [all...]
AnalysisBasedWarnings.cpp 452 if (VD->getLocEnd().isMacroID())
455 SourceLocation Loc = S.PP.getLocForEndOfToken(VD->getLocEnd());
474 Then->getLocEnd(), 0, S.getSourceManager(), S.getLangOpts());
476 SourceRange(ElseKwLoc, Else->getLocEnd()));
    [all...]
SemaInit.cpp 584 StructuredSubobjectInitList->getLocEnd()),
667 << FixItHint::CreateRemoval(IList->getLocEnd());
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 475 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 424 Msg->getArg(Msg->getNumArgs()-2)->getLocEnd());
554 Msg->getArg(SentinelIdx-1)->getLocEnd());
595 Keys.back()->getLocEnd());
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]

Completed in 142 milliseconds

1 2 3