Searched defs:getLocEnd (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/AST/
H A DDeclObjC.cpp546 SourceLocation ObjCMethodDecl::getLocEnd() const { function in class:ObjCMethodDecl
548 return Body->getLocEnd();
H A DStmt.cpp183 // a more specific implementation of getLocStart() and getLocEnd().
206 /// implementation of getLocEnd.
210 return static_cast<const S*>(stmt)->getLocEnd();
214 /// implementation of getLocEnd. Overload resolution should pick it over
236 SourceLocation Stmt::getLocEnd() const { function in class:Stmt
242 return getLocEndImpl<type>(this, &type::getLocEnd);
297 return SourceRange(RetLoc, RetExpr->getLocEnd());
774 EndLoc = getFinallyStmt()->getLocEnd();
776 EndLoc = getCatchStmt(NumCatchStmts - 1)->getLocEnd();
778 EndLoc = getTryBody()->getLocEnd();
[all...]
H A DExpr.cpp113 // See also Stmt.cpp:{getLocStart(),getLocEnd()}.
391 SourceLocation DeclRefExpr::getLocEnd() const { function in class:DeclRefExpr
394 return getNameInfo().getLocEnd();
1101 end = getArg(getNumArgs() - 1)->getLocEnd();
1113 SourceLocation CallExpr::getLocEnd() const { function in class:CallExpr
1119 end = getArg(getNumArgs() - 1)->getLocEnd();
1244 return SourceRange(getLocStart(), getLocEnd());
1260 SourceLocation MemberExpr::getLocEnd() const { function in class:MemberExpr
1946 CE->getArg(NumArgs-1)->getLocEnd());
/external/clang/include/clang/AST/
H A DExprCXX.h383 SourceLocation getLocEnd() const { return getRParenLoc(); } function in class:clang::UserDefinedLiteral
385 return SourceRange(getLocStart(), getLocEnd());
1699 return SourceRange(Loc, Argument->getLocEnd());

Completed in 713 milliseconds