Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Scan

33 static void Scan(IvarUsageMap& M, const Stmt *S) {
47 Scan(M, BE->getBody());
57 Scan(M, sub);
61 Scan(M, *I);
64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) {
78 static void Scan(IvarUsageMap& M, const ObjCContainerDecl *D) {
79 // Scan the methods for accesses.
82 Scan(M, (*I)->getBody());
85 // Scan for @synthesized property methods that act as setters/getters
89 Scan(M, *I);
91 // Scan the associated categories as well.
97 Scan(M, CID);
102 static void Scan(IvarUsageMap &M, const DeclContext *C, const FileID FID,
109 Scan(M, FD->getBody());
142 // Now scan the implementation declaration.
143 Scan(M, D);
156 // We found some potentially unused ivars. Scan the entire translation unit
162 Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM);