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

  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 34 /// The argument is treated as if an -dealloc message had been sent to
36 Dealloc,
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 1 //==- CheckObjCDealloc.cpp - Check ObjC -dealloc implementation --*- C++ -*-==//
12 // correctly implements -dealloc.
31 static bool scan_dealloc(Stmt *S, Selector Dealloc) {
34 if (ME->getSelector() == Dealloc) {
46 if (*I && scan_dealloc(*I, Dealloc))
143 // need to implement -dealloc. They implement tear down in another way,
153 // Get the "dealloc" selector.
154 IdentifierInfo* II = &Ctx.Idents.get("dealloc");
158 // Scan the instance methods for "dealloc".
169 if (!MD) { // No dealloc found
    [all...]
RetainCountChecker.cpp 84 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
85 ErrorDeallocGC, // Calling -dealloc with GC enabled.
290 Out << "-dealloc (GC)";
294 Out << "-dealloc (not-owned)";
894 case Dealloc:
895 return Dealloc;
    [all...]

Completed in 168 milliseconds