Lines Matching full:unused
1 //==- ObjCUnusedIVarsChecker.cpp - Check for unused ivars --------*- C++ -*-==//
30 enum IVarState { Unused, Used };
116 // (b) explicitly marked unused
124 M[Ivar] = Unused;
133 // Any potentially unused ivars?
136 if (State == Unused) {
144 // We found some potentially unused ivars. Scan the entire translation unit
152 // Find ivars that are unused.
154 if (State == Unused) {
163 BR.EmitBasicReport(ID, Checker, "Unused instance variable",