HomeSort by relevance Sort by last modified time
    Searched refs:ObjCMethodCall (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp 39 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
44 void NSAutoreleasePoolChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
NoReturnFunctionChecker.cpp 36 void checkPostObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
87 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
CheckerDocumentation.cpp 90 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {}
96 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {}
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...]
CallAndMessageChecker.cpp 62 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
73 void emitNilReceiverBug(CheckerContext &C, const ObjCMethodCall &msg,
78 const ObjCMethodCall &msg) const;
111 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
416 if (isa<ObjCMethodCall>(Call))
435 void CallAndMessageChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
491 const ObjCMethodCall &msg,
531 const ObjCMethodCall &Msg) const {
ObjCSelfInitChecker.cpp 54 static bool isInitMessage(const ObjCMethodCall &Msg);
72 void checkPostObjCMessage(const ObjCMethodCall &Msg, CheckerContext &C) const;
167 void ObjCSelfInitChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
433 static bool isInitMessage(const ObjCMethodCall &Call) {
DynamicTypePropagation.cpp 107 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
MallocChecker.cpp 183 void checkPostObjCMessage(const ObjCMethodCall &Call, CheckerContext &C) const;
796 static bool isKnownDeallocObjCMethodName(const ObjCMethodCall &Call) {
811 static Optional<bool> getFreeWhenDoneArg(const ObjCMethodCall &Call) {
822 void MallocChecker::checkPostObjCMessage(const ObjCMethodCall &Call,
    [all...]
RetainCountChecker.cpp 735 const RetainSummary *getInstanceMethodSummary(const ObjCMethodCall &M,
738 const RetainSummary *getClassMethodSummary(const ObjCMethodCall &M) {
947 if (const ObjCMethodCall *MC = dyn_cast<ObjCMethodCall>(&Call)) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 607 ArrayRef<ParmVarDecl*> ObjCMethodCall::parameters() const {
615 ObjCMethodCall::getExtraInvalidatedValues(ValueList &Values) const {
619 SVal ObjCMethodCall::getSelfSVal() const {
627 SVal ObjCMethodCall::getReceiverSVal() const {
643 bool ObjCMethodCall::isReceiverSelfOrSuper() const {
656 SourceRange ObjCMethodCall::getSourceRange() const {
669 const PseudoObjectExpr *ObjCMethodCall::getContainingPseudoObjectExpr() const {
675 ObjCMessageKind ObjCMethodCall::getMessageKind() const {
706 const_cast<ObjCMethodCall *>(this)->Data
713 const_cast<ObjCMethodCall *>(this)->Dat
    [all...]
ExprEngineObjC.cpp 139 CallEventRef<ObjCMethodCall> Msg =
158 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
CheckerManager.cpp 182 const ObjCMethodCall &Msg;
189 const ObjCMethodCall &msg, ExprEngine &eng,
199 checkFn(*Msg.cloneWithState<ObjCMethodCall>(Pred->getState()), C);
208 const ObjCMethodCall &msg,
ExprEngineCallAndReturn.cpp 336 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(Call)) {
543 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 37 class ObjCMethodCall;
266 const ObjCMethodCall &msg,
274 const ObjCMethodCall &msg,
285 const ObjCMethodCall &msg, ExprEngine &Eng,
449 typedef CheckerFn<void (const ObjCMethodCall &, CheckerContext &)>
Checker.h 125 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg,
140 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 791 class ObjCMethodCall : public CallEvent {
797 ObjCMethodCall(const ObjCMessageExpr *Msg, ProgramStateRef St,
803 ObjCMethodCall(const ObjCMethodCall &Other) : CallEvent(Other) {}
804 void cloneTo(void *Dest) const override { new (Dest) ObjCMethodCall(*this); }
959 CallEventRef<ObjCMethodCall>
    [all...]

Completed in 300 milliseconds