Home
last modified time | relevance | path

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

12345678

/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'}}
/external/python/cpython2/Lib/test/
Dtest_isinstance.py163 class Super: class
166 class Child(Super):
188 self.assertEqual(True, isinstance(Super(), Super))
189 self.assertEqual(False, isinstance(Super(), Child))
190 self.assertEqual(False, isinstance(Super(), AbstractSuper))
191 self.assertEqual(False, isinstance(Super(), AbstractChild))
193 self.assertEqual(True, isinstance(Child(), Super))
200 self.assertEqual(False, isinstance(AbstractSuper(), Super))
205 self.assertEqual(False, isinstance(AbstractChild(), Super))
210 self.assertEqual(True, issubclass(Super, Super))
[all …]
/external/python/cpython3/Lib/test/
Dtest_isinstance.py175 class Super: class
178 class Child(Super):
200 self.assertEqual(True, isinstance(Super(), Super))
201 self.assertEqual(False, isinstance(Super(), Child))
202 self.assertEqual(False, isinstance(Super(), AbstractSuper))
203 self.assertEqual(False, isinstance(Super(), AbstractChild))
205 self.assertEqual(True, isinstance(Child(), Super))
212 self.assertEqual(False, isinstance(AbstractSuper(), Super))
217 self.assertEqual(False, isinstance(AbstractChild(), Super))
222 self.assertEqual(True, issubclass(Super, Super))
[all …]
/external/v8/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/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
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/mockito/src/test/java/org/mockitousage/puzzlers/
DBridgeMethodPuzzleTest.java27 private class Super<T> { class in BridgeMethodPuzzleTest
33 private class Sub extends Super<String> {
42 Super s = new Sub(); in shouldHaveBridgeMethod()
55 Super<String> s_down = s; in shouldVerifyCorrectlyWhenBridgeMethodCalled()
66 Super<String> s_down = s; in shouldVerifyCorrectlyWhenBridgeMethodVerified()
DOverloadingPuzzleTest.java17 private Super mock;
19 private void setMockWithDowncast(Super mock) { in setMockWithDowncast()
23 private interface Super { interface in OverloadingPuzzleTest
27 private interface Sub extends Super {
/external/turbine/javatests/com/google/turbine/lower/testdata/
Dnested_member_import_noncanon.test1 === Super.java ===
3 public class Super {
10 public static class Inner extends Super {
15 // non-canonical static member import, we'd prefer `p.Super.Y`
Dannouse8.test1 === pkg/Super.java ===
4 public class Super {
11 public class Simple extends Super {
Dvisible_package_private_toplevel.test8 public class Base extends Super {}
11 === Super.java ===
13 public class Super {
Danno_self_const.test1 === p/Super.java ===
3 public abstract class Super {
23 class N extends Super {}
/external/libxkbcommon/xkbcommon/test/data/compat/
Dmisc3 virtual_modifiers Alt,Meta,Super,Hyper,ScrollLock;
57 // Sets the "Super" virtual modifier.
61 virtualModifier= Super;
66 action = SetMods(modifiers=Super);
71 virtualModifier= Super;
76 action = SetMods(modifiers=Super);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/filter/targets/
DConstructor.java27 private static class Super extends Constructor { class in Constructor
28 private Super() { in Super() method in Constructor.Super
67 new Super(); in main()
/external/mockito/src/test/java/org/mockitousage/bugs/
DDiamondInheritanceIsConfusingMockitoTest.java27 public class Super<T> { class in DiamondInheritanceIsConfusingMockitoTest
30 public Super(T value) { in Super() method in DiamondInheritanceIsConfusingMockitoTest.Super
38 extends Super<String>
DConfusedSignatureTest.java27 public class Super<T> { class in ConfusedSignatureTest
30 public Super(T value) { in Super() method in ConfusedSignatureTest.Super
38 extends Super<String>
/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/v8/src/
Dapi-arguments.h36 typedef CustomArgumentsBase<T::kArgsLength> Super; typedef
43 explicit inline CustomArguments(Isolate* isolate) : Super(isolate) {} in CustomArguments()
69 typedef CustomArguments<T> Super; typedef
81 : Super(isolate) { in PropertyCallbackArguments()
147 typedef CustomArguments<T> Super; typedef
163 : Super(isolate), argv_(argv), argc_(argc) { in FunctionCallbackArguments()
/external/clang/test/Modules/Inputs/
Dredecl-merge-right.h3 @interface Super
6 @interface A : Super
7 - (Super*)init;

12345678