HomeSort by relevance Sort by last modified time
    Searched full:subclass (Results 1 - 25 of 6336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/648-inline-caches-unresolved/
expected.txt 0 Subclass
  /art/test/589-super-imt/
info.txt 1 Test what the IMT is properly set for a subclass, and that the
2 subclass won't use the ImtConflictTable table of its super class.
  /external/clang/test/SemaObjC/
newproperty-class-method-1.m 5 @interface Subclass
11 @implementation Subclass
36 Subclass.magicNumber = 2 /*[Subclass setMagicNumber:2]*/;
37 if (Subclass.magicNumber != 0)
39 if (Subclass.magicNumber != 2)
41 Subclass.magicNumber += 3;
42 if (Subclass.magicNumber != 5)
44 Subclass.magicNumber -= 5;
45 if (Subclass.magicNumber != 0
    [all...]
class-property-access.m 26 @interface Subclass : RootClass @end
30 (void)Subclass.property;
32 (void)Subclass.method;
35 Subclass.property = 2;
37 Subclass.method = 4;
41 (void)Subclass.classMethod;
45 (void)[Subclass property];
47 [Subclass method];
49 [Subclass classMethod];
53 [Subclass setProperty : 2]
    [all...]
  /external/v8/src/ast/
ast-traversal-visitor.h 28 template <class Subclass>
29 class AstTraversalVisitor : public AstVisitor<Subclass> {
91 template <class Subclass>
92 AstTraversalVisitor<Subclass>::AstTraversalVisitor(Isolate* isolate,
98 template <class Subclass>
99 AstTraversalVisitor<Subclass>::AstTraversalVisitor(uintptr_t stack_limit,
105 template <class Subclass>
106 void AstTraversalVisitor<Subclass>::VisitDeclarations(
113 template <class Subclass>
114 void AstTraversalVisitor<Subclass>::VisitStatements
    [all...]
  /art/test/434-invoke-direct/
info.txt 1 Tests that IllegalAccessError is thrown when a subclass invokes-direct a
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None)
    [all...]
  /external/python/cpython2/Lib/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
abc.py 82 # registered as a virtual subclass of anything. It forces the
105 def register(cls, subclass):
106 """Register a virtual subclass of an ABC."""
107 if not isinstance(subclass, (type, types.ClassType)):
109 if issubclass(subclass, cls):
110 return # Already a subclass
111 # Subtle: test for cycles *after* testing for "already a subclass";
113 if issubclass(cls, subclass):
116 cls._abc_registry.add(subclass)
131 subclass = getattr(instance, '__class__', None
    [all...]
  /external/clang/test/CodeGenObjC/
default-property-synthesis.m 4 // Superclass declares property. Subclass redeclares the same property.
5 // Do not @synthesize-by-default in the subclass. P1
6 // Superclass declares a property. Subclass declares a different property with the same name
7 // (such as different type or attributes). Do not @synthesize-by-default in the subclass. P2
8 // Superclass conforms to a protocol that declares a property. Subclass redeclares the
9 // same property. Do not @synthesize-by-default in the subclass. P3
10 // Superclass conforms to a protocol that declares a property. Subclass conforms to the
11 // same protocol or a derived protocol. Do not @synthesize-by-default in the subclass. P4
  /external/clang/test/Parser/
check-objc2-syntax-1.m 6 @interface Subclass
11 return Subclass.magicNumber;
  /external/python/cpython3/Lib/
abc.py 126 # registered as a virtual subclass of anything. It forces the
151 def register(cls, subclass):
152 """Register a virtual subclass of an ABC.
154 Returns the subclass, to allow usage as a class decorator.
156 if not isinstance(subclass, type):
158 if issubclass(subclass, cls):
159 return subclass # Already a subclass
160 # Subtle: test for cycles *after* testing for "already a subclass";
162 if issubclass(cls, subclass)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiStatusCode.h 76 /// A Status Code Value is made up of the class, subclass, and
108 /// - 0x1000-0x7FFF Subclass Specific.
116 /// Debug Code definitions for all classes and subclass.
137 /// Computing Unit Subclass definitions.
161 // Computing Unit Unspecified Subclass Progress Code definitions.
165 /// Computing Unit Host Processor Subclass Progress Code definitions.
179 // Computing Unit Firmware Processor Subclass Progress Code definitions.
183 // Computing Unit IO Processor Subclass Progress Code definitions.
187 /// Computing Unit Cache Subclass Progress Code definitions.
195 /// Computing Unit Memory Subclass Progress Code definitions.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
EfiStatusCode.h 81 // A Status Code Value is made up of the class, subclass, and
124 // 0x1000-0x7FFF - Subclass Specific
135 // Computing Unit Subclass definitions.
156 // Computing Unit Unspecified Subclass Progress Code definitions.
159 // Computing Unit Host Processor Subclass Progress Code definitions.
172 // Computing Unit Firmware Processor Subclass Progress Code definitions.
175 // Computing Unit IO Processor Subclass Progress Code definitions.
178 // Computing Unit Cache Subclass Progress Code definitions.
184 // Computing Unit Memory Subclass Progress Code definitions.
195 // Computing Unit Chipset Subclass Progress Code definitions.
    [all...]
  /external/proguard/src/proguard/classfile/editor/
SubclassAdder.java 35 private final Clazz subclass; field in class:SubclassAdder
39 * Creates a new SubclassAdder that will add the given subclass.
41 public SubclassAdder(Clazz subclass)
43 this.subclass = subclass;
51 programClass.addSubClass(subclass);
57 libraryClass.addSubClass(subclass);
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbACInterface.java 84 public UsbACInterface(int length, byte type, byte subtype, int subclass) {
87 mSubclass = subclass;
99 ByteStream stream, int length, byte type, byte subtype, int subClass) {
106 return new Usb20ACHeader(length, type, subtype, subClass, acInterfaceSpec);
108 return new Usb10ACHeader(length, type, subtype, subClass, acInterfaceSpec);
116 return new Usb20ACInputTerminal(length, type, subtype, subClass);
118 return new Usb10ACInputTerminal(length, type, subtype, subClass);
126 return new Usb20ACOutputTerminal(length, type, subtype, subClass);
128 return new Usb10ACOutputTerminal(length, type, subtype, subClass);
133 return new UsbACSelectorUnit(length, type, subtype, subClass);
    [all...]
UsbACEndpoint.java 32 UsbACEndpoint(int length, byte type, int subclass) {
34 mSubclass = subclass;
55 int subClass = interfaceDesc.getUsbSubclass();
56 switch (subClass) {
58 return new UsbACAudioControlEndpoint(length, type, subClass);
61 return new UsbACAudioStreamEndpoint(length, type, subClass);
64 return new UsbACMidiEndpoint(length, type, subClass);
67 Log.w(TAG, "Unknown Audio Class Endpoint id:0x" + Integer.toHexString(subClass));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
AccessThroughSuper.java.txt 13 class SubClass extends SuperClass {
  /art/test/142-classloader2/smali/
MyPathClassLoader.smali 1 # Simple subclass of PathClassLoader with methods overridden.
2 # We need to use smali right now to subclass a libcore class, see b/24304298.
  /external/v8/tools/clang/blink_gc_plugin/tests/
delayed_parsing.cpp 22 class Subclass : public TemplateBase<Subclass> {
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
delayed_parsing.cpp 22 class Subclass : public TemplateBase<Subclass> {

Completed in 1748 milliseconds

1 2 3 4 5 6 7 8 91011>>