Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Scan

32 static void Scan(IvarUsageMap& M, const Stmt *S) {
46 Scan(M, BE->getBody());
51 Scan(M, *I);
54 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) {
68 static void Scan(IvarUsageMap& M, const ObjCContainerDecl *D) {
69 // Scan the methods for accesses.
72 Scan(M, (*I)->getBody());
75 // Scan for @synthesized property methods that act as setters/getters
79 Scan(M, *I);
81 // Scan the associated categories as well.
86 Scan(M, CID);
91 static void Scan(IvarUsageMap &M, const DeclContext *C, const FileID FID,
98 Scan(M, FD->getBody());
131 // Now scan the implementation declaration.
132 Scan(M, D);
145 // We found some potentially unused ivars. Scan the entire translation unit
151 Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM);