Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Unused

1 //==- ObjCUnusedIVarsChecker.cpp - Check for unused ivars --------*- C++ -*-==//
29 enum IVarState { Unused, Used };
117 // (b) explicitly marked unused
126 M[Ivar] = Unused;
135 // Any potentially unused ivars?
138 if (I->second == Unused) {
146 // We found some potentially unused ivars. Scan the entire translation unit
154 // Find ivars that are unused.
156 if (I->second == Unused) {
165 BR.EmitBasicReport(D, Checker, "Unused instance variable", "Optimization",