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

/external/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp46 Expr *CEE = E->getCallee()->IgnoreParenImpCasts(); local
47 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
/external/clang/lib/Analysis/
H A DCallGraph.cpp46 Expr *CEE = CE->getCallee()->IgnoreParenImpCasts();
47 if (BlockExpr *Block = dyn_cast<BlockExpr>(CEE)) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp180 if (Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>())
181 if (CEE->getCalleeContext()->getCallSite() == S)
197 Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>();
198 if (!CEE)
201 const StackFrameContext *CalleeContext = CEE->getCalleeContext();
927 } else if (Optional<CallExitEnd> CEE = pp.getAs<CallExitEnd>()) {
928 if (CEE->getCalleeContext()->getCallSite() == S ||
929 CEE->getCalleeContext()->getCallSite() == Inner)
H A DPathDiagnostic.cpp682 } else if (Optional<CallExitEnd> CEE = P.getAs<CallExitEnd>()) {
683 return getLocationForCaller(CEE->getCalleeContext(),
684 CEE->getLocationContext(),
701 if (Optional<CallExitEnd> CEE = P.getAs<CallExitEnd>())
702 return CEE->getCalleeContext()->getCallSite();
H A DExprEngineCallAndReturn.cpp86 } else if (Optional<CallExitEnd> CEE = PP.getAs<CallExitEnd>()) {
87 S = CEE->getCalleeContext()->getCallSite();
98 } while (!CE || CE->getCalleeContext() != CEE->getCalleeContext());
/external/clang/lib/AST/
H A DExpr.cpp1150 Expr *CEE = getCallee()->IgnoreParenImpCasts(); local
1153 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
1154 CEE = NTTP->getReplacement()->IgnoreParenCasts();
1158 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
1160 CEE = BO->getRHS()->IgnoreParenCasts();
1161 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
1163 CEE = UO->getSubExpr()->IgnoreParenCasts();
1165 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
1167 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))

Completed in 9689 milliseconds