reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 2929   assert(Call);
 2936   if (!(isa<SimpleFunctionCall>(Call) || isa<ObjCMethodCall>(Call)))
 2936   if (!(isa<SimpleFunctionCall>(Call) || isa<ObjCMethodCall>(Call)))
 2940   if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(Call)) {
 2943     if (!Call->isInSystemHeader() || Call->argumentsMayEscape())
 2943     if (!Call->isInSystemHeader() || Call->argumentsMayEscape())
 2991   const FunctionDecl *FD = cast<SimpleFunctionCall>(Call)->getDecl();
 3003   if (!Call->isInSystemHeader())
 3018     for (unsigned i = 1; i < Call->getNumArgs(); ++i) {
 3019       const Expr *ArgE = Call->getArgExpr(i)->IgnoreParenCasts();
 3034     if (Call->getNumArgs() >= 4 && Call->getArgSVal(4).isConstant(0))
 3034     if (Call->getNumArgs() >= 4 && Call->getArgSVal(4).isConstant(0))
 3042     if (Call->getNumArgs() >= 1) {
 3043       const Expr *ArgE = Call->getArgExpr(0)->IgnoreParenCasts();
 3083   if (Call->argumentsMayEscape())