Home
last modified time | relevance | path

Searched refs:Super (Results 1 – 25 of 115) sorted by relevance

12345

/external/clang/test/SemaObjC/
Dinvalid-objc-decls-1.m3 @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 * …
31Super 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}}
Dblock-type-safety.m4 @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
Dproperty-and-class-extension.m10 @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'}}
Dconditional-expr-7.m5 @interface Super @end interface
7 @interface NSArray : Super @end
8 @interface NSSet : Super @end
Dalias-test-2.m4 @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'}}
Divar-sem-check-2.m3 @interface Super { interface
11 @interface Sub : Super
20 …or {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
Divar-in-implementations.m3 @interface Super @end interface
5 @interface INTFSTANDALONE : Super
12 @implementation INTFSTANDALONE : Super // expected-warning {{class implementation may not have supe…
Dtentative-property-decl.m11 @interface Super { interface
17 @interface MyClass : Super
37 @interface YourClass : Super <P>
Dnowarn-superclass-method-mismatch.m7 @interface Super interface
12 @interface Sub : Super
Dwarn-implicit-atomic-property.m4 @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/
Dregress-merge-descriptors.js34 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/
Devent_trace_provider.h35 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/
Dtrace_templated_super.cpp10 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()
Dtrace_templated_super.h20 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/
DSDL_systimer.c67 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/
Ddefault-property-synthesis.m23 @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/
Dredecl-merge-right.h3 @interface Super
6 @interface A : Super
7 - (Super*)init;
/external/chromium_org/v8/src/
Darguments.h133 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/
DSuperSubclassSameName.td11 class Super<Arg F> {
14 class Sub<Arg F> : Super<F>;
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
DSDL_mintaudio_stfa.c166 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/
Dobjc-modern-class-init.mm7 @interface Super : Root interface
10 @interface Sub : Super
Dobjc-modern-class-init-hooks.mm7 @interface Super : Root interface
10 @interface Sub : Super
/external/clang/test/Index/
Dcomplete-ivar-access.m11 @interface Super { interface
21 @interface Super () { interface in int
31 @interface Sub : Super {
/external/clang/test/CodeGenObjCXX/
Divar-objects.mm30 @interface Super : NSObject { interface
38 @interface A : Super {
49 @implementation Super implementation
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
DSDL_xbiosevents.c69 oldpile=(void *)Super(0); in SDL_AtariXbios_InstallVectors()
96 oldpile=(void *)Super(NULL); in SDL_AtariXbios_RestoreVectors()

12345