Lines Matching full:super
1 //===- ObjCSuperDeallocChecker.cpp - Check correct use of [super dealloc] -===//
10 // self is used after a call to [super dealloc] in MRR mode.
34 this, "[super dealloc] should not be called more than once",
60 // Remember whether [super dealloc] has previously been called on the
100 Desc = "[super dealloc] should not be called multiple times"; in checkPreObjCMessage()
115 // Check for [super dealloc] method call. in checkPostObjCMessage()
122 assert(SelfSymbol && "No receiver symbol at call to [super dealloc]?"); in checkPostObjCMessage()
125 // we inline a call to [super dealloc] where the inlined call itself in checkPostObjCMessage()
126 // calls [super dealloc]. in checkPostObjCMessage()
146 // Climb the super regions to find the base symbol while recording in checkLocation()
254 // Is Succ the node on which the analyzer noted that [super dealloc] was in VisitNode()
267 L, "[super dealloc] called here"); in VisitNode()