HomeSort by: relevance | last modified time | path
    Searched defs:Ivars (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
TextStub.cpp 59 objc-ivars: [] # Optional: List of Objective C Instance
93 objc-ivars: [] # Optional: List of Objective C Instance
102 objc-ivars: [] # Optional: List of Objective C Instance Variables
136 objc-ivars: [] # Optional: List of Objective C Instance
147 objc-ivars: [] # Optional: List of Objective C Instance Variables
186 objc-ivars: [] # Optional: List of Objective C Instance
199 objc-ivars: [] # Optional: List of Objective C Instance Variables
216 std::vector<FlowStringRef> IVars;
226 std::vector<FlowStringRef> IVars;
236 std::vector<FlowStringRef> Ivars;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 20 // the ivars or call another invalidation method (on self).
22 // Partial invalidor annotation allows to address cases when ivars are
25 // method and all the partial methods cumulatively invalidate all ivars.
48 /// Check that all ivars are invalidated.
96 /// Statement visitor, which walks the method body and flags the ivars
99 /// The set of Ivars which need to be invalidated.
100 IvarSet &IVars;
151 : IVars(InIVars),
188 /// Given the property declaration, and the list of tracked ivars, finds
308 // We only track the ivars/properties that are defined in the curren
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 2116 ObjCIvarDecl **ivars, unsigned numIvars,
2129 ivars[i]->setLexicalDeclContext(ImpDecl);
2135 IDecl->makeDeclVisibleInContext(ivars[i]);
2136 ImpDecl->addDecl(ivars[i]);
2145 assert(ivars && "missing @implementation ivars");
2150 ObjCIvarDecl* ImplIvar = ivars[i];
2157 // Check class extensions (unnamed categories) for duplicate ivars.
2180 ObjCIvarDecl* ImplIvar = ivars[j++];
2210 Diag(ivars[j]->getLocation(), diag::err_inconsistent_ivar_count)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 481 llvm::Constant *IVars,
737 /// constructors from Objective-C ivars.
740 /// constructors to Objective-C ivars.
1728 // struct objc_ivar_list *ivars;
1820 // struct objc_ivar_list *ivars;
1834 // struct objc_ivar ivars[]
2870 auto Ivars = IvarList.beginArray(ObjCIvarTy);
2872 auto Ivar = Ivars.beginStruct(ObjCIvarTy);
2876 Ivar.finishAndAddTo(Ivars);
2878 Ivars.finishAndAddTo(IvarList)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 382 SmallVectorImpl<ObjCIvarDecl *> &IVars);
941 assert(IMD && OID && "Synthesized ivars must be attached to @implementation");
3772 SmallVector<const ObjCIvarDecl *, 8> IVars;
3775 IVars.push_back(IVD);
3777 for (unsigned i = 0, e = IVars.size(); i < e; i++)
3778 if (IVars[i]->isBitField()) {
3779 IvarGroupNumber[IVars[i++]] = ++GroupNo;
3780 while (i < e && IVars[i]->isBitField())
3781 IvarGroupNumber[IVars[i++]] = GroupNo;
3792 SmallVectorImpl<ObjCIvarDecl *> &IVars) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 2547 /// This routine first collects all declared, but not synthesized, ivars in
2548 /// super class and then collects all ivars, including those synthesized for
2550 /// when all ivars, declared and synthesized are known.
2553 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
2555 DeepCollectObjCIvars(SuperClass, false, Ivars);
2557 for (const auto *I : OI->ivars())
2558 Ivars.push_back(I);
2563 Ivars.push_back(Iv);
2768 // Count ivars declared in class extension.
2773 // includes synthesized ivars
    [all...]

Completed in 51 milliseconds