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.
30 static bool scan_dealloc(Stmt *S, Selector Dealloc) {
33 if (ME->getSelector() == Dealloc) {
45 if (*I && scan_dealloc(*I, Dealloc))
144 // need to implement -dealloc. They implement tear down in another way,
154 // Get the "dealloc" selector.
155 IdentifierInfo* II = &Ctx.Idents.get("dealloc");
159 // Scan the instance methods for "dealloc".
172 if (!MD) { // No dealloc found
    [all...]
RetainCountChecker.cpp 78 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)";
    [all...]

Completed in 377 milliseconds