Searched refs:ObjCMethodCall (Results 1 - 16 of 16) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DNSAutoreleasePoolChecker.cpp39 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
44 void NSAutoreleasePoolChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
H A DNoReturnFunctionChecker.cpp36 void checkPostObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
87 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
H A DCheckerDocumentation.cpp90 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {}
96 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const {}
H A DBasicObjCFoundationChecks.cpp52 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
[all...]
H A DCallAndMessageChecker.cpp62 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 {
H A DObjCSelfInitChecker.cpp54 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) {
H A DDynamicTypePropagation.cpp107 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
H A DMallocChecker.cpp183 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,
2049 if (!(isa<SimpleFunctionCall>(Call) || isa<ObjCMethodCall>(Call)))
2053 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(Call)) {
H A DRetainCountChecker.cpp735 const RetainSummary *getInstanceMethodSummary(const ObjCMethodCall &M,
738 const RetainSummary *getClassMethodSummary(const ObjCMethodCall &M) {
947 if (const ObjCMethodCall *MC = dyn_cast<ObjCMethodCall>(&Call)) {
982 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
1448 RetainSummaryManager::getInstanceMethodSummary(const ObjCMethodCall &Msg,
1897 CallEventRef<ObjCMethodCall> Call
2832 static bool wasSynthesizedProperty(const ObjCMethodCall *Call,
2861 const ObjCMethodCall *MsgInvocatio
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp607 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 *>(thi
[all...]
H A DExprEngineObjC.cpp139 CallEventRef<ObjCMethodCall> Msg =
158 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
H A DCheckerManager.cpp182 const ObjCMethodCall &Msg;
189 const ObjCMethodCall &msg, ExprEngine &eng,
199 checkFn(*Msg.cloneWithState<ObjCMethodCall>(Pred->getState()), C);
208 const ObjCMethodCall &msg,
H A DExprEngineCallAndReturn.cpp336 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(Call)) {
543 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h37 class ObjCMethodCall;
266 const ObjCMethodCall &msg,
274 const ObjCMethodCall &msg,
285 const ObjCMethodCall &msg, ExprEngine &Eng,
449 typedef CheckerFn<void (const ObjCMethodCall &, CheckerContext &)>
H A DChecker.h125 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg,
140 static void _checkObjCMessage(void *checker, const ObjCMethodCall &msg,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h791 class ObjCMethodCall : public CallEvent { class in namespace:clang::ento
797 ObjCMethodCall(const ObjCMessageExpr *Msg, ProgramStateRef St, function in class:clang::ento::ObjCMethodCall
803 ObjCMethodCall(const ObjCMethodCall &Other) : CallEvent(Other) {} function in class:clang::ento::ObjCMethodCall
804 void cloneTo(void *Dest) const override { new (Dest) ObjCMethodCall(*this); } variable
959 CallEventRef<ObjCMethodCall>
962 return create<ObjCMethodCall>(E, State, LCtx);

Completed in 94 milliseconds