Home
last modified time | relevance | path

Searched refs:super (Results 1 – 25 of 51) sorted by relevance

123

/AliOS-Things-master/components/py_engine/tests/basics/
A Dclass_super.py13 return super().meth()
21 print(str(super())[:18])
34 print(super().bar) # accessing attribute after super()
35 return super().foo().count(2) # calling a subsequent method
40 super(1, 1)
45 assert hasattr(super(B, B()), 'foo')
47 super(B, B()).foo = 1
51 del super(B, B()).foo
A Dsubclass_native_init.py6 super().__init__([a, b])
13 super().__init__()
20 super().__init__()
29 super().__init__()
32 super().__init__()
40 super().__init__(range(2))
A Dclass_super_aslocal.py5 super = [1, 2]
6 super.pop()
7 print(super)
A Dclass_super_object.py12 super().__init__()
19 super().__init__()
A Dclass_delattr_setattr.py83 super(C, c).__setattr__("b", 6)
104 super(C, c).__delattr__("b")
A Dclass_super_multinherit.py14 super().foo()
A Dclass_super_closure.py13 return [self.bar(i) for i in super().foo()]
A Dclass_new.py12 return super(cls, A).__new__(cls)
/AliOS-Things-master/components/py_engine/tests/cpydiff/
A Dcore_class_supermultiple.py17 super().__init__()
23 super().__init__()
29 super().__init__()
A Dcore_class_superproperty.py18 return super().p
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dgenpng.c232 super=8
241 while (x < 2*super) {
242 s = s + bicubic(x/super);
249 b = bicubic(x/super);
256 while (x<2*super) {
258 if (x < 2*super) print ","
/AliOS-Things-master/components/py_engine/engine/drivers/display/
A Dssd1306.py36 super().__init__(self.buffer, self.width, self.height, framebuf.MONO_VLSB)
118 super().__init__(width, height, external_vcc)
147 super().__init__(width, height, external_vcc)
/AliOS-Things-master/components/py_engine/framework/
A Dsh1106.py197 super().__init__(width, height)
213 super().reset(self.res)
221 super().__init__(width, height)
246 super().reset(self.res)
/AliOS-Things-master/components/py_engine/tests/micropython/
A Dheapalloc_super.py28 print(super().foo())
/AliOS-Things-master/components/py_engine/tests/extmod/
A Dframebuf_subclass.py13 super().__init__(bytearray(2 * n * n), n, n, framebuf.RGB565)
/AliOS-Things-master/components/py_engine/engine/tools/
A Dgendoc.py214 super().__init__()
224 super().__init__()
234 super().__init__()
244 super().__init__()
280 super().dump(writer)
301 super().__init__()
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitview.m53 if ((self = [super initWithFrame:frame])) {
418 [super pressesBegan:presses withEvent:event];
427 [super pressesEnded:presses withEvent:event];
436 [super pressesCancelled:presses withEvent:event];
442 [super pressesChanged:presses withEvent:event];
A DSDL_uikitviewcontroller.m91 if (self = [super initWithNibName:nil bundle:nil]) {
326 [super setView:view];
339 [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
348 [super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
353 [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
A DSDL_uikitmetalview.m50 if ((self = [super initWithFrame:frame])) {
62 [super layoutSubviews];
/AliOS-Things-master/components/py_engine/tests/cmdline/
A Dcmd_showbc.py157 super().f()
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoametalview.m82 if ((self = [super initWithFrame:frame])) {
101 [super dealloc];
A DSDL_cocoaopengl.m50 self = [super initWithFormat:format shareContext:share];
136 [super update];
138 dispatch_sync(dispatch_get_main_queue(), ^{ [super update]; });
A DSDL_cocoaevents.m93 [super sendEvent:theEvent];
126 self = [super init];
159 [super dealloc];
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/python/kernel_tests/
A Daudio_microfrontend_op_test.py38 super(AudioFeatureGenerationTest, self).setUp()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dtest262.conf141 super

Completed in 22 milliseconds

123