Searched defs:self (Results 176 - 200 of 228) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Dbufferedio.c36 bufferediobase_readinto(PyObject *self, PyObject *args) argument
46 data = PyObject_CallMethod(self, "read", "n", buf.len);
83 bufferediobase_detach(PyObject *self) argument
107 bufferediobase_read(PyObject *self, PyObject *args) argument
120 bufferediobase_read1(PyObject *self, PyObject *args) argument
135 bufferediobase_write(PyObject *self, PyObject *args) argument
265 _enter_buffered_busy(buffered *self) argument
267 if (self->owner == PyThread_get_thread_ident()) {
268 PyObject *r = PyObject_Repr((PyObject *) self);
278 PyThread_acquire_lock(self
366 buffered_dealloc(buffered *self) argument
390 buffered_traverse(buffered *self, visitproc visit, void *arg) argument
398 buffered_clear(buffered *self) argument
417 buffered_simple_flush(buffered *self, PyObject *args) argument
424 buffered_closed(buffered *self) argument
438 buffered_closed_get(buffered *self, void *context) argument
445 buffered_close(buffered *self, PyObject *args) argument
482 buffered_detach(buffered *self, PyObject *args) argument
500 buffered_seekable(buffered *self, PyObject *args) argument
507 buffered_readable(buffered *self, PyObject *args) argument
514 buffered_writable(buffered *self, PyObject *args) argument
521 buffered_name_get(buffered *self, void *context) argument
528 buffered_mode_get(buffered *self, void *context) argument
537 buffered_fileno(buffered *self, PyObject *args) argument
544 buffered_isatty(buffered *self, PyObject *args) argument
594 _buffered_raw_tell(buffered *self) argument
615 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) argument
648 _buffered_init(buffered *self) argument
724 buffered_flush(buffered *self, PyObject *args) argument
749 buffered_peek(buffered *self, PyObject *args) argument
776 buffered_read(buffered *self, PyObject *args) argument
815 buffered_read1(buffered *self, PyObject *args) argument
882 buffered_readinto(buffered *self, PyObject *args) argument
905 _buffered_readline(buffered *self, Py_ssize_t limit) argument
1015 buffered_readline(buffered *self, PyObject *args) argument
1027 buffered_tell(buffered *self, PyObject *args) argument
1041 buffered_seek(buffered *self, PyObject *args) argument
1115 buffered_truncate(buffered *self, PyObject *args) argument
1156 buffered_iternext(buffered *self) argument
1194 buffered_repr(buffered *self) argument
1226 _bufferedreader_reset_buf(buffered *self) argument
1232 bufferedreader_init(buffered *self, PyObject *args, PyObject *kwds) argument
1268 _bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len) argument
1309 _bufferedreader_fill_buffer(buffered *self) argument
1326 _bufferedreader_read_all(buffered *self) argument
1398 _bufferedreader_read_fast(buffered *self, Py_ssize_t n) argument
1417 _bufferedreader_read_generic(buffered *self, Py_ssize_t n) argument
1508 _bufferedreader_peek_unlocked(buffered *self, Py_ssize_t n) argument
1633 _bufferedwriter_reset_buf(buffered *self) argument
1640 bufferedwriter_init(buffered *self, PyObject *args, PyObject *kwds) argument
1682 _bufferedwriter_raw_write(buffered *self, char *start, Py_ssize_t len) argument
1720 _bufferedwriter_flush_unlocked(buffered *self, int restore_pos) argument
1782 bufferedwriter_write(buffered *self, PyObject *args) argument
2031 bufferedrwpair_init(rwpair *self, PyObject *args, PyObject *kwds) argument
2066 bufferedrwpair_traverse(rwpair *self, visitproc visit, void *arg) argument
2073 bufferedrwpair_clear(rwpair *self) argument
2082 bufferedrwpair_dealloc(rwpair *self) argument
2092 _forward_call(buffered *self, const char *name, PyObject *args) argument
2108 bufferedrwpair_read(rwpair *self, PyObject *args) argument
2114 bufferedrwpair_peek(rwpair *self, PyObject *args) argument
2120 bufferedrwpair_read1(rwpair *self, PyObject *args) argument
2126 bufferedrwpair_readinto(rwpair *self, PyObject *args) argument
2132 bufferedrwpair_write(rwpair *self, PyObject *args) argument
2138 bufferedrwpair_flush(rwpair *self, PyObject *args) argument
2144 bufferedrwpair_readable(rwpair *self, PyObject *args) argument
2150 bufferedrwpair_writable(rwpair *self, PyObject *args) argument
2156 bufferedrwpair_close(rwpair *self, PyObject *args) argument
2167 bufferedrwpair_isatty(rwpair *self, PyObject *args) argument
2181 bufferedrwpair_closed_get(rwpair *self, void *context) argument
2266 bufferedrandom_init(buffered *self, PyObject *args, PyObject *kwds) argument
[all...]
H A Dtextio.c39 textiobase_detach(PyObject *self) argument
52 textiobase_read(PyObject *self, PyObject *args) argument
64 textiobase_readline(PyObject *self, PyObject *args) argument
76 textiobase_write(PyObject *self, PyObject *args) argument
88 textiobase_encoding_get(PyObject *self, void *context) argument
102 textiobase_newlines_get(PyObject *self, void *context) argument
114 textiobase_errors_get(PyObject *self, void *context) argument
199 incrementalnewlinedecoder_init(nldecoder_object *self, argument
211 self->decoder = decoder;
215 self
232 incrementalnewlinedecoder_dealloc(nldecoder_object *self) argument
250 nldecoder_object *self = (nldecoder_object *) _self; local
463 incrementalnewlinedecoder_decode(nldecoder_object *self, PyObject *args, PyObject *kwds) argument
477 incrementalnewlinedecoder_getstate(nldecoder_object *self, PyObject *args) argument
505 incrementalnewlinedecoder_setstate(nldecoder_object *self, PyObject *state) argument
524 incrementalnewlinedecoder_reset(nldecoder_object *self, PyObject *args) argument
535 incrementalnewlinedecoder_newlines_get(nldecoder_object *self, void *context) argument
699 ascii_encode(textio *self, PyObject *text) argument
707 utf16be_encode(textio *self, PyObject *text) argument
715 utf16le_encode(textio *self, PyObject *text) argument
723 utf16_encode(textio *self, PyObject *text) argument
739 utf32be_encode(textio *self, PyObject *text) argument
747 utf32le_encode(textio *self, PyObject *text) argument
755 utf32_encode(textio *self, PyObject *text) argument
771 utf8_encode(textio *self, PyObject *text) argument
779 latin1_encode(textio *self, PyObject *text) argument
808 textiowrapper_init(textio *self, PyObject *args, PyObject *kwds) argument
1047 _textiowrapper_clear(textio *self) argument
1066 textiowrapper_dealloc(textio *self) argument
1078 textiowrapper_traverse(textio *self, visitproc visit, void *arg) argument
1096 textiowrapper_clear(textio *self) argument
1160 textiowrapper_detach(textio *self) argument
1190 _textiowrapper_writeflush(textio *self) argument
1216 textiowrapper_write(textio *self, PyObject *args) argument
1315 textiowrapper_set_decoded_chars(textio *self, PyObject *chars) argument
1323 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n) argument
1358 textiowrapper_read_chunk(textio *self) argument
1451 textiowrapper_read(textio *self, PyObject *args) argument
1648 _textiowrapper_readline(textio *self, Py_ssize_t limit) argument
1802 textiowrapper_readline(textio *self, PyObject *args) argument
1913 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie) argument
1934 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie) argument
1954 textiowrapper_seek(textio *self, PyObject *args) argument
2130 textiowrapper_tell(textio *self, PyObject *args) argument
2301 textiowrapper_truncate(textio *self, PyObject *args) argument
2320 textiowrapper_repr(textio *self) argument
2359 textiowrapper_fileno(textio *self, PyObject *args) argument
2366 textiowrapper_seekable(textio *self, PyObject *args) argument
2373 textiowrapper_readable(textio *self, PyObject *args) argument
2380 textiowrapper_writable(textio *self, PyObject *args) argument
2387 textiowrapper_isatty(textio *self, PyObject *args) argument
2394 textiowrapper_flush(textio *self, PyObject *args) argument
2405 textiowrapper_close(textio *self, PyObject *args) argument
2435 textiowrapper_iternext(textio *self) argument
2473 textiowrapper_name_get(textio *self, void *context) argument
2480 textiowrapper_closed_get(textio *self, void *context) argument
2487 textiowrapper_newlines_get(textio *self, void *context) argument
2507 textiowrapper_errors_get(textio *self, void *context) argument
2515 textiowrapper_chunk_size_get(textio *self, void *context) argument
2522 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_json.c88 py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr);
99 scanner_init(PyObject *self, PyObject *args, PyObject *kwds);
101 scanner_dealloc(PyObject *self);
103 scanner_clear(PyObject *self);
107 encoder_init(PyObject *self, PyObject *args, PyObject *kwds);
109 encoder_dealloc(PyObject *self);
111 encoder_clear(PyObject *self);
786 py_scanstring(PyObject* self UNUSED, PyObject *args)
822 py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr)
841 scanner_dealloc(PyObject *self) argument
849 scanner_traverse(PyObject *self, visitproc visit, void *arg) argument
865 scanner_clear(PyObject *self) argument
1655 scanner_call(PyObject *self, PyObject *args, PyObject *kwds) argument
1702 scanner_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1829 encoder_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1869 encoder_call(PyObject *self, PyObject *args, PyObject *kwds) argument
2303 encoder_dealloc(PyObject *self) argument
2311 encoder_traverse(PyObject *self, visitproc visit, void *arg) argument
2328 encoder_clear(PyObject *self) argument
[all...]
H A D_ssl.c128 static PyObject *PySSL_SSLwrite(PySSLObject *self, PyObject *args);
129 static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args);
132 static PyObject *PySSL_peercert(PySSLObject *self, PyObject *args);
133 static PyObject *PySSL_cipher(PySSLObject *self);
270 PySSLObject *self; local
275 self = PyObject_New(PySSLObject, &PySSL_Type); /* Create new object */
276 if (self == NULL)
278 memset(self->server, '\0', sizeof(char) * X509_NAME_MAXLEN);
279 memset(self->issuer, '\0', sizeof(char) * X509_NAME_MAXLEN);
280 self
418 PySSL_sslwrap(PyObject *self, PyObject *args) argument
458 PySSL_SSLdo_handshake(PySSLObject *self) argument
521 PySSL_server(PySSLObject *self) argument
527 PySSL_issuer(PySSLObject *self) argument
995 PySSL_peercert(PySSLObject *self, PyObject *args) argument
1045 PySSL_cipher(PySSLObject *self) argument
1093 PySSL_dealloc(PySSLObject *self) argument
1175 PySSL_SSLwrite(PySSLObject *self, PyObject *args) argument
1250 PySSL_SSLpending(PySSLObject *self) argument
1269 PySSL_SSLread(PySSLObject *self, PyObject *args) argument
1366 PySSL_SSLshutdown(PySSLObject *self) argument
1470 PySSL_getattr(PySSLObject *self, char *name) argument
1497 PySSL_RAND_add(PyObject *self, PyObject *args) argument
1517 PySSL_RAND_status(PyObject *self) argument
1530 PySSL_RAND_egd(PyObject *self, PyObject *arg) argument
[all...]
H A D_struct.c1219 prepare_s(PyStructObject *self) argument
1230 fmt = PyString_AS_STRING(self->s_format);
1285 self->s_size = size;
1286 self->s_len = len;
1293 if (self->s_codes != NULL)
1294 PyMem_FREE(self->s_codes);
1295 self->s_codes = codes;
1348 PyObject *self; local
1352 self = type->tp_alloc(type, 0);
1353 if (self !
1365 s_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1440 s_unpack(PyObject *self, PyObject *inputstr) argument
1482 s_unpack_from(PyObject *self, PyObject *args, PyObject *kwds) argument
1594 s_pack(PyObject *self, PyObject *args) argument
1633 s_pack_into(PyObject *self, PyObject *args) argument
1684 s_get_format(PyStructObject *self, void *unused) argument
1691 s_get_size(PyStructObject *self, void *unused) argument
1798 clearcache(PyObject *self) argument
1808 calcsize(PyObject *self, PyObject *fmt) argument
1823 pack(PyObject *self, PyObject *args) argument
1853 pack_into(PyObject *self, PyObject *args) argument
1883 unpack(PyObject *self, PyObject *args) argument
1903 unpack_from(PyObject *self, PyObject *args, PyObject *kwds) argument
[all...]
H A D_testcapimodule.c53 test_config(PyObject *self) argument
75 test_list_api(PyObject *self) argument
162 test_dict_iteration(PyObject* self) argument
223 test_lazy_hash_inheritance(PyObject* self) argument
291 broken_buffer_getbuffer(PyObject *self, Py_buffer *view, int flags) argument
351 test_broken_memoryview(PyObject* self) argument
413 test_long_api(PyObject* self) argument
443 test_longlong_api(PyObject* self, PyObject *args) argument
461 test_long_and_overflow(PyObject *self) argument
626 test_long_long_and_overflow(PyObject *self) argument
790 test_L_code(PyObject *self) argument
835 getargs_tuple(PyObject *self, PyObject *args) argument
844 getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs) argument
863 getargs_b(PyObject *self, PyObject *args) argument
872 getargs_B(PyObject *self, PyObject *args) argument
881 getargs_h(PyObject *self, PyObject *args) argument
890 getargs_H(PyObject *self, PyObject *args) argument
899 getargs_I(PyObject *self, PyObject *args) argument
908 getargs_k(PyObject *self, PyObject *args) argument
917 getargs_i(PyObject *self, PyObject *args) argument
926 getargs_l(PyObject *self, PyObject *args) argument
935 getargs_n(PyObject *self, PyObject *args) argument
945 getargs_L(PyObject *self, PyObject *args) argument
954 getargs_K(PyObject *self, PyObject *args) argument
966 test_k_code(PyObject *self) argument
1026 test_u_code(PyObject *self) argument
1067 test_widechar(PyObject *self) argument
1109 test_empty_argparse(PyObject *self) argument
1135 codec_incrementalencoder(PyObject *self, PyObject *args) argument
1145 codec_incrementaldecoder(PyObject *self, PyObject *args) argument
1158 test_long_numbits(PyObject *self) argument
1201 test_null_strings(PyObject *self) argument
1211 raise_exception(PyObject *self, PyObject *args) argument
1245 test_datetime_capi(PyObject *self, PyObject *args) argument
1301 test_thread_state(PyObject *self, PyObject *args) argument
1365 pending_threadfunc(PyObject *self, PyObject *arg) argument
1391 test_string_from_format(PyObject *self, PyObject *args) argument
1461 test_capsule(PyObject *self, PyObject *args) argument
1584 test_with_docstring(PyObject *self) argument
1591 traceback_print(PyObject *self, PyObject *args) argument
1609 code_newempty(PyObject *self, PyObject *args) argument
1625 make_exception_with_doc(PyObject *self, PyObject *args, PyObject *kwargs) argument
[all...]
H A Darraymodule.c45 array_resize(arrayobject *self, Py_ssize_t newsize) argument
55 if (self->allocated >= newsize &&
56 Py_SIZE(self) < newsize + 16 &&
57 self->ob_item != NULL) {
58 Py_SIZE(self) = newsize;
74 _new_size = (newsize >> 4) + (Py_SIZE(self) < 8 ? 3 : 7) + newsize;
75 items = self->ob_item;
78 if (_new_size <= ((~(size_t)0) / self->ob_descr->itemsize))
79 PyMem_RESIZE(items, char, (_new_size * self->ob_descr->itemsize));
86 self
463 ins1(arrayobject *self, Py_ssize_t where, PyObject *v) argument
792 array_iter_extend(arrayobject *self, PyObject *bb) argument
815 array_do_extend(arrayobject *self, PyObject *bb) argument
851 array_inplace_concat(arrayobject *self, PyObject *bb) argument
866 array_inplace_repeat(arrayobject *self, Py_ssize_t n) argument
909 ins(arrayobject *self, Py_ssize_t where, PyObject *v) argument
918 array_count(arrayobject *self, PyObject *v) argument
941 array_index(arrayobject *self, PyObject *v) argument
965 array_contains(arrayobject *self, PyObject *v) argument
979 array_remove(arrayobject *self, PyObject *v) argument
1007 array_pop(arrayobject *self, PyObject *args) argument
1038 array_extend(arrayobject *self, PyObject *bb) argument
1052 array_insert(arrayobject *self, PyObject *args) argument
1068 array_buffer_info(arrayobject *self, PyObject *unused) argument
1091 array_append(arrayobject *self, PyObject *v) argument
1103 array_byteswap(arrayobject *self, PyObject *unused) argument
1160 array_reverse(arrayobject *self, PyObject *unused) argument
1192 array_fromfile(arrayobject *self, PyObject *args) argument
1254 array_fromfile_as_read(arrayobject *self, PyObject *args) argument
1264 array_tofile(arrayobject *self, PyObject *f) argument
1293 array_tofile_as_write(arrayobject *self, PyObject *f) argument
1303 array_fromlist(arrayobject *self, PyObject *list) argument
1351 array_tolist(arrayobject *self, PyObject *unused) argument
1376 array_fromstring(arrayobject *self, PyObject *args) argument
1418 array_tostring(arrayobject *self, PyObject *unused) argument
1438 array_fromunicode(arrayobject *self, PyObject *args) argument
1482 array_tounicode(arrayobject *self, PyObject *unused) argument
1645 array_subscr(arrayobject* self, PyObject* item) argument
1704 array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value) argument
1858 array_buffer_getreadbuf(arrayobject *self, Py_ssize_t index, const void **ptr) argument
1872 array_buffer_getwritebuf(arrayobject *self, Py_ssize_t index, const void **ptr) argument
1886 array_buffer_getsegcount(arrayobject *self, Py_ssize_t *lenp) argument
1989 arrayobject *self = (arrayobject *)a; local
[all...]
H A Dbz2module.c519 BZ2File_read(BZ2FileObject *self, PyObject *args) argument
529 ACQUIRE_LOCK(self);
530 switch (self->mode) {
547 if (check_iterbuffered(self))
567 chunksize = Util_UnivNewlineRead(&bzerror, self->fp,
570 self);
571 self->pos += chunksize;
575 self->size = self->pos;
576 self
610 BZ2File_readline(BZ2FileObject *self, PyObject *args) argument
659 BZ2File_readlines(BZ2FileObject *self, PyObject *args) argument
825 BZ2File_write(BZ2FileObject *self, PyObject *args) argument
885 BZ2File_writelines(BZ2FileObject *self, PyObject *seq) argument
1023 BZ2File_seek(BZ2FileObject *self, PyObject *args) argument
1176 BZ2File_tell(BZ2FileObject *self, PyObject *args) argument
1205 BZ2File_close(BZ2FileObject *self) argument
1241 BZ2File_enter(BZ2FileObject *self) argument
1256 BZ2File_exit(BZ2FileObject *self, PyObject *args) argument
1290 BZ2File_get_newlines(BZ2FileObject *self, void *closure) argument
1319 BZ2File_get_closed(BZ2FileObject *self, void *closure) argument
1325 BZ2File_get_mode(BZ2FileObject *self, void *closure) argument
1331 BZ2File_get_name(BZ2FileObject *self, void *closure) argument
1365 BZ2File_init(BZ2FileObject *self, PyObject *args, PyObject *kwargs) argument
1477 BZ2File_dealloc(BZ2FileObject *self) argument
1505 BZ2File_getiter(BZ2FileObject *self) argument
1519 BZ2File_iternext(BZ2FileObject *self) argument
1619 BZ2Comp_compress(BZ2CompObject *self, PyObject *args) argument
1701 BZ2Comp_flush(BZ2CompObject *self) argument
1772 BZ2Comp_init(BZ2CompObject *self, PyObject *args, PyObject *kwargs) argument
1817 BZ2Comp_dealloc(BZ2CompObject *self) argument
1910 BZ2Decomp_decompress(BZ2DecompObject *self, PyObject *args) argument
2001 BZ2Decomp_init(BZ2DecompObject *self, PyObject *args, PyObject *kwargs) argument
2043 BZ2Decomp_dealloc(BZ2DecompObject *self) argument
2122 bz2_compress(PyObject *self, PyObject *args, PyObject *kwargs) argument
2216 bz2_decompress(PyObject *self, PyObject *args) argument
[all...]
H A Ditertoolsmodule.c625 tee(PyObject *self, PyObject *args) argument
H A Dselectmodule.c195 select_select(PyObject *self, PyObject *args) argument
340 update_ufd_array(pollObject *self) argument
344 struct pollfd *old_ufds = self->ufds;
346 self->ufd_len = PyDict_Size(self->dict);
347 PyMem_RESIZE(self->ufds, struct pollfd, self->ufd_len);
348 if (self->ufds == NULL) {
349 self->ufds = old_ufds;
355 while (PyDict_Next(self
372 poll_register(pollObject *self, PyObject *args) argument
415 poll_modify(pollObject *self, PyObject *args) argument
460 poll_unregister(pollObject *self, PyObject *o) argument
494 poll_poll(pollObject *self, PyObject *args) argument
600 pollObject *self; local
617 poll_dealloc(pollObject *self) argument
626 poll_getattr(pollObject *self, char *name) argument
656 select_poll(PyObject *self, PyObject *unused) argument
721 pyepoll_internal_close(pyEpoll_Object *self) argument
738 pyEpoll_Object *self; local
787 pyepoll_dealloc(pyEpoll_Object *self) argument
794 pyepoll_close(pyEpoll_Object *self) argument
811 pyepoll_get_closed(pyEpoll_Object *self) argument
820 pyepoll_fileno(pyEpoll_Object *self) argument
898 pyepoll_register(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
923 pyepoll_modify(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
944 pyepoll_unregister(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
963 pyepoll_poll(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
1244 kqueue_event_init(kqueue_event_Object *self, PyObject *args, PyObject *kwds) argument
1371 kqueue_queue_internal_close(kqueue_queue_Object *self) argument
1388 kqueue_queue_Object *self; local
1426 kqueue_queue_dealloc(kqueue_queue_Object *self) argument
1433 kqueue_queue_close(kqueue_queue_Object *self) argument
1450 kqueue_queue_get_closed(kqueue_queue_Object *self) argument
1459 kqueue_queue_fileno(kqueue_queue_Object *self) argument
1488 kqueue_queue_control(kqueue_queue_Object *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dbytearrayobject.c63 bytearray_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) argument
70 *ptr = (void *)PyByteArray_AS_STRING(self);
71 return Py_SIZE(self);
75 bytearray_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) argument
82 *ptr = (void *)PyByteArray_AS_STRING(self);
83 return Py_SIZE(self);
87 bytearray_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp) argument
90 *lenp = Py_SIZE(self);
95 bytearray_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr) argument
102 *ptr = PyByteArray_AS_STRING(self);
148 _canresize(PyByteArrayObject *self) argument
206 PyByteArray_Size(PyObject *self) argument
215 PyByteArray_AsString(PyObject *self) argument
224 PyByteArray_Resize(PyObject *self, Py_ssize_t size) argument
312 bytearray_length(PyByteArrayObject *self) argument
318 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) argument
351 bytearray_repeat(PyByteArrayObject *self, Py_ssize_t count) argument
377 bytearray_irepeat(PyByteArrayObject *self, Py_ssize_t count) argument
408 bytearray_getitem(PyByteArrayObject *self, Py_ssize_t i) argument
420 bytearray_subscript(PyByteArrayObject *self, PyObject *index) argument
475 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, PyObject *values) argument
565 bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value) argument
588 bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values) argument
746 bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) argument
914 bytearray_repr(PyByteArrayObject *self) argument
1014 bytearray_richcompare(PyObject *self, PyObject *other, int op) argument
1091 bytearray_dealloc(PyByteArrayObject *self) argument
1179 bytearray_find(PyByteArrayObject *self, PyObject *args) argument
1195 bytearray_count(PyByteArrayObject *self, PyObject *args) argument
1225 bytearray_index(PyByteArrayObject *self, PyObject *args) argument
1249 bytearray_rfind(PyByteArrayObject *self, PyObject *args) argument
1264 bytearray_rindex(PyByteArrayObject *self, PyObject *args) argument
1279 bytearray_contains(PyObject *self, PyObject *arg) argument
1307 _bytearray_tailmatch(PyByteArrayObject *self, PyObject *substr, Py_ssize_t start, Py_ssize_t end, int direction) argument
1354 bytearray_startswith(PyByteArrayObject *self, PyObject *args) argument
1393 bytearray_endswith(PyByteArrayObject *self, PyObject *args) argument
1433 bytearray_translate(PyByteArrayObject *self, PyObject *args) argument
1531 return_self(PyByteArrayObject *self) argument
1559 replace_interleave(PyByteArrayObject *self, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1619 replace_delete_single_character(PyByteArrayObject *self, char from_c, Py_ssize_t maxcount) argument
1662 replace_delete_substring(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, Py_ssize_t maxcount) argument
1714 replace_single_character_in_place(PyByteArrayObject *self, char from_c, char to_c, Py_ssize_t maxcount) argument
1759 replace_substring_in_place(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1810 replace_single_character(PyByteArrayObject *self, char from_c, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1877 replace_substring(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1949 replace(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
2027 bytearray_replace(PyByteArrayObject *self, PyObject *args) argument
2061 bytearray_split(PyByteArrayObject *self, PyObject *args) argument
2097 bytearray_partition(PyByteArrayObject *self, PyObject *sep_obj) argument
2125 bytearray_rpartition(PyByteArrayObject *self, PyObject *sep_obj) argument
2154 bytearray_rsplit(PyByteArrayObject *self, PyObject *args) argument
2187 bytearray_reverse(PyByteArrayObject *self, PyObject *unused) argument
2209 bytearray_insert(PyByteArrayObject *self, PyObject *args) argument
2246 bytearray_append(PyByteArrayObject *self, PyObject *arg) argument
2272 bytearray_extend(PyByteArrayObject *self, PyObject *arg) argument
2346 bytearray_pop(PyByteArrayObject *self, PyObject *args) argument
2381 bytearray_remove(PyByteArrayObject *self, PyObject *arg) argument
2435 bytearray_strip(PyByteArrayObject *self, PyObject *args) argument
2471 bytearray_lstrip(PyByteArrayObject *self, PyObject *args) argument
2504 bytearray_rstrip(PyByteArrayObject *self, PyObject *args) argument
2542 bytearray_decode(PyObject *self, PyObject *args, PyObject *kwargs) argument
2567 bytearray_alloc(PyByteArrayObject *self) argument
2578 bytearray_join(PyByteArrayObject *self, PyObject *it) argument
2655 bytearray_splitlines(PyObject *self, PyObject *args) argument
2733 bytearray_reduce(PyByteArrayObject *self) argument
2765 bytearray_sizeof(PyByteArrayObject *self) argument
[all...]
H A Dclassobject.c685 /* If Py_TRACE_REFS, _Py_NewReference re-added self to the
1389 generic_unary_op(PyInstanceObject *self, PyObject *methodname) argument
1393 if ((func = instance_getattr(self, methodname)) == NULL)
1480 /* prevent recursion if __coerce__ returns self as the first
1577 static PyObject *funcname(PyInstanceObject *self) { \
1581 return generic_unary_op(self, o); \
1586 static PyObject *funcname(PyInstanceObject *self) { \
1590 if (PyObject_HasAttr((PyObject*)self, o)) \
1591 return generic_unary_op(self, o); \
1593 return funcname_fb(self); \
1758 instance_nonzero(PyInstanceObject *self) argument
1808 instance_index(PyInstanceObject *self) argument
1836 instance_int(PyInstanceObject *self) argument
2034 instance_getiter(PyInstanceObject *self) argument
2077 instance_iternext(PyInstanceObject *self) argument
2229 PyMethod_New(PyObject *func, PyObject *self, PyObject *klass) argument
2333 PyObject *self; local
2395 PyObject *self = a->im_self; local
2527 PyObject *self = PyMethod_GET_SELF(func); local
[all...]
H A Ddictobject.c1402 dict_update_common(PyObject *self, PyObject *args, PyObject *kwds, char *methname) argument
1412 result = PyDict_Merge(self, arg, 1);
1414 result = PyDict_MergeFromSeq2(self, arg, 1);
1417 result = PyDict_Merge(self, kwds, 1);
1422 dict_update(PyObject *self, PyObject *args, PyObject *kwds) argument
1424 if (dict_update_common(self, args, kwds, "update") != -1)
2290 PyObject *self; local
2293 self = type->tp_alloc(type, 0);
2294 if (self != NULL) {
2295 PyDictObject *d = (PyDictObject *)self;
2317 dict_init(PyObject *self, PyObject *args, PyObject *kwds) argument
2791 all_contained_in(PyObject *self, PyObject *other) argument
2815 dictview_richcompare(PyObject *self, PyObject *other, int op) argument
2926 dictviews_sub(PyObject* self, PyObject *other) argument
2944 dictviews_and(PyObject* self, PyObject *other) argument
2962 dictviews_or(PyObject* self, PyObject *other) argument
2980 dictviews_xor(PyObject* self, PyObject *other) argument
[all...]
H A Dexceptions.c32 PyBaseExceptionObject *self; local
34 self = (PyBaseExceptionObject *)type->tp_alloc(type, 0);
35 if (!self)
38 self->message = self->dict = NULL;
40 self->args = PyTuple_New(0);
41 if (!self->args) {
42 Py_DECREF(self);
46 self->message = PyString_FromString("");
47 if (!self
56 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) argument
74 BaseException_clear(PyBaseExceptionObject *self) argument
83 BaseException_dealloc(PyBaseExceptionObject *self) argument
91 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) argument
100 BaseException_str(PyBaseExceptionObject *self) argument
121 BaseException_unicode(PyBaseExceptionObject *self) argument
157 BaseException_repr(PyBaseExceptionObject *self) argument
184 BaseException_reduce(PyBaseExceptionObject *self) argument
198 BaseException_setstate(PyObject *self, PyObject *state) argument
229 BaseException_getitem(PyBaseExceptionObject *self, Py_ssize_t index) argument
238 BaseException_getslice(PyBaseExceptionObject *self, Py_ssize_t start, Py_ssize_t stop) argument
261 BaseException_get_dict(PyBaseExceptionObject *self) argument
273 BaseException_set_dict(PyBaseExceptionObject *self, PyObject *val) argument
290 BaseException_get_args(PyBaseExceptionObject *self) argument
301 BaseException_set_args(PyBaseExceptionObject *self, PyObject *val) argument
316 BaseException_get_message(PyBaseExceptionObject *self) argument
343 BaseException_set_message(PyBaseExceptionObject *self, PyObject *val) argument
515 SystemExit_init(PySystemExitObject *self, PyObject *args, PyObject *kwds) argument
534 SystemExit_clear(PySystemExitObject *self) argument
541 SystemExit_dealloc(PySystemExitObject *self) argument
549 SystemExit_traverse(PySystemExitObject *self, visitproc visit, void *arg) argument
595 EnvironmentError_init(PyEnvironmentErrorObject *self, PyObject *args, PyObject *kwds) argument
637 EnvironmentError_clear(PyEnvironmentErrorObject *self) argument
646 EnvironmentError_dealloc(PyEnvironmentErrorObject *self) argument
654 EnvironmentError_traverse(PyEnvironmentErrorObject *self, visitproc visit, void *arg) argument
664 EnvironmentError_str(PyEnvironmentErrorObject *self) argument
767 EnvironmentError_reduce(PyEnvironmentErrorObject *self) argument
833 WindowsError_clear(PyWindowsErrorObject *self) argument
843 WindowsError_dealloc(PyWindowsErrorObject *self) argument
851 WindowsError_traverse(PyWindowsErrorObject *self, visitproc visit, void *arg) argument
861 WindowsError_init(PyWindowsErrorObject *self, PyObject *args, PyObject *kwds) argument
895 WindowsError_str(PyWindowsErrorObject *self) argument
1058 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) argument
1105 SyntaxError_clear(PySyntaxErrorObject *self) argument
1117 SyntaxError_dealloc(PySyntaxErrorObject *self) argument
1125 SyntaxError_traverse(PySyntaxErrorObject *self, visitproc visit, void *arg) argument
1157 SyntaxError_str(PySyntaxErrorObject *self) argument
1270 KeyError_str(PyBaseExceptionObject *self) argument
1561 UnicodeError_init(PyUnicodeErrorObject *self, PyObject *args, PyObject *kwds, PyTypeObject *objecttype) argument
1586 UnicodeError_clear(PyUnicodeErrorObject *self) argument
1595 UnicodeError_dealloc(PyUnicodeErrorObject *self) argument
1603 UnicodeError_traverse(PyUnicodeErrorObject *self, visitproc visit, void *arg) argument
1631 UnicodeEncodeError_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1640 UnicodeEncodeError_str(PyObject *self) argument
1716 UnicodeDecodeError_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1725 UnicodeDecodeError_str(PyObject *self) argument
1797 UnicodeTranslateError_init(PyUnicodeErrorObject *self, PyObject *args, PyObject *kwds) argument
1823 UnicodeTranslateError_str(PyObject *self) argument
[all...]
H A Dfileobject.c2019 "xreadlines() -> returns self.\n"
2045 "__enter__() -> self.");
2278 PyObject *self; local
2289 self = type->tp_alloc(type, 0);
2290 if (self != NULL) {
2294 ((PyFileObject *)self)->f_name = not_yet_string;
2296 ((PyFileObject *)self)->f_mode = not_yet_string;
2298 ((PyFileObject *)self)->f_encoding = Py_None;
2300 ((PyFileObject *)self)->f_errors = Py_None;
2301 ((PyFileObject *)self)
2308 file_init(PyObject *self, PyObject *args, PyObject *kwds) argument
[all...]
H A Dfloatobject.c1688 double self; local
1705 CONVERT_TO_DOUBLE(v, self);
1707 if (Py_IS_INFINITY(self)) {
1713 if (Py_IS_NAN(self)) {
1721 float_part = frexp(self, &exponent); /* self == float_part * 2**exponent exactly */
1728 /* self == float_part * 2**exponent exactly and float_part is integral.
1969 float__format__(PyObject *self, PyObject *args) argument
1976 return _PyFloat_FormatAdvanced(self,
1987 result = _PyFloat_FormatAdvanced(self,
[all...]
H A Dlistobject.c16 * Failure is impossible if newsize <= self.allocated on entry, although
21 * Note that self->ob_item may change, and even if newsize is less
25 list_resize(PyListObject *self, Py_ssize_t newsize) argument
29 Py_ssize_t allocated = self->allocated;
36 assert(self->ob_item != NULL || newsize == 0);
37 Py_SIZE(self) = newsize;
60 items = self->ob_item;
69 self->ob_item = items;
70 Py_SIZE(self) = newsize;
71 self
223 ins1(PyListObject *self, Py_ssize_t where, PyObject *v) argument
266 app1(PyListObject *self, PyObject *v) argument
722 list_inplace_repeat(PyListObject *self, Py_ssize_t n) argument
779 listinsert(PyListObject *self, PyObject *args) argument
791 listappend(PyListObject *self, PyObject *v) argument
799 listextend(PyListObject *self, PyObject *b) argument
908 _PyList_Extend(PyListObject *self, PyObject *b) argument
914 list_inplace_concat(PyListObject *self, PyObject *other) argument
927 listpop(PyListObject *self, PyObject *args) argument
2043 listsort(PyListObject *self, PyObject *args, PyObject *kwds) argument
2229 listreverse(PyListObject *self) argument
2239 PyListObject *self = (PyListObject *)v; local
2276 listindex(PyListObject *self, PyObject *args) argument
2321 listcount(PyListObject *self, PyObject *v) argument
2337 listremove(PyListObject *self, PyObject *v) argument
2439 list_init(PyListObject *self, PyObject *args, PyObject *kw) argument
2467 list_sizeof(PyListObject *self) argument
2544 list_subscript(PyListObject* self, PyObject* item) argument
2597 list_ass_subscript(PyListObject* self, PyObject* item, PyObject* value) argument
[all...]
H A Dobject.c1090 PyObject_HashNotImplemented(PyObject *self) argument
1093 self->ob_type->tp_name);
1309 _PyObject_NextNotImplemented(PyObject *self) argument
1313 Py_TYPE(self)->tp_name);
1662 recursion if some joker sets self.__call__ = self */
2274 _Py_GetObjects(PyObject *self, PyObject *args) argument
2287 while (op == self || op == args || op == res || op == t ||
H A Dsetobject.c778 frozenset_hash(PyObject *self) argument
780 PySetObject *so = (PySetObject *)self;
788 hash *= PySet_GET_SIZE(self) + 1;
1841 set_nocmp(PyObject *self, PyObject *other) argument
1991 set_init(PySetObject *self, PyObject *args, PyObject *kwds) argument
1995 if (!PyAnySet_Check(self))
1997 if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds))
1999 if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
2001 set_clear_internal(self);
2002 self
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dbltinmodule.c36 builtin___import__(PyObject *self, PyObject *args, PyObject *kwds) argument
69 builtin_abs(PyObject *self, PyObject *v) argument
80 builtin_all(PyObject *self, PyObject *v) argument
122 builtin_any(PyObject *self, PyObject *v) argument
164 builtin_apply(PyObject *self, PyObject *args) argument
213 builtin_bin(PyObject *self, PyObject *v) argument
225 builtin_callable(PyObject *self, PyObject *v) argument
241 builtin_filter(PyObject *self, PyObject *args) argument
356 builtin_format(PyObject *self, PyObject *args) argument
374 builtin_chr(PyObject *self, PyObjec argument
398 builtin_unichr(PyObject *self, PyObject *args) argument
416 builtin_cmp(PyObject *self, PyObject *args) argument
435 builtin_coerce(PyObject *self, PyObject *args) argument
461 builtin_compile(PyObject *self, PyObject *args, PyObject *kwds) argument
573 builtin_dir(PyObject *self, PyObject *args) argument
597 builtin_divmod(PyObject *self, PyObject *args) argument
613 builtin_eval(PyObject *self, PyObject *args) argument
704 builtin_execfile(PyObject *self, PyObject *args) argument
809 builtin_getattr(PyObject *self, PyObject *args) argument
849 builtin_globals(PyObject *self) argument
865 builtin_hasattr(PyObject *self, PyObject *args) argument
908 builtin_id(PyObject *self, PyObject *v) argument
921 builtin_map(PyObject *self, PyObject *args) argument
1085 builtin_next(PyObject *self, PyObject *args) argument
1126 builtin_setattr(PyObject *self, PyObject *args) argument
1148 builtin_delattr(PyObject *self, PyObject *args) argument
1169 builtin_hash(PyObject *self, PyObject *v) argument
1187 builtin_hex(PyObject *self, PyObject *v) argument
1218 builtin_input(PyObject *self, PyObject *args) argument
1254 builtin_intern(PyObject *self, PyObject *args) argument
1279 builtin_iter(PyObject *self, PyObject *args) argument
1305 builtin_len(PyObject *self, PyObject *v) argument
1322 builtin_locals(PyObject *self) argument
1427 builtin_min(PyObject *self, PyObject *args, PyObject *kwds) argument
1441 builtin_max(PyObject *self, PyObject *args, PyObject *kwds) argument
1455 builtin_oct(PyObject *self, PyObject *v) argument
1484 builtin_open(PyObject *self, PyObject *args, PyObject *kwds) argument
1497 builtin_ord(PyObject *self, PyObject* obj) argument
1544 builtin_pow(PyObject *self, PyObject *args) argument
1561 builtin_print(PyObject *self, PyObject *args, PyObject *kwds) argument
1787 handle_range_longs(PyObject *self, PyObject *args) argument
1944 builtin_range(PyObject *self, PyObject *args) argument
2009 builtin_raw_input(PyObject *self, PyObject *args) argument
2092 builtin_reduce(PyObject *self, PyObject *args) argument
2124 builtin_reload(PyObject *self, PyObject *v) argument
2140 builtin_repr(PyObject *self, PyObject *v) argument
2153 builtin_round(PyObject *self, PyObject *args, PyObject *kwds) argument
2205 builtin_sorted(PyObject *self, PyObject *args, PyObject *kwds) argument
2249 builtin_vars(PyObject *self, PyObject *args) argument
2285 builtin_sum(PyObject *self, PyObject *args) argument
2432 builtin_isinstance(PyObject *self, PyObject *args) argument
2457 builtin_issubclass(PyObject *self, PyObject *args) argument
2481 builtin_zip(PyObject *self, PyObject *args) argument
[all...]
H A Dimport.c321 imp_lock_held(PyObject *self, PyObject *noargs) argument
331 imp_acquire_lock(PyObject *self, PyObject *noargs) argument
341 imp_release_lock(PyObject *self, PyObject *noargs) argument
2793 imp_get_magic(PyObject *self, PyObject *noargs) argument
2806 imp_get_suffixes(PyObject *self, PyObject *noargs) argument
2864 imp_find_module(PyObject *self, PyObject *args) argument
2874 imp_init_builtin(PyObject *self, PyObject *args) argument
2894 imp_init_frozen(PyObject *self, PyObject *args) argument
2914 imp_get_frozen_object(PyObject *self, PyObject *args) argument
2924 imp_is_builtin(PyObject *self, PyObjec argument
2933 imp_is_frozen(PyObject *self, PyObject *args) argument
2964 imp_load_compiled(PyObject *self, PyObject *args) argument
2986 imp_load_dynamic(PyObject *self, PyObject *args) argument
3008 imp_load_source(PyObject *self, PyObject *args) argument
3028 imp_load_module(PyObject *self, PyObject *args) argument
3069 imp_load_package(PyObject *self, PyObject *args) argument
3079 imp_new_module(PyObject *self, PyObject *args) argument
3088 imp_reload(PyObject *self, PyObject *v) argument
3190 NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) argument
3255 NullImporter_find_module(NullImporter *self, PyObject *args) argument
[all...]
H A Dsysmodule.c87 sys_displayhook(PyObject *self, PyObject *o) argument
133 sys_excepthook(PyObject* self, PyObject* args) argument
150 sys_exc_info(PyObject *self, PyObject *noargs) argument
170 sys_exc_clear(PyObject *self, PyObject *noargs) argument
207 sys_exit(PyObject *self, PyObject *args) argument
230 sys_getdefaultencoding(PyObject *self) argument
243 sys_setdefaultencoding(PyObject *self, PyObject *args) argument
261 sys_getfilesystemencoding(PyObject *self) argument
336 profile_trampoline(PyObject *self, PyFrameObject *frame, argument
344 result = call_trampoline(tstate, self, fram
354 trace_trampoline(PyObject *self, PyFrameObject *frame, int what, PyObject *arg) argument
387 sys_settrace(PyObject *self, PyObject *args) argument
407 sys_gettrace(PyObject *self, PyObject *args) argument
426 sys_setprofile(PyObject *self, PyObject *args) argument
446 sys_getprofile(PyObject *self, PyObject *args) argument
465 sys_setcheckinterval(PyObject *self, PyObject *args) argument
481 sys_getcheckinterval(PyObject *self, PyObject *args) argument
492 sys_settscdump(PyObject *self, PyObject *args) argument
518 sys_setrecursionlimit(PyObject *self, PyObject *args) argument
543 sys_getrecursionlimit(PyObject *self) argument
595 sys_getwindowsversion(PyObject *self) argument
625 sys_setdlopenflags(PyObject *self, PyObject *args) argument
651 sys_getdlopenflags(PyObject *self, PyObject *args) argument
672 sys_mdebug(PyObject *self, PyObject *args) argument
684 sys_getsizeof(PyObject *self, PyObject *args, PyObject *kwds) argument
751 sys_getrefcount(PyObject *self, PyObject *arg) argument
758 sys_gettotalrefcount(PyObject *self) argument
774 sys_getcounts(PyObject *self) argument
795 sys_getframe(PyObject *self, PyObject *args) argument
826 sys_current_frames(PyObject *self, PyObject *noargs) argument
840 sys_call_tracing(PyObject *self, PyObject *args) argument
890 sys_clear_type_cache(PyObject* self, PyObject* args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
H A D_sre.c1650 sre_codesize(PyObject* self, PyObject *unused) argument
1656 sre_getlower(PyObject* self, PyObject* args) argument
1868 pattern_dealloc(PatternObject* self) argument
1870 if (self->weakreflist != NULL)
1871 PyObject_ClearWeakRefs((PyObject *) self);
1872 Py_XDECREF(self->pattern);
1873 Py_XDECREF(self->groupindex);
1874 Py_XDECREF(self->indexgroup);
1875 PyObject_DEL(self);
1879 pattern_match(PatternObject* self, PyObjec argument
1918 pattern_search(PatternObject* self, PyObject* args, PyObject* kw) argument
2051 pattern_findall(PatternObject* self, PyObject* args, PyObject* kw) argument
2178 pattern_split(PatternObject* self, PyObject* args, PyObject* kw) argument
2291 pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string, Py_ssize_t count, Py_ssize_t subn) argument
2477 pattern_sub(PatternObject* self, PyObject* args, PyObject* kw) argument
2491 pattern_subn(PatternObject* self, PyObject* args, PyObject* kw) argument
2505 pattern_copy(PatternObject* self, PyObject *unused) argument
2533 pattern_deepcopy(PatternObject* self, PyObject* memo) argument
2661 PatternObject* self; local
3183 _validate(PatternObject *self) argument
3199 match_dealloc(MatchObject* self) argument
3208 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) argument
3233 match_getindex(MatchObject* self, PyObject* index) argument
3256 match_getslice(MatchObject* self, PyObject* index, PyObject* def) argument
3262 match_expand(MatchObject* self, PyObject* ptemplate) argument
3272 match_group(MatchObject* self, PyObject* args) argument
3307 match_groups(MatchObject* self, PyObject* args, PyObject* kw) argument
3335 match_groupdict(MatchObject* self, PyObject* args, PyObject* kw) argument
3383 match_start(MatchObject* self, PyObject* args) argument
3406 match_end(MatchObject* self, PyObject* args) argument
3456 match_span(MatchObject* self, PyObject* args) argument
3479 match_regs(MatchObject* self) argument
3505 match_copy(MatchObject* self, PyObject *unused) argument
3536 match_deepcopy(MatchObject* self, PyObject* memo) argument
3572 match_lastindex_get(MatchObject *self) argument
3581 match_lastgroup_get(MatchObject *self) argument
3596 match_regs_get(MatchObject *self) argument
3725 scanner_dealloc(ScannerObject* self) argument
3733 scanner_match(ScannerObject* self, PyObject *unused) argument
3766 scanner_search(ScannerObject* self, PyObject *unused) argument
3846 ScannerObject* self; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c4091 long__format__(PyObject *self, PyObject *args) argument
4098 return _PyLong_FormatAdvanced(self,
4109 result = _PyLong_FormatAdvanced(self,
4187 Number of bits necessary to represent self in binary.\n\
4203 "Returns self, the complex conjugate of any long."},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Ditertoolsmodule.c644 tee(PyObject *self, PyObject *args) argument

Completed in 557 milliseconds

12345678910