/external/clang/test/SemaObjC/ |
D | invalid-objc-decls-1.m | 3 @interface Super @end interface 4 Super s1; // expected-error{{interface type cannot be statically allocated}} 6 extern Super e1; // expected-error{{interface type cannot be statically allocated}} 9 Super s1; // expected-error{{interface type cannot be statically allocated}} 16 Super ivar1; // expected-error{{interface type cannot be statically allocated}} 21 Super objField; // expected-error{{interface type cannot be statically allocated}} 26 Super<P1> ivar1; // expected-error{{interface type cannot be statically allocated}} 30 Super foo( // expected-error{{interface type 'Super' cannot be returned by value; did you forget * … 31 …Super parm1) { // expected-error{{interface type 'Super' cannot be passed by value; did you forget… 32 Super p1; // expected-error{{interface type cannot be statically allocated}}
|
D | block-type-safety.m | 4 @interface Super @end interface 5 @interface Sub : Super @end 7 void f2(void(^f)(Super *)) { // expected-note{{passing argument to parameter 'f' here}} 8 Super *o; 17 void r0(Super* (^f)()) { 18 Super *o = f(); 34 f3(^(Super *o) { }); // OK, block taking Super* may be called with a Sub* category 36 r0(^Super* () { return 0; }); // OK category 37 r0(^Sub* () { return 0; }); // OK, variable of type Super* gets return value of type Sub* 40 r1(^Super* () { return 0; }); // expected-error {{incompatible block pointer types passing}} category
|
D | property-and-class-extension.m | 10 @interface Super { interface 15 @interface Super() { interface in int 20 @interface SomeClass : Super { 34 …roperty 'Property' attempting to use instance variable 'Property' declared in super class 'Super'}}
|
D | conditional-expr-7.m | 5 @interface Super @end interface 7 @interface NSArray : Super @end 8 @interface NSSet : Super @end
|
D | alias-test-2.m | 4 @interface Super @end // expected-note {{previous definition is here}} interface 10 @compatibility_alias AliasForSuper Super; 12 @implementation MyAlias : AliasForSuper // expected-error {{conflicting super class name 'Super'}}
|
D | ivar-sem-check-2.m | 3 @interface Super { interface 11 @interface Sub : Super 20 …or {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
|
D | ivar-in-implementations.m | 3 @interface Super @end interface 5 @interface INTFSTANDALONE : Super 12 @implementation INTFSTANDALONE : Super // expected-warning {{class implementation may not have supe…
|
D | tentative-property-decl.m | 11 @interface Super { interface 17 @interface MyClass : Super 37 @interface YourClass : Super <P>
|
D | nowarn-superclass-method-mismatch.m | 7 @interface Super interface 12 @interface Sub : Super
|
D | warn-implicit-atomic-property.m | 4 @interface Super interface 11 @implementation Super // expected-warning {{property is assumed atomic when auto-synthesizing the p… implementation
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | regress-merge-descriptors.js | 34 var Car = (function (Super) { argument 38 Super.call(self); 57 extend(Car, Super); 63 var SuperCar = ((function (Super) { argument 67 Super.call(self); 85 extend(SuperCar, Super);
|
/external/chromium_org/base/win/ |
D | event_trace_provider.h | 35 typedef EtwMofEventBase<N> Super; typedef 43 memset(static_cast<Super*>(this), 0, sizeof(Super)); in EtwMofEvent() 48 memset(static_cast<Super*>(this), 0, sizeof(Super)); in EtwMofEvent() 49 header.Size = sizeof(Super); in EtwMofEvent() 58 memset(static_cast<Super*>(this), 0, sizeof(Super)); in EtwMofEvent() 59 header.Size = sizeof(Super); in EtwMofEvent()
|
/external/chromium_org/tools/clang/blink_gc_plugin/tests/ |
D | trace_templated_super.cpp | 10 void Super<T>::clearWeakMembers(Visitor* visitor) in clearWeakMembers() 16 void Super<T>::trace(Visitor* visitor) in trace() 18 visitor->registerWeakMembers<Super<T>, &Super<T>::clearWeakMembers>(this); in trace() 27 Super<T>::trace(visitor); in trace()
|
D | trace_templated_super.h | 20 class Super : public GarbageCollected<Super<T> >, public Mixin { 21 USING_GARBAGE_COLLECTED_MIXIN(Super); 31 class Sub : public Super<T> {
|
/external/qemu/distrib/sdl-1.2.15/src/timer/mint/ |
D | SDL_systimer.c | 67 old_stack = (void *)Super(0); in SDL_StartTicks() 83 void *old_stack = (void *)Super(0); in SDL_GetTicks() 114 old_stack = (void *)Super(0); in SDL_SYS_TimerInit() 130 void *old_stack = (void *)Super(0); in SDL_SYS_TimerQuit()
|
/external/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 23 @interface Super <PROTO> interface 28 @interface Sub : Super <PROTO1> 30 …ted-warning {{property 'P2' 'copy' attribute does not match the property inherited from 'Super'}} \ 31 …ted-warning {{property 'P2' 'atomic' attribute does not match the property inherited from 'Super'}}
|
/external/clang/test/Modules/Inputs/ |
D | redecl-merge-right.h | 3 @interface Super 6 @interface A : Super 7 - (Super*)init;
|
/external/chromium_org/v8/src/ |
D | arguments.h | 133 typedef CustomArgumentsBase<T::kArgsLength> Super; typedef 140 explicit inline CustomArguments(Isolate* isolate) : Super(isolate) {} in CustomArguments() 155 typedef CustomArguments<T> Super; typedef 168 : Super(isolate) { in PropertyCallbackArguments() 219 typedef CustomArguments<T> Super; typedef 236 : Super(isolate), in FunctionCallbackArguments()
|
/external/llvm/test/TableGen/ |
D | SuperSubclassSameName.td | 11 class Super<Arg F> { 14 class Sub<Arg F> : Super<F>;
|
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/ |
D | SDL_mintaudio_stfa.c | 166 oldpile=(void *)Super(0); in Mint_LockAudio() 176 oldpile=(void *)Super(0); in Mint_UnlockAudio() 186 oldpile=(void *)Super(0); in Mint_CloseAudio() 249 oldpile=(void *)Super(0); in Mint_InitAudio()
|
/external/clang/test/Rewriter/ |
D | objc-modern-class-init.mm | 7 @interface Super : Root interface 10 @interface Sub : Super
|
D | objc-modern-class-init-hooks.mm | 7 @interface Super : Root interface 10 @interface Sub : Super
|
/external/clang/test/Index/ |
D | complete-ivar-access.m | 11 @interface Super { interface 21 @interface Super () { interface in int 31 @interface Sub : Super {
|
/external/clang/test/CodeGenObjCXX/ |
D | ivar-objects.mm | 30 @interface Super : NSObject { interface 38 @interface A : Super { 49 @implementation Super implementation
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
D | SDL_xbiosevents.c | 69 oldpile=(void *)Super(0); in SDL_AtariXbios_InstallVectors() 96 oldpile=(void *)Super(NULL); in SDL_AtariXbios_RestoreVectors()
|