Searched refs:CEE (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp52 Expr *CEE = E->getCallee()->IgnoreParenImpCasts(); local
53 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp159 if (const CallExitEnd *CEE = Node->getLocationAs<CallExitEnd>())
160 if (CEE->getCalleeContext()->getCallSite() == S)
175 if (const CallExitEnd *CEE = Node->getLocationAs<CallExitEnd>())
176 if (CEE->getCalleeContext()->getCallSite() == S)
177 BR.addVisitor(new ReturnVisitor(CEE->getCalleeContext()));
461 } else if (const CallExitEnd *CEE = dyn_cast<CallExitEnd>(&pp)) {
462 if (CEE->getCalleeContext()->getCallSite() == S)
H A DExprEngineCallAndReturn.cpp78 } else if (const CallExitEnd *CEE = dyn_cast<CallExitEnd>(&PP)) {
79 S = CEE->getCalleeContext()->getCallSite();
90 } while (!CE || CE->getCalleeContext() != CEE->getCalleeContext());
H A DPathDiagnostic.cpp599 else if (const CallExitEnd *CEE = dyn_cast<CallExitEnd>(&P)) {
600 return getLocationForCaller(CEE->getCalleeContext(),
601 CEE->getLocationContext(),
H A DBugReporter.cpp53 else if (const CallExitEnd *CEE = dyn_cast<CallExitEnd>(&P))
54 return CEE->getCalleeContext()->getCallSite();
/external/clang/lib/AST/
H A DExpr.cpp998 Expr *CEE = getCallee()->IgnoreParenImpCasts(); local
1001 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
1002 CEE = NTTP->getReplacement()->IgnoreParenCasts();
1006 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
1008 CEE = BO->getRHS()->IgnoreParenCasts();
1009 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
1011 CEE = UO->getSubExpr()->IgnoreParenCasts();
1013 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
1015 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))

Completed in 210 milliseconds