HomeSort by relevance Sort by last modified time
    Searched refs:ivars (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 1 //==- ObjCUnusedIVarsChecker.cpp - Check for unused ivars --------*- C++ -*-==//
12 // has any ivars that are never accessed.
114 // Iterate over the ivars.
115 for (const auto *Ivar : ID->ivars()) {
116 // Ignore ivars that...
136 // Any potentially unused ivars?
147 // We found some potentially unused ivars. Scan the entire translation unit
148 // for functions inside the @implementation that reference these ivars.
155 // Find ivars that are unused.
CheckObjCDealloc.cpp 88 // Does the class contain any ivars that are pointers (or id<...>)?
95 for (const auto *Ivar : ID->ivars()) {
170 // Scan for missing and extra releases of ivars used by implementations
182 if (!T->isObjCObjectPointerType()) // Skip non-pointer ivars
189 // ivars cannot be set via read-only properties, so we'll skip them
  /external/clang/tools/libclang/
IndexDecl.cpp 167 // Index the ivars first to make sure the synthesized ivars are indexed
169 for (const auto *IvarI : D->ivars())
  /external/clang/lib/AST/
DeclPrinter.cpp     [all...]
DeclObjC.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaDeclCXX.cpp 13367 SmallVector<ObjCIvarDecl*, 8> ivars; local
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 2507 uint64_t ivars; \/\/ const ivar_list_t * (64-bit pointer) member in struct:class_ro64_t
2520 uint32_t ivars; \/* const ivar_list_t * (32-bit pointer) *\/ member in struct:class_ro32_t
2711 uint32_t ivars; \/* struct objc_ivar_list * (32-bit pointer) *\/ member in struct:objc_class_t
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 1125 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCInterfaceDecl
2037 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCCategoryDecl
2358 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCImplementationDecl
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp 4934 SmallVector<const ObjCIvarDecl*, 32> ivars; local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 384 SmallVectorImpl<ObjCIvarDecl *> &IVars);
    [all...]
RewriteObjC.cpp     [all...]

Completed in 5320 milliseconds