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

  /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))
145 // need to implement -dealloc. They implement tear down in another way,
155 // Get the "dealloc" selector.
156 IdentifierInfo* II = &Ctx.Idents.get("dealloc");
160 // Scan the instance methods for "dealloc".
173 if (!MD) { // No dealloc found
    [all...]
RetainCountChecker.cpp 50 enum ArgEffect { DoNothing, Autorelease, Dealloc, DecRef, DecRefMsg,
161 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
162 ErrorDeallocGC, // Calling -dealloc with GC enabled.
299 Out << "-dealloc (GC)";
303 Out << "-dealloc (not-owned)";
906 case Dealloc:
907 return Dealloc;
    [all...]

Completed in 35 milliseconds