/external/clang/test/SemaObjC/ |
D | property-ivar-mismatch.m | 2 // Test that arithmatic types on property and its ivar have exact match. 6 char ivar; // expected-note{{ivar is declared here}} field 12 @synthesize prop = ivar; // expected-error {{type of property 'prop' ('int') does not match type o…
|
D | interface-layout-2.m | 4 int ivar; field 9 - (int)ivar; method 13 - (int)ivar { method 14 return ivar;
|
D | duplicate-ivar-in-class-extension.m | 12 int ivar; // expected-error {{duplicate member 'ivar'}} field 19 int ivar; // expected-note {{previous declaration is here}} 30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
|
D | static-ivar-ref-1.m | 7 int ivar; field 17 return pc->ivar2 + (*pc).ivar + pc->ivar1; 21 // CHECK: int ivar; 28 // CHECK: return pc->ivar2 + (*pc).ivar + pc->ivar1;
|
D | property-13.m | 25 int ivar; field 36 @synthesize required = ivar; 39 - (int) optional_preexisting_setter_getter { return ivar; } 42 ivar = value; 44 - (void) setOptional_getter_attr:(int)value { ivar = value; }
|
D | arc-property-lifetime.m | 16 @synthesize x; // expected-error {{existing ivar 'x' for strong property 'x' may not be __unsafe_un… 17 @synthesize y; // expected-error {{existing ivar 'y' for strong property 'y' may not be __weak}} 33 @synthesize x; // expected-error {{existing ivar 'x' for strong property 'x' may not be __unsafe_un… 34 @synthesize y; // expected-error {{existing ivar 'y' for strong property 'y' may not be __weak}} 50 @synthesize x; // expected-error {{existing ivar 'x' for strong property 'x' may not be __unsafe_un… 51 @synthesize y; // expected-error {{existing ivar 'y' for strong property 'y' may not be __weak}} 82 @synthesize y; // expected-error {{existing ivar 'y' for unsafe_unretained property 'y' must be __u… 97 @synthesize y; // expected-error {{existing ivar 'y' for unsafe_unretained property 'y' must be __u…
|
D | arc-property.m | 21 @synthesize myString; // expected-error {{existing ivar 'myString' for strong property 'myString' m… 23 @synthesize myString2 = myString2; // expected-error {{existing ivar 'myString2' for strong propert… 27 @synthesize myString5 = StrongIvar5; // expected-error {{existing ivar 'StrongIvar5' for __weak pro… 44 @synthesize x; // expected-error {{existing ivar 'x' for __weak property 'x' must be __weak}} 45 @synthesize y; // expected-error {{existing ivar 'y' for __weak property 'y' must be __weak}}
|
D | property.m | 5 int IVAR; // expected-note{{ivar is declared here}} 22 …expected-error {{type of property 'prop_id' ('id') does not match type of ivar 'IVAR' ('int')}} //… 23 @synthesize name; // OK! property with same name as an accessible ivar of same name 59 int ivar; field 62 @property int ivar; // OK property
|
D | error-property-gc-attr.m | 22 @synthesize pweak=IVAR; // expected-error {{existing ivar 'IVAR' for __weak property 'pweak' must … 23 @synthesize NOT=II; // expected-error {{existing ivar 'II' for strong property 'NOT' may not be __w… 26 @synthesize AWEAK; // expected-error {{existing ivar 'AWEAK' for strong property 'AWEAK' may not be…
|
D | ivar-sem-check-2.m | 19 …1=value; // expected-error {{synthesized properties 'value1' and 'value' both claim ivar 'value'}} 20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use ivar 'value2' decla…
|
D | property-and-class-extension.m | 6 In particular, when searching for an ivar to back an @synthesize, do look at ivars in the class's o… 34 @synthesize Property; // expected-error {{property 'Property' attempting to use ivar 'Property' dec…
|
D | comptypes-legal.m | 10 void __setRetained(id *ivar, id value, NSObject **o) { 11 *ivar = value;
|
/external/clang/test/Analysis/ |
D | unused-ivars.m | 16 // This test case tests the basic functionality of the unused ivar test. 24 // This test case tests whether the unused ivar check handles blocks that 30 @property (readwrite,retain) id ivar; property 34 - (id)ivar { method 48 // <rdar://problem/6260004> Detect that ivar is in use, if used in category
|
/external/clang/test/SemaObjCXX/ |
D | message.mm | 14 typedef struct { int x; } ivar; typedef 17 id ivar; field 33 [ivar method]; 41 [ivar method]; // expected-error{{receiver type 'ivar' is not an Objective-C class}}
|
D | instantiate-expr.mm | 5 int ivar; field 21 get_an_A(N)->ivar = value; // expected-error{{assigning to 'int' from incompatible type 'int *'}} 32 // ivar reference. 35 ptr->ivar = value; // expected-error{{assigning to 'int' from incompatible type 'int *'}}
|
/external/clang/test/Rewriter/ |
D | rewrite-cast-ivar-access.mm | 12 int ivar; field 19 int v = ((G *)arg)->ivar; 49 // CHECK-LP: ((struct G_IMPL *)arg)->ivar
|
/external/clang/test/FixIt/ |
D | typo-crash.m | 5 - (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}
|
/external/clang/test/PCH/ |
D | objcxx-ivar-class.mm | 2 // RUN: %clang_cc1 -include %S/objcxx-ivar-class.h -verify %s -emit-llvm -o - | FileCheck %s 5 // RUN: %clang_cc1 -x objective-c++-header -emit-pch -o %t %S/objcxx-ivar-class.h
|
/external/clang/test/CodeGenObjC/ |
D | autorelease.m | 8 id ivar; field 19 return ivar;
|
D | property-aggr-type.m | 20 st2 ivar; field 26 @synthesize frame = ivar;
|
D | debug-info-blocks.m | 27 int ivar; field 43 ivar = 42 + (int)[d count];
|
D | objc-assign-ivar.m | 19 id ivar; field 37 ASSIGNTEST(foo->ivar, IvarAssigns); // objc_assign_ivar
|
/external/svox/pico/lib/ |
D | picocep.c | 967 picoos_int32 mean, ivar; in makeWUWandWUm() local 1015 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR, in makeWUWandWUm() 1017 … prev_diag0 = cep->diag0[i] = ivar << 2; /* multiply ivar by 4 (4 used to be first entry of xsq) */ in makeWUWandWUm() 1026 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR, in makeWUWandWUm() 1028 cep->diag0[i] += xsq[j] * ivar; in makeWUWandWUm() 1040 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR, in makeWUWandWUm() 1042 cep->diag0[i] += xsq[numd + j] * ivar; in makeWUWandWUm() 1110 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR, in makeWUWandWUm() 1112 cep->diag2[i] -= (ivar + 2) / 4; in makeWUWandWUm() 1139 picoos_int32 mean = 0, ivar = 0; in getFromPdf() local [all …]
|
/external/libxslt/libxslt/ |
D | xslt.c | 512 xsltVarInfoPtr ivar = cctxt->ivars, ivartmp; in xsltCompilerVarInfoFree() local 514 while (ivar) { in xsltCompilerVarInfoFree() 515 ivartmp = ivar; in xsltCompilerVarInfoFree() 516 ivar = ivar->next; in xsltCompilerVarInfoFree() 2249 xsltVarInfoPtr ivar; in xsltCompilerVarInfoPush() local 2251 if ((cctxt->ivar != NULL) && (cctxt->ivar->next != NULL)) { in xsltCompilerVarInfoPush() 2252 ivar = cctxt->ivar->next; in xsltCompilerVarInfoPush() 2253 } else if ((cctxt->ivar == NULL) && (cctxt->ivars != NULL)) { in xsltCompilerVarInfoPush() 2254 ivar = cctxt->ivars; in xsltCompilerVarInfoPush() 2256 ivar = (xsltVarInfoPtr) xmlMalloc(sizeof(xsltVarInfo)); in xsltCompilerVarInfoPush() [all …]
|
/external/llvm/test/Transforms/ObjCARC/ |
D | contract-storestrong-ivar.ll | 19 %ivar = load i64* @"OBJC_IVAR_$_Controller.preferencesController", align 8 21 %add.ptr = getelementptr inbounds i8* %tmp, i64 %ivar
|