Home
last modified time | relevance | path

Searched refs:ivars (Results 1 – 25 of 40) sorted by relevance

12

/external/clang/test/SemaObjC/
Dproperty-and-class-extension.m4 When processing @synthesize, treat ivars in a class extension the same as ivars in the class @inter…
5 and treat ivars in a superclass extension the same as ivars in the superclass @interface.
6 In particular, when searching for an ivar to back an @synthesize, do look at ivars in the class's o…
7 extension but ignore any ivars in superclass class extensions.
Divar-in-class-extension-error.m7 int _p0; // expected-error {{ivars may not be placed in class extension}}
13 int _p1; // expected-error {{ivars may not be placed in categories}}
Darc-property-decl-attrs.m8 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
19 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
30 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
Dstand-alone-implementation.m3 // Allow injection of ivars into implementation's implicit class.
Darc-property-lifetime.m8 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
25 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
42 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
Divar-in-class-extension.m35 int categoryIvar; // expected-error {{ivars may not be placed in categories}}
Divar-ref-misuse.m29 ((Sprite *)self)->spree = 18; /* ivars from within class methods! */
Dunused.m45 #error __attribute__((unused)) not supported on ivars
Darc-property.m36 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
Ddefault-synthesize-2.m17 // default synthesis allows direct access to property ivars.
/external/clang/test/Analysis/
Dunused-ivars.m69 // <rdar://problem/7254495> - ivars referenced by lexically nested functions
99 // <rdar://problem/8481311> Unused bitfield ivars trigger cause weird
Dretain-release-region-store.m232 // <rdar://problem/8261992> Idempotent operation checker false positive with ObjC ivars
Dretain-release.m522 // Test basic tracking of ivars associated with 'self'. For the retain/release
524 // of tracked objects to ivars.
/external/clang/test/CodeGenObjC/
Dstand-alone-implementation.m4 // Allow injection of ivars into implementation's implicit class.
Dmetadata-symbols-32.m14 // Clang's Obj-C 32-bit doesn't emit ivars for the root class.
/external/clang/test/ASTMerge/
Dproperty.m9 // CHECK: property1.m:28:21: error: property 'Prop2' is synthesized to different ivars in different…
/external/chromium/chrome/browser/ui/cocoa/
Dui_localizer.mm44 // The ivars are private, so this method lets us trigger the localization
/external/clang/lib/Sema/
DSemaDeclObjC.cpp1016 ObjCIvarDecl **ivars, unsigned numIvars, in CheckImplementationIvars() argument
1029 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1030 IDecl->makeDeclVisibleInContext(ivars[i]); in CheckImplementationIvars()
1031 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
1040 assert(ivars && "missing @implementation ivars"); in CheckImplementationIvars()
1045 ObjCIvarDecl* ImplIvar = ivars[i]; in CheckImplementationIvars()
1066 ObjCIvarDecl* ImplIvar = ivars[j++]; in CheckImplementationIvars()
1095 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count); in CheckImplementationIvars()
DSemaDeclCXX.cpp10930 SmallVector<ObjCIvarDecl*, 8> ivars; in SetIvarInitializers() local
10931 CollectIvarsToConstructOrDestruct(OID, ivars); in SetIvarInitializers()
10932 if (ivars.empty()) in SetIvarInitializers()
10935 for (unsigned i = 0; i < ivars.size(); i++) { in SetIvarInitializers()
10936 FieldDecl *Field = ivars[i]; in SetIvarInitializers()
/external/clang/include/clang/Basic/
DLangOptions.def106 BENIGN_LANGOPT(ObjCGCBitmapPrint , 1, 0, "printing of GC's bitmap layout for __weak/__strong ivars")
DDiagnosticASTKinds.td189 "property %0 is synthesized to different ivars in different translation "
/external/webkit/Source/WebCore/bridge/objc/
Dobjc_class.mm198 struct objc_ivar_list* fieldsInClass = thisClass->ivars;
/external/libxslt/libxslt/
Dxslt.c512 xsltVarInfoPtr ivar = cctxt->ivars, ivartmp; in xsltCompilerVarInfoFree()
559 if (cctxt->ivars) in xsltCompilationCtxtFree()
2253 } else if ((cctxt->ivar == NULL) && (cctxt->ivars != NULL)) { in xsltCompilerVarInfoPush()
2254 ivar = cctxt->ivars; in xsltCompilerVarInfoPush()
2264 if (cctxt->ivars == NULL) { in xsltCompilerVarInfoPush()
2265 cctxt->ivars = ivar; in xsltCompilerVarInfoPush()
DxsltInternals.h1349 xsltVarInfoPtr ivars; /* Storage of local in-scope variables/params. */ member
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckers.td389 HelpText<"Warn about private ivars that are never used">,

12