/external/clang/lib/StaticAnalyzer/Checkers/ |
NSAutoreleasePoolChecker.cpp | 39 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 44 void NSAutoreleasePoolChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
|
CheckerDocumentation.cpp | 91 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {} 97 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {} 106 void checkObjCMessageNil(const ObjCMethodCall &M, CheckerContext &C) const {}
|
NoReturnFunctionChecker.cpp | 36 void checkPostObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 87 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
|
CallAndMessageChecker.cpp | 63 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 68 void checkObjCMessageNil(const ObjCMethodCall &msg, CheckerContext &C) const; 80 void emitNilReceiverBug(CheckerContext &C, const ObjCMethodCall &msg, 85 const ObjCMethodCall &msg) const; 118 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call); 423 if (isa<ObjCMethodCall>(Call)) 442 void CallAndMessageChecker::checkPreObjCMessage(const ObjCMethodCall &msg, 484 void CallAndMessageChecker::checkObjCMessageNil(const ObjCMethodCall &msg, 490 const ObjCMethodCall &msg [all...] |
BasicObjCFoundationChecks.cpp | 52 static StringRef GetReceiverInterfaceName(const ObjCMethodCall &msg) { 118 const ObjCMethodCall &msg, unsigned Arg, 129 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const; 151 const ObjCMethodCall &msg, 216 void NilArgChecker::checkPreObjCMessage(const ObjCMethodCall &msg, 632 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 636 void ClassReleaseChecker::checkPreObjCMessage(const ObjCMethodCall &msg, 690 bool isVariadicMessage(const ObjCMethodCall &msg) const; 693 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 700 VariadicMethodTypeChecker::isVariadicMessage(const ObjCMethodCall &msg) const [all...] |
ObjCSelfInitChecker.cpp | 54 static bool isInitMessage(const ObjCMethodCall &Msg); 72 void checkPostObjCMessage(const ObjCMethodCall &Msg, CheckerContext &C) const; 166 void ObjCSelfInitChecker::checkPostObjCMessage(const ObjCMethodCall &Msg, 432 static bool isInitMessage(const ObjCMethodCall &Call) {
|
DynamicTypePropagation.cpp | 106 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const; 107 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const; 204 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) { 681 void DynamicTypePropagation::checkPreObjCMessage(const ObjCMethodCall &M, 760 void DynamicTypePropagation::checkPostObjCMessage(const ObjCMethodCall &M, [all...] |
LocalizationChecker.cpp | 84 void reportLocalizationError(SVal S, const ObjCMethodCall &M, 98 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 99 void checkPostObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const; 624 SVal S, const ObjCMethodCall &M, CheckerContext &C, 666 void NonLocalizedStringChecker::checkPreObjCMessage(const ObjCMethodCall &msg, 804 void NonLocalizedStringChecker::checkPostObjCMessage(const ObjCMethodCall &msg, [all...] |
RetainCountChecker.cpp | 761 const RetainSummary *getInstanceMethodSummary(const ObjCMethodCall &M, 764 const RetainSummary *getClassMethodSummary(const ObjCMethodCall &M) { [all...] |
NullabilityChecker.cpp | 115 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const; 663 static Nullability getReceiverNullability(const ObjCMethodCall &M, 695 void NullabilityChecker::checkPostObjCMessage(const ObjCMethodCall &M, [all...] |
MallocChecker.cpp | 203 void checkPostObjCMessage(const ObjCMethodCall &Call, CheckerContext &C) const; [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CallEvent.cpp | 664 ArrayRef<ParmVarDecl*> ObjCMethodCall::parameters() const { 672 ObjCMethodCall::getExtraInvalidatedValues(ValueList &Values, 677 SVal ObjCMethodCall::getSelfSVal() const { 685 SVal ObjCMethodCall::getReceiverSVal() const { 701 bool ObjCMethodCall::isReceiverSelfOrSuper() const { 714 SourceRange ObjCMethodCall::getSourceRange() const { 727 const PseudoObjectExpr *ObjCMethodCall::getContainingPseudoObjectExpr() const { 733 ObjCMessageKind ObjCMethodCall::getMessageKind() const { 764 const_cast<ObjCMethodCall *>(this)->Data 771 const_cast<ObjCMethodCall *>(this)->Dat [all...] |
ExprEngineObjC.cpp | 139 CallEventRef<ObjCMethodCall> Msg = 228 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
|
CheckerManager.cpp | 184 const ObjCMethodCall &Msg; 192 const ObjCMethodCall &msg, ExprEngine &eng, 215 checkFn(*Msg.cloneWithState<ObjCMethodCall>(Pred->getState()), C); 224 const ObjCMethodCall &msg,
|
ExprEngineCallAndReturn.cpp | 336 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(Call)) { 544 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) { [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/ |
CheckerManager.h | 37 class ObjCMethodCall; 218 const ObjCMethodCall &msg, 226 const ObjCMethodCall &msg, 236 const ObjCMethodCall &msg, 247 const ObjCMethodCall &msg, ExprEngine &Eng, 411 typedef CheckerFn<void (const ObjCMethodCall &, CheckerContext &)>
|
Checker.h | 121 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg, 136 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg, 151 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg,
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CallEvent.h | 849 class ObjCMethodCall : public CallEvent { 855 ObjCMethodCall(const ObjCMessageExpr *Msg, ProgramStateRef St, 861 ObjCMethodCall(const ObjCMethodCall &Other) : CallEvent(Other) {} 862 void cloneTo(void *Dest) const override { new (Dest) ObjCMethodCall(*this); } [all...] |