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

1 2 3 45 6 7 8 91011>>

  /art/test/133-static-invoke-super/src/
Main.java 8 static class SubClass extends SuperClass {
30 (new SubClass()).testDirect(iterations);
35 (new SubClass()).testStatic(iterations);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /external/clang/test/FixIt/
auto-isa-fixit.m 35 @interface Subclass : BaseClass @end
47 @implementation Subclass
52 Subclass *x;
  /external/clang/test/SemaObjC/
error-missing-getter.m 4 @interface Subclass
11 int func (int arg, Subclass *x) {
36 @interface Sub : Subclass
dealloc.m 31 @interface Subclass : Base
34 @interface Subclass (CAT)
38 @implementation Subclass (CAT)
  /external/python/cpython2/Lib/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /test/framework/harnesses/host_controller/command_processor/
base_command_processor.py 36 '''Internal SetUp function that will call subclass' Setup function.
47 '''SetUp method for subclass to override.'''
51 '''Internal function that will call subclass' Run function.
76 '''Internal function that will call subclass' Help function.'''
85 '''Internal function that will call subclass' TearDown function.'''
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
conditional_distribution.py 34 "Named arguments forwarded to subclass implementation."})
41 "Named arguments forwarded to subclass implementation."})
47 "Named arguments forwarded to subclass implementation."})
53 "Named arguments forwarded to subclass implementation."})
59 "Named arguments forwarded to subclass implementation."})
65 "Named arguments forwarded to subclass implementation."})
72 "Named arguments forwarded to subclass implementation."})
  /external/testng/src/main/java/org/testng/internal/
MethodInheritance.java 27 * Look in map for a class that is a subclass of methodClass
48 * need to be sorted base class first and subclass last). false otherwise (subclass
65 Class subClass = findSubClass(map, methodClass);
66 if (null != subClass) {
67 l = map.get(subClass);
69 map.remove(subClass);
  /external/python/cpython2/Doc/library/
abc.rst 45 .. method:: register(subclass)
47 Register *subclass* as a "virtual subclass" of this ABC. For
62 .. method:: __subclasshook__(subclass)
66 Check whether *subclass* is considered a subclass of this ABC. This means
69 subclass of the ABC. (This class method is called from the
73 it returns ``True``, the *subclass* is considered a subclass of this ABC.
74 If it returns ``False``, the *subclass* is not considered a subclass o
    [all...]
  /external/libmtp/logs/
lsusb-canon-canoscan.txt 10 bDeviceSubClass 255 Vendor Specific Subclass
37 bInterfaceSubClass 255 Vendor Specific Subclass
75 bDeviceSubClass 255 Vendor Specific Subclass
  /external/python/cpython3/Lib/test/
test_dynamicclassattribute.py 38 class SubClass(BaseClass):
44 """SubClass.getter"""
115 sub = SubClass()
123 sub = SubClass()
124 self.assertEqual(sub.__class__.__dict__['spam'].__doc__, "SubClass.getter")
201 """This is a subclass of DynamicClassAttribute"""
204 """This is a subclass of DynamicClassAttribute that defines __slots__"""
230 """spam wrapped in DynamicClassAttribute subclass"""
234 "spam wrapped in DynamicClassAttribute subclass")
243 """spam wrapped in DynamicClassAttribute subclass"""
    [all...]
test_property.py 36 class SubClass(BaseClass):
40 """SubClass.getter"""
97 sub = SubClass()
105 sub = SubClass()
106 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
178 """This is a subclass of property"""
181 """This is a subclass of property that defines __slots__"""
204 """spam wrapped in property subclass"""
208 "spam wrapped in property subclass")
217 """spam wrapped in property subclass"""
    [all...]
  /art/test/135-MirandaDispatch/smali/
b_21646347.smali 4 # being a subclass of the abstract class, not postpone the check because the miranda method's
  /cts/tools/dasm/src/java_cup/runtime/
char_token.java 4 /** This subclass of token represents symbols that need to maintain one
double_token.java 4 /** This subclass of token represents symbols that need to maintain one
float_token.java 4 /** This subclass of token represents symbols that need to maintain one
int_token.java 4 /** This subclass of token represents symbols that need to maintain one
long_token.java 4 /** This subclass of token represents symbols that need to maintain one
str_token.java 4 /** This subclass of token represents symbols that need to maintain one
token.java 4 /** This subclass of symbol represents (at least) terminal symbols returned

Completed in 849 milliseconds

1 2 3 45 6 7 8 91011>>