/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 | stand-alone-implementation.m | 3 // Allow injection of ivars into implementation's implicit class.
|
D | no-ivar-in-interface-block.m | 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class -Wobjc-interface-ivars %s
|
D | ivar-ref-misuse.m | 29 ((Sprite *)self)->spree = 18; /* ivars from within class methods! */
|
D | unused.m | 50 #error __attribute__((unused)) not supported on ivars
|
D | default-synthesize-2.m | 17 // default synthesis allows direct access to property ivars.
|
D | arc-repeated-weak.mm | 91 void ivars(Test *a) { function 302 - (void)ivars { method in Methods
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-ivars-extension.m | 3 // Make sure we generate debug symbols for ivars added by a class extension. 12 // poking into pi for primary class ivars. 23 // poking into pg for ivars for class extension
|
D | debug-info-ivars-private.m | 3 // Debug symbols for private ivars. This test ensures that we are 4 // generating debug info for ivars added by the implementation.
|
D | stand-alone-implementation.m | 4 // Allow injection of ivars into implementation's implicit class.
|
D | metadata-symbols-32.m | 13 // Clang's Obj-C 32-bit doesn't emit ivars for the root class.
|
/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 | objc_invalidation.m | 117 // Partial invalidators invalidate only some ivars. They are guaranteed to be
|
D | retain-release-region-store.m | 232 // <rdar://problem/8261992> Idempotent operation checker false positive with ObjC ivars
|
/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 | 1081 ObjCIvarDecl **ivars, unsigned numIvars, in CheckImplementationIvars() argument 1094 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars() 1095 IDecl->makeDeclVisibleInContext(ivars[i]); in CheckImplementationIvars() 1096 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars() 1105 assert(ivars && "missing @implementation ivars"); in CheckImplementationIvars() 1110 ObjCIvarDecl* ImplIvar = ivars[i]; in CheckImplementationIvars() 1131 ObjCIvarDecl* ImplIvar = ivars[j++]; in CheckImplementationIvars() 1160 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count); in CheckImplementationIvars()
|
D | SemaDeclCXX.cpp | 11535 SmallVector<ObjCIvarDecl*, 8> ivars; in SetIvarInitializers() local 11536 CollectIvarsToConstructOrDestruct(OID, ivars); in SetIvarInitializers() 11537 if (ivars.empty()) in SetIvarInitializers() 11540 for (unsigned i = 0; i < ivars.size(); i++) { in SetIvarInitializers() 11541 FieldDecl *Field = ivars[i]; in SetIvarInitializers()
|
/external/clang/include/clang/Basic/ |
D | LangOptions.def | 109 BENIGN_LANGOPT(ObjCGCBitmapPrint , 1, 0, "printing of GC's bitmap layout for __weak/__strong ivars")
|
D | DiagnosticASTKinds.td | 193 "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 | 384 HelpText<"Warn about private ivars that are never used">,
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseRecognizer.m | 174 // this can be extended by the grammar writer to reset custom ivars
|