/third_party/python/Lib/test/ |
H A D | test_super.py | 1 """Unit tests for zero-argument super() & related machinery.""" 15 return super().f() + 'B' 18 return (cls, super().cm(), 'B') 22 return super().f() + 'C' 25 return (cls, super().cm(), 'C') 29 return super().f() + 'D' 31 return (cls, super().cm(), 'D') 77 # Issue4360: super() did not work in a function that 83 return super().f() + 'E' 91 return super() [all...] |
H A D | test_subclassinit.py | 11 super().__init_subclass__() 25 super().__init_subclass__() 65 super().__init_subclass__(**kwargs) 80 super().__init_subclass__(**kwargs) 88 super().__init_subclass__(**kwargs) 93 super().__init_subclass__(**kwargs) 118 ret = super().__new__(cls, name, bases, ns) 182 self = super().__new__(cls, name, bases, ns) 232 super().__init__(name, bases, namespace) 240 return super() [all...] |
/third_party/python/Lib/unittest/test/ |
H A D | support.py | 43 super().__init__() 47 super().startTest(test) 51 super().startTestRun() 55 super().stopTest(test) 59 super().stopTestRun() 63 super().addFailure(*args) 67 super().addSuccess(*args) 71 super().addError(*args) 75 super().addSkip(*args) 79 super() [all...] |
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | ecp.py | 80 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits) 91 args = super().arguments() 159 return super().format_arg('{:x}'.format(self.int_a)).zfill(hex_digits) 170 args = super().arguments() 244 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits) 255 args = super().arguments() 367 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits) 378 args = super().arguments() 473 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits) 484 args = super() [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/util/ |
H A D | range.hpp | 186 typedef detail::basic_range<iterator_range<I>, I, I> super; typedef in clover::iterator_range 209 typename super::size_type 242 > super; typedef in clover::adaptor_range 254 typename super::iterator 259 typename super::iterator 265 typename super::const_iterator 270 typename super::const_iterator 276 typename super::size_type 300 > super; typedef in clover::slice_range 303 slice_range(R &&r, typename super [all...] |
/third_party/markupsafe/ |
H A D | __init__.py | 74 return super().__new__(cls, base) 76 return super().__new__(cls, base, encoding, errors) 83 return self.__class__(super().__add__(self.escape(other))) 95 return self.__class__(super().__mul__(num)) 112 return self.__class__(super().__mod__(arg)) 115 return f"{self.__class__.__name__}({super().__repr__()})" 118 return self.__class__(super().join(map(self.escape, seq))) 125 return [self.__class__(v) for v in super().split(sep, maxsplit)] 132 return [self.__class__(v) for v in super().rsplit(sep, maxsplit)] 139 return [self.__class__(v) for v in super() [all...] |
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | progress.py | 31 super(ResultsTracker, self).__init__() 54 super(base.TestProcObserver, self).__init__() 66 super(SimpleProgressIndicator, self).__init__() 116 super(StreamProgressIndicator, self).__init__() 149 super(VerboseProgressIndicator, self).__init__() 168 super(VerboseProgressIndicator, self)._on_result_for(test, result) 197 super(VerboseProgressIndicator, self)._on_result_for(test, result) 215 super(DotsProgressIndicator, self).__init__() 219 super(DotsProgressIndicator, self)._on_result_for(test, result) 241 super(CompactProgressIndicato [all...] |
/third_party/python/Lib/ |
H A D | selectors.py | 294 super().__init__() 299 key = super().register(fileobj, events, data) 307 key = super().unregister(fileobj) 348 super().__init__() 352 key = super().register(fileobj, events, data) 361 super().unregister(fileobj) 366 key = super().unregister(fileobj) 391 super().unregister(fileobj) 485 super().close() 501 super() [all...] |
H A D | ssl.py | 462 return super().__new__(cls, *_txt2obj(oid, name=False)) 468 return super().__new__(cls, *_nid2obj(nid)) 474 return super().__new__(cls, *_txt2obj(name, name=True)) 602 return TLSVersion(super().minimum_version) 608 super(SSLContext, SSLContext).minimum_version.__set__(self, value) 612 return TLSVersion(super().maximum_version) 616 super(SSLContext, SSLContext).maximum_version.__set__(self, value) 620 return Options(super().options) 624 super(SSLContext, SSLContext).options.__set__(self, value) 676 inner = super() [all...] |
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_api.py | 107 super().test_raises_ModuleNotFoundError() 112 super().test_name_requires_rparition() 117 super().test_negative_level() 122 super().test_nonexistent_fromlist_entry() 127 super().test_fromlist_load_error_propagates 132 super().test_blocked_fromlist()
|
H A D | test___package__.py | 104 super().test_using___package__() 109 super().test_spec_fallback() 171 super().test_top_level() 176 super().test_package() 181 super().test_submodule()
|
/third_party/python/Lib/urllib/ |
H A D | response.py | 20 super(addbase, self).__init__(fp, '<urllib response>', delete=False) 41 super(addclosehook, self).__init__(fp) 54 super(addclosehook, self).close() 61 super(addinfo, self).__init__(fp) 72 super(addinfourl, self).__init__(fp, headers)
|
/third_party/python/Lib/test/support/ |
H A D | testresult.py | 16 super().__init__(stream=stream, descriptions=descriptions, 41 super().startTest(test) 103 super().addError(test, err) 107 super().addExpectedFailure(test, err) 111 super().addFailure(test, err) 115 super().addSkip(test, reason) 119 super().addSuccess(test) 123 super().addUnexpectedSuccess(test)
|
/third_party/python/Lib/test/test_importlib/ |
H A D | fixtures.py | 67 super().setUp() 82 super().setUp() 119 super().setUp() 144 super().setUp() 165 super().setUp() 171 super().setUp() 211 super().setUp() 232 super().setUp()
|
/third_party/icu/icu4c/source/python/icutools/databuilder/ |
H A D | request_types.py | 16 # TODO(ICU-20301): Remove arguments from all instances of super() in this file 96 super(AbstractExecutionRequest, self).__init__(**kwargs) 120 return super(AbstractExecutionRequest, self).flatten(config, all_requests, common_vars) 161 super(SingleExecutionRequest, self).__init__(**kwargs) 174 super(RepeatedExecutionRequest, self).__init__(**kwargs) 177 super(RepeatedExecutionRequest, self)._del_at(i) 185 files = super(RepeatedExecutionRequest, self).all_input_files() 194 super(RepeatedOrSingleExecutionRequest, self).__init__(**kwargs) 223 super(RepeatedOrSingleExecutionRequest, self)._del_at(i) 234 super(PrintFileReques [all...] |
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/ |
H A D | request_types.py | 16 # TODO(ICU-20301): Remove arguments from all instances of super() in this file 96 super(AbstractExecutionRequest, self).__init__(**kwargs) 120 return super(AbstractExecutionRequest, self).flatten(config, all_requests, common_vars) 161 super(SingleExecutionRequest, self).__init__(**kwargs) 174 super(RepeatedExecutionRequest, self).__init__(**kwargs) 177 super(RepeatedExecutionRequest, self)._del_at(i) 185 files = super(RepeatedExecutionRequest, self).all_input_files() 194 super(RepeatedOrSingleExecutionRequest, self).__init__(**kwargs) 223 super(RepeatedOrSingleExecutionRequest, self)._del_at(i) 234 super(PrintFileReques [all...] |
/third_party/python/Lib/unittest/ |
H A D | runner.py | 39 super(TextTestResult, self).__init__(stream, descriptions, verbosity) 54 super(TextTestResult, self).startTest(test) 87 super(TextTestResult, self).addSubTest(test, subtest, err) 90 super(TextTestResult, self).addSuccess(test) 98 super(TextTestResult, self).addError(test, err) 106 super(TextTestResult, self).addFailure(test, err) 114 super(TextTestResult, self).addSkip(test, reason) 122 super(TextTestResult, self).addExpectedFailure(test, err) 131 super(TextTestResult, self).addUnexpectedSuccess(test)
|
/third_party/python/Lib/distutils/tests/ |
H A D | support.py | 19 super().setUp() 31 super().tearDown() 56 super().setUp() 64 super().tearDown() 124 super(EnvironGuard, self).setUp() 136 super(EnvironGuard, self).tearDown()
|
/third_party/node/test/testpy/ |
H A D | __init__.py | 41 super(SimpleTestCase, self).__init__(context, path, arch, mode) 98 super(SimpleTestConfiguration, self).__init__(context, root, section) 123 super(ParallelTestConfiguration, self).__init__(context, root, section, 127 result = super(ParallelTestConfiguration, self).ListTests( 135 super(AddonTestConfiguration, self).__init__(context, root, section, additional) 161 super(AbortTestConfiguration, self).__init__(context, root, section, 165 result = super(AbortTestConfiguration, self).ListTests(
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | errors.py | 38 super().__init__(msg) 66 super().__init__(filename, preprocessor, reason) 77 super().__init__(filename, argv, error, *args, **kwargs) 93 super().__init__(filename, *args, **kwargs) 110 super().__init__(filename, None, *args, **kwargs)
|
/third_party/json/tools/serve_header/ |
H A D | serve_header.py | 34 super().__init__() 150 super().__init__() 249 super().__init__(request, client_address, server, 255 path = os.path.abspath(super().translate_path(path)) 274 return super().send_head() 276 super().send_error(HTTPStatus.NOT_FOUND, 'Not Found') 283 super().send_header(keyword, value) 287 # by send_head via super().send_error() 306 super().send_header('Content-Length', length) 313 super() [all...] |
/third_party/python/Lib/concurrent/futures/ |
H A D | _base.py | 78 super(_AsCompletedWaiter, self).__init__() 83 super(_AsCompletedWaiter, self).add_result(future) 88 super(_AsCompletedWaiter, self).add_exception(future) 93 super(_AsCompletedWaiter, self).add_cancelled(future) 100 super().add_result(future) 104 super().add_exception(future) 108 super().add_cancelled(future) 118 super().__init__() 127 super().add_result(future) 131 super() [all...] |
/third_party/python/Lib/asyncio/ |
H A D | windows_events.py | 55 super().__init__(loop=loop) 61 info = super()._repr_info() 85 return super().cancel(msg=msg) 88 super().set_exception(exception) 92 super().set_result(result) 100 super().__init__(loop=loop) 119 info = super()._repr_info() 159 return super().cancel(msg=msg) 163 super().set_exception(exception) 167 super() [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | generate_psa_wrappers.py | 87 return super()._return_variable_name(function) 164 super()._write_function_call(out, function, argument_names) 168 super()._write_prologue(out, header) 185 super()._write_epilogue(out, header) 192 super().__init__() 225 return super()._printf_parameters(typ, var)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/extension-highlighter/ |
H A D | extension.rb | 19 super(document, data, cursor) 37 return super(directive, target, delimiter, text) 66 result = super(directive, modified_target, delimiter, text) 88 # the super() keyword :|) 100 return super(directive, target, delimiter, text) 129 result = super(directive, modified_target, delimiter, text)
|