HomeSort by: relevance | last modified time | path
    Searched defs:IVars (Results 1 - 4 of 4) 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/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...]
RewriteObjC.cpp 3097 /// an objective-c class with ivars.
3114 // If no ivars and no root or if its root, directly or indirectly,
3115 // have no ivars (thus not synthesized) then no need to synthesize this class.
5287 // Build _objc_ivar_list metadata for classes ivars if needed
5325 SmallVector<ObjCIvarDecl *, 8> IVars;
5327 for (auto *IV : IDecl->ivars())
5328 IVars.push_back(IV);
5402 struct _objc_ivar_list *ivars;
5419 Result += "\tstruct _objc_ivar_list *ivars;\n";
5457 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it
    [all...]

Completed in 24 milliseconds