Home
last modified time | relevance | path

Searched refs:self (Results 1826 - 1850 of 4750) sorted by relevance

1...<<71727374757677787980>>...190

/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgen-invalid-implicit-conversions.py74 def __init__(self, operation, type0, type1):
75 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
76 self.operation = operation
77 self.type0 = type0
78 self.type1 = type1
80 def __str__(self):
81 params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self
[all...]
/third_party/python/Modules/
H A D_bz2module.c252 _bz2_BZ2Compressor_compress_impl(BZ2Compressor *self, Py_buffer *data) in _bz2_BZ2Compressor_compress_impl() argument
257 ACQUIRE_LOCK(self); in _bz2_BZ2Compressor_compress_impl()
258 if (self->flushed) in _bz2_BZ2Compressor_compress_impl()
261 result = compress(self, data->buf, data->len, BZ_RUN); in _bz2_BZ2Compressor_compress_impl()
262 RELEASE_LOCK(self); in _bz2_BZ2Compressor_compress_impl()
277 _bz2_BZ2Compressor_flush_impl(BZ2Compressor *self) in _bz2_BZ2Compressor_flush_impl() argument
282 ACQUIRE_LOCK(self); in _bz2_BZ2Compressor_flush_impl()
283 if (self->flushed) in _bz2_BZ2Compressor_flush_impl()
286 self->flushed = 1; in _bz2_BZ2Compressor_flush_impl()
287 result = compress(self, NUL in _bz2_BZ2Compressor_flush_impl()
315 _bz2_BZ2Compressor___init___impl(BZ2Compressor *self, int compresslevel) _bz2_BZ2Compressor___init___impl() argument
358 _bz2_BZ2Compressor___init__(PyObject *self, PyObject *args, PyObject *kwargs) _bz2_BZ2Compressor___init__() argument
384 BZ2Compressor_dealloc(BZ2Compressor *self) BZ2Compressor_dealloc() argument
396 BZ2Compressor_traverse(BZ2Compressor *self, visitproc visit, void *arg) BZ2Compressor_traverse() argument
625 _bz2_BZ2Decompressor_decompress_impl(BZ2Decompressor *self, Py_buffer *data, Py_ssize_t max_length) _bz2_BZ2Decompressor_decompress_impl() argument
643 _bz2_BZ2Decompressor___init___impl(BZ2Decompressor *self) _bz2_BZ2Decompressor___init___impl() argument
679 _bz2_BZ2Decompressor___init__(PyObject *self, PyObject *args, PyObject *kwargs) _bz2_BZ2Decompressor___init__() argument
704 BZ2Decompressor_dealloc(BZ2Decompressor *self) BZ2Decompressor_dealloc() argument
721 BZ2Decompressor_traverse(BZ2Decompressor *self, visitproc visit, void *arg) BZ2Decompressor_traverse() argument
[all...]
H A Dxxmodule.c11 local variables other than 'self'. If your object type is needed in
33 XxoObject *self; in newXxoObject() local
34 self = PyObject_New(XxoObject, &Xxo_Type); in newXxoObject()
35 if (self == NULL) in newXxoObject()
37 self->x_attr = NULL; in newXxoObject()
38 return self; in newXxoObject()
44 Xxo_dealloc(XxoObject *self) in Xxo_dealloc() argument
46 Py_XDECREF(self->x_attr); in Xxo_dealloc()
47 PyObject_Free(self); in Xxo_dealloc()
51 Xxo_demo(XxoObject *self, PyObjec argument
66 Xxo_getattro(XxoObject *self, PyObject *name) Xxo_getattro() argument
82 Xxo_setattr(XxoObject *self, const char *name, PyObject *v) Xxo_setattr() argument
155 xx_foo(PyObject *self, PyObject *args) xx_foo() argument
169 xx_new(PyObject *self, PyObject *args) xx_new() argument
184 xx_bug(PyObject *self, PyObject *args) xx_bug() argument
205 xx_roj(PyObject *self, PyObject *args) xx_roj() argument
267 null_richcompare(PyObject *self, PyObject *other, int op) null_richcompare() argument
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dir_expression_operation.py27 def __init__(self, c_type, union_field, glsl_type):
28 self.c_type = c_type
29 self.union_field = union_field
30 self.glsl_type = glsl_type
39 def __init__(self, source_types, num_operands):
45 self.dest_type = None
46 self.source_types = source_types
47 self.num_operands = num_operands
48 self.i = 0
50 def __init__(self, dest_typ
[all...]
/third_party/python/Lib/idlelib/
H A Ddelegator.py3 def __init__(self, delegate=None):
4 self.delegate = delegate
5 self.__cache = set()
9 def __getattr__(self, name):
10 attr = getattr(self.delegate, name) # May raise AttributeError
11 setattr(self, name, attr)
12 self.__cache.add(name)
15 def resetcache(self):
19 for key in self.__cache:
21 delattr(self, ke
[all...]
/third_party/python/Modules/_io/clinic/
H A Dbufferedio.c.h6 "readinto($self, buffer, /)\n"
14 _io__BufferedIOBase_readinto_impl(PyObject *self, Py_buffer *buffer);
17 _io__BufferedIOBase_readinto(PyObject *self, PyObject *arg) in _io__BufferedIOBase_readinto() argument
31 return_value = _io__BufferedIOBase_readinto_impl(self, &buffer); in _io__BufferedIOBase_readinto()
43 "readinto1($self, buffer, /)\n"
51 _io__BufferedIOBase_readinto1_impl(PyObject *self, Py_buffer *buffer);
54 _io__BufferedIOBase_readinto1(PyObject *self, PyObject *arg) in _io__BufferedIOBase_readinto1() argument
68 return_value = _io__BufferedIOBase_readinto1_impl(self, &buffer); in _io__BufferedIOBase_readinto1()
80 "detach($self, /)\n"
92 _io__BufferedIOBase_detach_impl(PyObject *self);
95 _io__BufferedIOBase_detach(PyObject *self, PyObject *Py_UNUSED(ignored)) _io__BufferedIOBase_detach() argument
112 _io__Buffered_peek(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_peek() argument
154 _io__Buffered_read(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_read() argument
187 _io__Buffered_read1(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_read1() argument
229 _io__Buffered_readinto(buffered *self, PyObject *arg) _io__Buffered_readinto() argument
266 _io__Buffered_readinto1(buffered *self, PyObject *arg) _io__Buffered_readinto1() argument
303 _io__Buffered_readline(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_readline() argument
336 _io__Buffered_seek(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_seek() argument
372 _io__Buffered_truncate(buffered *self, PyObject *const *args, Py_ssize_t nargs) _io__Buffered_truncate() argument
402 _io_BufferedReader___init__(PyObject *self, PyObject *args, PyObject *kwargs) _io_BufferedReader___init__() argument
456 _io_BufferedWriter___init__(PyObject *self, PyObject *args, PyObject *kwargs) _io_BufferedWriter___init__() argument
507 _io_BufferedWriter_write(buffered *self, PyObject *arg) _io_BufferedWriter_write() argument
549 _io_BufferedRWPair___init__(PyObject *self, PyObject *args, PyObject *kwargs) _io_BufferedRWPair___init__() argument
603 _io_BufferedRandom___init__(PyObject *self, PyObject *args, PyObject *kwargs) _io_BufferedRandom___init__() argument
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dhash_to_binary_tree_inc.h58 HasherCommon* common, HashToBinaryTree* BROTLI_RESTRICT self, in Initialize()
60 self->buckets_ = (uint32_t*)common->extra; in Initialize()
61 self->forest_ = &self->buckets_[BUCKET_SIZE]; in Initialize()
63 self->window_mask_ = (1u << params->lgwin) - 1u; in Initialize()
64 self->invalid_pos_ = (uint32_t)(0 - self->window_mask_); in Initialize()
68 (HashToBinaryTree* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, in Prepare()
70 uint32_t invalid_pos = self->invalid_pos_; in Prepare()
72 uint32_t* BROTLI_RESTRICT buckets = self in Prepare()
57 Initialize( HasherCommon* common, HashToBinaryTree* BROTLI_RESTRICT self, const BrotliEncoderParams* params) Initialize() argument
67 Prepare(HashToBinaryTree* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
91 LeftChildIndex( HashToBinaryTree* BROTLI_RESTRICT self, const size_t pos) LeftChildIndex() argument
97 RightChildIndex( HashToBinaryTree* BROTLI_RESTRICT self, const size_t pos) RightChildIndex() argument
113 StoreAndFindMatches( HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t cur_ix, const size_t ring_buffer_mask, const size_t max_length, const size_t max_backward, size_t* const BROTLI_RESTRICT best_len, BackwardMatch* BROTLI_RESTRICT matches) StoreAndFindMatches() argument
201 FindAllMatches( HashToBinaryTree* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const BrotliEncoderParams* params, BackwardMatch* matches) FindAllMatches() argument
270 Store(HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
279 StoreRange(HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
297 StitchToPreviousBlock( HashToBinaryTree* BROTLI_RESTRICT self, size_t num_bytes, size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask) StitchToPreviousBlock() argument
[all...]
/third_party/ninja/misc/
H A Dwrite_fake_manifests.py53 def __init__(self, src_dir):
54 self.seen_names = set([None])
55 self.seen_defines = set([None])
56 self.src_dir = src_dir
58 def _unique_string(self, seen, avg_options=1.3, p_suffix=0.1):
65 def _n_unique_strings(self, n):
67 return [self._unique_string(seen, avg_options=3, p_suffix=0.4)
70 def target_name(self):
71 return self._unique_string(p_suffix=0, seen=self
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dhash_to_binary_tree_inc.h58 HasherCommon* common, HashToBinaryTree* BROTLI_RESTRICT self, in Initialize()
60 self->buckets_ = (uint32_t*)common->extra; in Initialize()
61 self->forest_ = &self->buckets_[BUCKET_SIZE]; in Initialize()
63 self->window_mask_ = (1u << params->lgwin) - 1u; in Initialize()
64 self->invalid_pos_ = (uint32_t)(0 - self->window_mask_); in Initialize()
68 (HashToBinaryTree* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, in Prepare()
70 uint32_t invalid_pos = self->invalid_pos_; in Prepare()
72 uint32_t* BROTLI_RESTRICT buckets = self in Prepare()
57 Initialize( HasherCommon* common, HashToBinaryTree* BROTLI_RESTRICT self, const BrotliEncoderParams* params) Initialize() argument
67 Prepare(HashToBinaryTree* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
91 LeftChildIndex( HashToBinaryTree* BROTLI_RESTRICT self, const size_t pos) LeftChildIndex() argument
97 RightChildIndex( HashToBinaryTree* BROTLI_RESTRICT self, const size_t pos) RightChildIndex() argument
113 StoreAndFindMatches( HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t cur_ix, const size_t ring_buffer_mask, const size_t max_length, const size_t max_backward, size_t* const BROTLI_RESTRICT best_len, BackwardMatch* BROTLI_RESTRICT matches) StoreAndFindMatches() argument
201 FindAllMatches( HashToBinaryTree* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const BrotliEncoderParams* params, BackwardMatch* matches) FindAllMatches() argument
270 Store(HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
279 StoreRange(HashToBinaryTree* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
297 StitchToPreviousBlock( HashToBinaryTree* BROTLI_RESTRICT self, size_t num_bytes, size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask) StitchToPreviousBlock() argument
[all...]
/third_party/python/Modules/clinic/
H A D_curses_panel.c.h6 "bottom($self, /)\n"
15 _curses_panel_panel_bottom_impl(PyCursesPanelObject *self, PyTypeObject *cls);
18 _curses_panel_panel_bottom(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _curses_panel_panel_bottom() argument
24 return _curses_panel_panel_bottom_impl(self, cls); in _curses_panel_panel_bottom()
28 "hide($self, /)\n"
39 _curses_panel_panel_hide_impl(PyCursesPanelObject *self, PyTypeObject *cls);
42 _curses_panel_panel_hide(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _curses_panel_panel_hide() argument
48 return _curses_panel_panel_hide_impl(self, cls); in _curses_panel_panel_hide()
52 "show($self, /)\n"
61 _curses_panel_panel_show_impl(PyCursesPanelObject *self, PyTypeObjec
64 _curses_panel_panel_show(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_show() argument
86 _curses_panel_panel_top(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_top() argument
108 _curses_panel_panel_above(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_above() argument
126 _curses_panel_panel_below(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_below() argument
144 _curses_panel_panel_hidden(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_hidden() argument
163 _curses_panel_panel_move(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_move() argument
203 _curses_panel_panel_window(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_window() argument
223 _curses_panel_panel_replace(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_replace() argument
260 _curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_set_userptr() argument
293 _curses_panel_panel_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _curses_panel_panel_userptr() argument
[all...]
/test/testfwk/developer_test/src/core/testkit/
H A Dkit_lite.py47 def __init__(self):
48 self.burn_file = ""
49 self.burn_command = ""
50 self.timeout = ""
51 self.paths = ""
53 def __check_config__(self, config):
54 self.timeout = str(int(get_config_value(
56 self.burn_file = get_config_value('burn_file', config, is_list=False)
59 self.burn_command = burn_command.replace(" ", "").split(",")
60 self
[all...]
/third_party/node/deps/v8/tools/
H A Drun-wasm-api-tests.py76 def __init__(self, name, outdir, tempdir):
77 self.name = name
78 self.outdir = outdir
79 self.tempdir = tempdir
80 self.src_file_basename = os.path.join(WASM_PATH, "example", name)
81 self.dst_file_basename = os.path.join(tempdir, name)
82 self.lib_file = os.path.join(outdir, "obj", "libwee8.a")
83 if not os.path.exists(self.lib_file):
87 src_wasm_file = self.src_file_basename + ".wasm"
88 dst_wasm_file = self
[all...]
/drivers/peripheral/wlan/hostapd/interfaces/hdi_service/service_common/
H A Dhostapd_common_cmd.h36 int32_t HostapdInterfaceStartAp(struct IHostapdInterface *self);
38 int32_t HostapdInterfaceStartApWithCmd(struct IHostapdInterface *self, const char *ifName, int id);
40 int32_t HostapdInterfaceStopAp(struct IHostapdInterface *self);
42 int32_t HostapdInterfaceEnableAp(struct IHostapdInterface *self,
45 int32_t HostapdInterfaceDisableAp(struct IHostapdInterface *self,
48 int32_t HostapdInterfaceSetApPasswd(struct IHostapdInterface *self,
51 int32_t HostapdInterfaceSetApName(struct IHostapdInterface *self,
54 int32_t HostapdInterfaceSetApWpaValue(struct IHostapdInterface *self,
57 int32_t HostapdInterfaceSetApBand(struct IHostapdInterface *self,
60 int32_t HostapdInterfaceSetAp80211n(struct IHostapdInterface *self,
[all...]
/third_party/googletest/googletest/test/
H A Dgoogletest-json-outfiles-test.py138 def setUp(self):
142 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
144 self.DeleteFilesAndDir()
146 def tearDown(self):
147 self.DeleteFilesAndDir()
149 def DeleteFilesAndDir(self):
151 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + '.json'))
155 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + '.json'))
159 os.rmdir(self.output_dir_)
163 def testOutfile1(self)
[all...]
/third_party/musl/porting/linux/user/src/linux/
H A Dclone.c36 pthread_t self = __pthread_self(); in __start_child() local
37 self->tid = __syscall(SYS_gettid); in __start_child()
38 self->pid = self->tid; in __start_child()
39 self->proc_tid = -1; in __start_child()
40 self->robust_list.off = 0; in __start_child()
41 self->robust_list.pending = 0; in __start_child()
42 self->next = self->prev = self; in __start_child()
67 pthread_t self = __pthread_self(); clone() local
[all...]
/third_party/musl/src/linux/linux/
H A Dclone.c51 pthread_t self = __pthread_self(); in __start_child() local
52 self->tid = __syscall(SYS_gettid); in __start_child()
53 self->pid = self->tid; in __start_child()
54 self->proc_tid = -1; in __start_child()
55 self->robust_list.off = 0; in __start_child()
56 self->robust_list.pending = 0; in __start_child()
57 self->next = self->prev = self; in __start_child()
82 pthread_t self = __pthread_self(); clone() local
[all...]
/third_party/python/Modules/_sqlite/clinic/
H A Dblob.c.h6 "close($self, /)\n"
15 blob_close_impl(pysqlite_Blob *self);
18 blob_close(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored)) in blob_close() argument
20 return blob_close_impl(self); in blob_close()
24 "read($self, length=-1, /)\n"
40 blob_read_impl(pysqlite_Blob *self, int length);
43 blob_read(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs) in blob_read() argument
59 return_value = blob_read_impl(self, length); in blob_read()
66 "write($self, data, /)\n"
78 blob_write_impl(pysqlite_Blob *self, Py_buffe
81 blob_write(pysqlite_Blob *self, PyObject *arg) blob_write() argument
121 blob_seek(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs) blob_seek() argument
161 blob_tell(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored)) blob_tell() argument
179 blob_enter(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored)) blob_enter() argument
198 blob_exit(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs) blob_exit() argument
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Ddescriptor_database_test.py54 def testAdd(self):
63 self.assertEqual(file_desc_proto, db.FindFileByName(
66 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
69 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
72 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
75 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
77 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
80 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
83 self.assertEqual(file_desc_proto, db.FindFileContainingSymbol(
85 self
[all...]
/third_party/json/tools/cpplint/
H A Dcpplint.py1086 # self._section will move monotonically through this set. If it ever
1112 def __init__(self):
1113 self.include_list = [[]]
1114 self._section = None
1115 self._last_header = None
1116 self.ResetSection('')
1118 def FindHeader(self, header):
1127 for section_list in self.include_list:
1133 def ResetSection(self, directive):
1140 self
[all...]
/test/testfwk/xdevice/src/xdevice/_core/report/
H A Dreporter_helper.py159 def __init__(self):
193 def initial_suites_element(self):
194 return self.initial_element(ReportConstant.test_suites,
195 self.LINE_BREAK, self.LINE_BREAK_INDENT)
197 def initial_suite_element(self):
198 return self.initial_element(ReportConstant.test_suite,
199 self.LINE_BREAK_INDENT,
200 self.LINE_BREAK_INDENT + self
[all...]
/third_party/python/Lib/email/
H A D_header_value_parser.py121 def __init__(self, *args, **kw):
123 self.defects = []
125 def __str__(self):
126 return ''.join(str(x) for x in self)
128 def __repr__(self):
129 return '{}({})'.format(self.__class__.__name__,
133 def value(self):
134 return ''.join(x.value for x in self if x.value)
137 def all_defects(self):
138 return sum((x.all_defects for x in self), sel
[all...]
/third_party/python/Lib/
H A Dinspect.py800 self = obj.__self__
801 if (isclass(self) and
802 getattr(getattr(self, name, None), '__func__') is obj.__func__):
804 cls = self
806 cls = self.__class__
814 self = obj.__self__
815 if (isclass(self) and
816 self.__qualname__ + '.' + name == obj.__qualname__):
818 cls = self
820 cls = self
[all...]
/third_party/node/deps/v8/tools/testrunner/
H A Dnum_fuzzer.py30 def __init__(self, *args, **kwargs):
31 super(NumFuzzer, self).__init__(*args, **kwargs)
34 def framework_name(self):
37 def _add_parser_options(self, parser):
102 def _process_options(self, options):
121 def _get_default_suite_names(self):
124 def _runner_flags(self):
132 def _get_statusfile_variables(self, options):
134 super(NumFuzzer, self)._get_statusfile_variables(options))
149 def _do_execute(self, test
[all...]
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_apitemp.py33 def __init__(self, es=False):
34 gl_XML.gl_print_base.__init__(self)
36 self.name = "gl_apitemp.py (from Mesa)"
37 self.license = license.bsd_license_template % ( \
41 self.es = es
43 self.undef_list.append( "KEYWORD1" )
44 self.undef_list.append( "KEYWORD1_ALT" )
45 self.undef_list.append( "KEYWORD2" )
46 self.undef_list.append( "NAME" )
47 self
[all...]
/third_party/python/Tools/scripts/
H A Dcleanfuture.py135 def __init__(self, f, fname):
136 self.f = f
137 self.fname = fname
138 self.ateof = 0
139 self.lines = [] # raw file lines
142 self.changed = []
145 def getline(self):
146 if self.ateof:
148 line = self.f.readline()
150 self
[all...]

Completed in 16 milliseconds

1...<<71727374757677787980>>...190