Searched refs:declaration (Results 1 – 25 of 318) sorted by relevance
12345678910>>...13
/external/clang/test/SemaObjC/ |
D | check-dup-decl-methods-1.m | 11 - (int) meth; // expected-note {{previous declaration is here}} 12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}} 19 - (int) catm : (char)ch1; // expected-note {{previous declaration is here}} 21 - (int) catm : (char*)ch1; // expected-error {{duplicate declaration of method 'catm:'}} 27 + (int) catm1 : (char)ch : (int)i; // expected-note {{previous declaration is here}} 28 + (T*) meth1; // expected-note {{previous declaration is here}} 29 + (int) catm1 : (char)ch : (int*)i; // expected-error {{duplicate declaration of method 'catm1::'}} 30 + (T**) meth1; // expected-error {{duplicate declaration of method 'meth1'}} 35 - (int) meth; // expected-note {{previous declaration is here}} 36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
|
D | alias-test-1.m | 3 @compatibility_alias alias4 foo; // expected-warning {{cannot find interface declaration for 'foo'}} 5 @class class2; // expected-note {{previous declaration is here}} 8 typedef int I; // expected-note {{previous declaration is here}} 10 @compatibility_alias alias1 I; // expected-warning {{cannot find interface declaration for 'I'}} 16 typedef int alias2; // expected-note {{previous declaration is here}}
|
D | builtin_objc_lib_functions.m | 4 …e {{please include the header <objc/runtime.h> or explicitly provide a declaration for 'objc_getCl… 8 …e {{please include the header <objc/runtime.h> or explicitly provide a declaration for 'objc_getMe… 11 …e {{please include the header <objc/runtime.h> or explicitly provide a declaration for 'objc_enume… 14 …e {{please include the header <objc/message.h> or explicitly provide a declaration for 'objc_msgSe… 16 id f4(struct objc_super *super, SEL op) { // expected-warning {{declaration of 'struct objc_super' … 18 …e {{please include the header <objc/message.h> or explicitly provide a declaration for 'objc_msgSe… 23 …{please include the header </objc/objc-auto.h> or explicitly provide a declaration for 'objc_assig… 28 …se include the header </objc/objc-exception.h> or explicitly provide a declaration for 'objc_excep…
|
D | property.m | 20 @dynamic bad; // expected-error {{property implementation must have its declaration in interface… 21 …operty 'prop_id' must either be named the same}} // expected-note {{previous declaration is here}} 28 @dynamic bad; // expected-error {{property implementation must have its declaration in the categor… 31 @implementation E // expected-warning {{cannot find interface declaration for 'E'}} 32 @dynamic d; // expected-error {{property implementation must have its declaration in interface 'E'… 35 @implementation Q(MYCAT) // expected-error {{cannot find interface declaration for 'Q'}} 36 @dynamic d; // expected-error {{property implementation in a category with no category declaration… 63 @property int treeController; // expected-error {{property has a previous declaration}}
|
D | class-extension-dup-methods.m | 4 - (int) garf; // expected-note {{ previous declaration is here}} 6 + (int) cgarf; // expected-note {{ previous declaration is here}} 11 - (void) garf; // expected-error {{duplicate declaration of method 'garf'}} 12 + (void) cgarf; // expected-error {{duplicate declaration of method 'cgarf'}}
|
D | class-conforming-protocol-1.m | 8 - (INTF*) METH1; // expected-note {{previous declaration is here}} 9 - (INTF<P1>*) METH1; // expected-error {{duplicate declaration of method 'METH1'}} 12 - (INTF<P2,P1>*) METH2; // expected-note {{previous declaration is here}} 13 - (INTF<P2,P1,P3>*) METH2; // expected-error {{duplicate declaration of method 'METH2'}}
|
D | arc-system-header.m | 16 …p->field = 0; // expected-error {{'field' is unavailable: this system declaration uses an unsuppor… 21 …p->field1 = 0; // expected-error {{'field1' is unavailable: this system declaration uses an unsupp… 43 …*p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupporte… 44 …p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported… 45 …*[p prop] = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsuppor… 46 …[p setProp: 0]; // expected-error {{'setProp:' is unavailable: this system declaration uses an uns…
|
D | duplicate-property-class-extension.m | 16 @property (readwrite) char foo; // expected-error {{property has a previous declaration}} 17 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}} 21 @property (readonly) char foo; // expected-error {{property has a previous declaration}} 22 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
|
D | warn-superclass-method-mismatch.m | 4 -(void) method_r: (char)ch : (float*)f1 : (int*) x; // expected-note {{previous declaration is here… 10 -(void) method: (int*) x; // expected-note {{previous declaration is here}} 11 -(void) method1: (Base*) x; // expected-note {{previous declaration is here}} 13 + method3: (int)x1 : (Base *)x2 : (float)x3; // expected-note {{previous declaration is here}} 15 - method5: (int) x : (double) d; // expected-note {{previous declaration is here}} 16 - method6: (int) x : (float) d; // expected-note {{previous declaration is here}}
|
D | undef-class-messagin-error.m | 7 @interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'; did you… 11 @implementation OtherChild (Categ) // expected-error {{cannot find interface declaration for 'Other… 12 + (int) flushCache2 { [super flashCache]; } // expected-error {{no @interface declaration found in …
|
D | duplicate-ivar-in-class-extension.m | 7 int iSuper; // expected-note {{previous declaration is here}} 19 int ivar; // expected-note {{previous declaration is here}} 24 int another_ivar; // expected-note {{previous declaration is here}}
|
D | interface-1.m | 5 NSObject // expected-error {{cannot find interface declaration for 'NSObject'}} 6 <NSCopying> // expected-error {{cannot find protocol declaration for 'NSCopying'}} 14 } // expected-error {{expected ';' at end of declaration list}}
|
D | method-prototype-scope.m | 15 // expected-note {{previous declaration is here}} 21 // expected-note {{previous declaration is here}} 35 - doSomethingWith:(struct S *)object and:(struct P *)obj; // expected-warning {{declaration of 'str…
|
D | class-impl-1.m | 27 @implementation INTF2 : SUPR // expected-error {{cannot find interface declaration for 'SUPR', sup… 32 @implementation INTF4 @end // expected-warning {{cannot find interface declaration for 'INTF4'}} 36 @implementation INTF5 { // expected-warning {{cannot find interface declaration for 'INTF5'}}
|
D | dist-object-modifiers.m | 5 - (bycopy id)serverPID; // expected-note {{previous declaration is here}} 6 - (void)doStuff:(bycopy id)clientId; // expected-note {{previous declaration is here}} 8 …More : (byref id)Arg : (bycopy oneway id)Arg1; // expected-note 3 {{previous declaration is here}}
|
D | method-conflict.m | 59 - (void)foo:(id)format, ...; // expected-note {{previous declaration is here}} 60 - (void)foo1:(id)format; // expected-note {{previous declaration is here}} 63 - (void)foo:(id)format {}; // expected-warning {{conflicting variadic declaration of method and its… 64 - (void)foo1:(id)format, ... {}; // expected-warning {{conflicting variadic declaration of method a…
|
D | DoubleMethod.m | 13 - (void) method {;} // expected-note {{previous declaration is here}} 14 - (void) method {;} // expected-error {{duplicate declaration of method 'method'}}
|
D | undefined-protocol-type-1.m | 7 - (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}} 8 - (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}}
|
D | protocol-expr-neg-1.m | 16 Protocol *pp = @protocol(i); // expected-error {{cannot find protocol declaration for 'i'}} 17 Protocol *p1p = @protocol(cl); // expected-error {{cannot find protocol declaration for 'cl'}}
|
/external/bison/ |
D | config.hin | 38 /* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if 42 /* Define to 1 if you have the declaration of `clock', and to 0 if you don't. 46 /* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you 50 /* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if 54 /* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if 58 /* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if 62 /* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if 66 /* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if 70 /* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if 74 /* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if [all …]
|
/external/clang/include/clang/Basic/ |
D | DiagnosticCommonKinds.td | 22 def note_previous_declaration : Note<"previous declaration is here">; 24 "previous implicit declaration is here">; 27 def note_forward_declaration : Note<"forward declaration of %0">; 45 def ext_no_declarators : ExtWarn<"declaration does not declare anything">, 59 "cannot define a function with non-namespace scope in a friend declaration">;
|
D | DiagnosticParseKinds.td | 35 def ext_duplicate_declspec : Extension<"duplicate '%0' declaration specifier">; 54 "type-less parameter names in function declaration">; 56 "variable declaration in for loop is a C99-specific feature">; 105 def err_expected_external_declaration : Error<"expected external declaration">; 119 "expected ';' at end of declaration">; 121 "expected ';' at end of declaration list">; 123 "expected ';' at end of declaration list">; 125 "expected member name or ';' after declaration specifiers">; 140 "invalid '==' at end of declaration; did you mean '='?">; 223 "cannot combine with previous '%0' declaration specifier">; [all …]
|
/external/clang/test/Analysis/ |
D | CFDateGC.m | 1 …er-store=basic -verify -fobjc-gc -analyzer-constraints=basic %s -Wno-implicit-function-declaration 2 …er-store=basic -verify -fobjc-gc -analyzer-constraints=range %s -Wno-implicit-function-declaration 3 …r=core -analyzer-store=basic -verify -fobjc-gc -disable-free %s -Wno-implicit-function-declaration 4 …r-store=region -analyzer-constraints=basic -verify -fobjc-gc %s -Wno-implicit-function-declaration 5 …r-store=region -analyzer-constraints=range -verify -fobjc-gc %s -Wno-implicit-function-declaration
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSCSSStyleDeclarationCustom.cpp | 49 CSSStyleDeclaration* declaration = impl(); in markChildren() local 52 if (CSSRule* parentRule = declaration->parentRule()) in markChildren() 55 if (declaration->isMutableStyleDeclaration()) { in markChildren() 56 …utableStyleDeclaration* mutableDeclaration = static_cast<CSSMutableStyleDeclaration*>(declaration); in markChildren()
|
/external/webkit/LayoutTests/fast/encoding/ |
D | pseudo-xml-2-expected.txt | 1 Test for bug 9783: An XML declaration without an explicit encoding incorrectly triggers UTF-8 encod… 3 Test that an XML declaration with an explicit encoding is still honored. This is what Firefox 1.5 a…
|
12345678910>>...13