Lines Matching full:super
1 //==- ObjCMissingSuperCallChecker.cpp - Check missing super-calls in ObjC --==//
11 // correctly calls super in the methods where this is mandatory.
50 // Recurse if we didn't find the super call yet. in VisitObjCMessageExpr()
192 // It doesn't call super, emit a diagnostic. in checkASTDecl()
205 << *D << "' is missing a [super " << S.getAsString() << "] call"; in checkASTDecl()
229 There are also cases where calling super is suggested but not "mandatory".
231 improvements like being able to allow for the super-call to be done in a called
239 - loadView (should *never* call super)
244 - loadView (take care because UIViewController subclasses should NOT call super
248 - doesNotRecognizeSelector (it only has to call super if it doesn't throw)
251 - arrowDirection (should *never* call super)
252 - arrowOffset (should *never* call super)
253 - arrowBase (should *never* call super)
254 - arrowHeight (should *never* call super)
255 - contentViewInsets (should *never* call super)
258 - rect (should *never* call super)
259 - range (should *never* call super)
260 - writingDirection (should *never* call super)
261 - isVertical (should *never* call super)
262 - containsStart (should *never* call super)
263 - containsEnd (should *never* call super)