/external/clang/test/SemaObjC/ |
D | property-and-class-extension.m | 4 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.
|
D | ivar-in-class-extension-error.m | 7 int _p0; // expected-error {{ivars may not be placed in class extension}} 13 int _p1; // expected-error {{ivars may not be placed in categories}}
|
D | arc-property-decl-attrs.m | 8 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}}
|
D | stand-alone-implementation.m | 3 // Allow injection of ivars into implementation's implicit class.
|
D | arc-property-lifetime.m | 8 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}}
|
D | ivar-in-class-extension.m | 35 int categoryIvar; // expected-error {{ivars may not be placed in categories}}
|
D | ivar-ref-misuse.m | 29 ((Sprite *)self)->spree = 18; /* ivars from within class methods! */
|
D | unused.m | 45 #error __attribute__((unused)) not supported on ivars
|
D | arc-property.m | 36 id __autoreleasing z; // expected-error {{ivars cannot have __autoreleasing ownership}}
|
D | default-synthesize-2.m | 17 // default synthesis allows direct access to property ivars.
|
/external/clang/test/Analysis/ |
D | unused-ivars.m | 69 // <rdar://problem/7254495> - ivars referenced by lexically nested functions 99 // <rdar://problem/8481311> Unused bitfield ivars trigger cause weird
|
D | retain-release-region-store.m | 232 // <rdar://problem/8261992> Idempotent operation checker false positive with ObjC ivars
|
D | retain-release.m | 522 // Test basic tracking of ivars associated with 'self'. For the retain/release 524 // of tracked objects to ivars.
|
/external/clang/test/CodeGenObjC/ |
D | stand-alone-implementation.m | 4 // Allow injection of ivars into implementation's implicit class.
|
D | metadata-symbols-32.m | 14 // Clang's Obj-C 32-bit doesn't emit ivars for the root class.
|
/external/clang/test/ASTMerge/ |
D | property.m | 9 // CHECK: property1.m:28:21: error: property 'Prop2' is synthesized to different ivars in different…
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | ui_localizer.mm | 44 // The ivars are private, so this method lets us trigger the localization
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 1016 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()
|
D | SemaDeclCXX.cpp | 10930 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/ |
D | LangOptions.def | 106 BENIGN_LANGOPT(ObjCGCBitmapPrint , 1, 0, "printing of GC's bitmap layout for __weak/__strong ivars")
|
D | DiagnosticASTKinds.td | 189 "property %0 is synthesized to different ivars in different translation "
|
/external/webkit/Source/WebCore/bridge/objc/ |
D | objc_class.mm | 198 struct objc_ivar_list* fieldsInClass = thisClass->ivars;
|
/external/libxslt/libxslt/ |
D | xslt.c | 512 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()
|
D | xsltInternals.h | 1349 xsltVarInfoPtr ivars; /* Storage of local in-scope variables/params. */ member
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | Checkers.td | 389 HelpText<"Warn about private ivars that are never used">,
|