Searched defs:self (Results 151 - 175 of 228) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
H A Dstring_format.h291 FieldNameIterator_init(FieldNameIterator *self, STRINGLIB_CHAR *ptr, argument
294 SubString_init(&self->str, ptr, len);
295 self->ptr = self->str.ptr;
300 _FieldNameIterator_attr(FieldNameIterator *self, SubString *name) argument
304 name->ptr = self->ptr;
307 while (self->ptr < self->str.end) {
308 switch (c = *self->ptr++) {
312 self
325 _FieldNameIterator_item(FieldNameIterator *self, SubString *name) argument
357 FieldNameIterator_next(FieldNameIterator *self, int *is_attribute, Py_ssize_t *name_idx, SubString *name) argument
717 MarkupIterator_init(MarkupIterator *self, STRINGLIB_CHAR *ptr, Py_ssize_t len) argument
726 MarkupIterator_next(MarkupIterator *self, SubString *literal, int *field_present, SubString *field_name, SubString *format_spec, STRINGLIB_CHAR *conversion, int *format_spec_needs_expanding) argument
1030 do_string_format(PyObject *self, PyObject *args, PyObject *kwargs) argument
1188 formatter_parser(STRINGLIB_OBJECT *self) argument
1323 formatter_field_name_split(STRINGLIB_OBJECT *self) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dtupleobject.c510 tupleindex(PyTupleObject *self, PyObject *args) argument
512 Py_ssize_t i, start=0, stop=Py_SIZE(self);
520 start += Py_SIZE(self);
525 stop += Py_SIZE(self);
529 for (i = start; i < stop && i < Py_SIZE(self); i++) {
530 int cmp = PyObject_RichCompareBool(self->ob_item[i], v, Py_EQ);
541 tuplecount(PyTupleObject *self, PyObject *v) argument
546 for (i = 0; i < Py_SIZE(self); i++) {
547 int cmp = PyObject_RichCompareBool(self->ob_item[i], v, Py_EQ);
700 tuplesubscript(PyTupleObject* self, PyObjec argument
763 tuple_sizeof(PyTupleObject *self) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dmarshal.c1254 marshal_dump(PyObject *self, PyObject *args) argument
1299 marshal_load(PyObject *self, PyObject *f) argument
1330 marshal_dumps(PyObject *self, PyObject *args) argument
1351 marshal_loads(PyObject *self, PyObject *args) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
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/PyMod-2.7.2/Python/
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...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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_sizeof(buffered *self, void *unused) argument
401 buffered_traverse(buffered *self, visitproc visit, void *arg) argument
409 buffered_clear(buffered *self) argument
428 buffered_simple_flush(buffered *self, PyObject *args) argument
435 buffered_closed(buffered *self) argument
449 buffered_closed_get(buffered *self, void *context) argument
456 buffered_close(buffered *self, PyObject *args) argument
498 buffered_detach(buffered *self, PyObject *args) argument
516 buffered_seekable(buffered *self, PyObject *args) argument
523 buffered_readable(buffered *self, PyObject *args) argument
530 buffered_writable(buffered *self, PyObject *args) argument
537 buffered_name_get(buffered *self, void *context) argument
544 buffered_mode_get(buffered *self, void *context) argument
553 buffered_fileno(buffered *self, PyObject *args) argument
560 buffered_isatty(buffered *self, PyObject *args) argument
622 _buffered_raw_tell(buffered *self) argument
643 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) argument
676 _buffered_init(buffered *self) argument
752 buffered_flush_and_rewind_unlocked(buffered *self) argument
774 buffered_flush(buffered *self, PyObject *args) argument
790 buffered_peek(buffered *self, PyObject *args) argument
817 buffered_read(buffered *self, PyObject *args) argument
855 buffered_read1(buffered *self, PyObject *args) argument
922 buffered_readinto(buffered *self, PyObject *args) argument
931 _buffered_readline(buffered *self, Py_ssize_t limit) argument
1042 buffered_readline(buffered *self, PyObject *args) argument
1054 buffered_tell(buffered *self, PyObject *args) argument
1068 buffered_seek(buffered *self, PyObject *args) argument
1142 buffered_truncate(buffered *self, PyObject *args) argument
1174 buffered_iternext(buffered *self) argument
1212 buffered_repr(buffered *self) argument
1244 _bufferedreader_reset_buf(buffered *self) argument
1250 bufferedreader_init(buffered *self, PyObject *args, PyObject *kwds) argument
1286 _bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len) argument
1327 _bufferedreader_fill_buffer(buffered *self) argument
1344 _bufferedreader_read_all(buffered *self) argument
1417 _bufferedreader_read_fast(buffered *self, Py_ssize_t n) argument
1436 _bufferedreader_read_generic(buffered *self, Py_ssize_t n) argument
1535 _bufferedreader_peek_unlocked(buffered *self, Py_ssize_t n) argument
1661 _bufferedwriter_reset_buf(buffered *self) argument
1668 bufferedwriter_init(buffered *self, PyObject *args, PyObject *kwds) argument
1710 _bufferedwriter_raw_write(buffered *self, char *start, Py_ssize_t len) argument
1759 _bufferedwriter_flush_unlocked(buffered *self) argument
1808 bufferedwriter_write(buffered *self, PyObject *args) argument
2062 bufferedrwpair_init(rwpair *self, PyObject *args, PyObject *kwds) argument
2097 bufferedrwpair_traverse(rwpair *self, visitproc visit, void *arg) argument
2104 bufferedrwpair_clear(rwpair *self) argument
2113 bufferedrwpair_dealloc(rwpair *self) argument
2125 _forward_call(buffered *self, const char *name, PyObject *args) argument
2146 bufferedrwpair_read(rwpair *self, PyObject *args) argument
2152 bufferedrwpair_peek(rwpair *self, PyObject *args) argument
2158 bufferedrwpair_read1(rwpair *self, PyObject *args) argument
2164 bufferedrwpair_readinto(rwpair *self, PyObject *args) argument
2170 bufferedrwpair_write(rwpair *self, PyObject *args) argument
2176 bufferedrwpair_flush(rwpair *self, PyObject *args) argument
2182 bufferedrwpair_readable(rwpair *self, PyObject *args) argument
2188 bufferedrwpair_writable(rwpair *self, PyObject *args) argument
2194 bufferedrwpair_close(rwpair *self, PyObject *args) argument
2218 bufferedrwpair_isatty(rwpair *self, PyObject *args) argument
2232 bufferedrwpair_closed_get(rwpair *self, void *context) argument
2322 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
265 nldecoder_object *self = (nldecoder_object *) _self; local
472 incrementalnewlinedecoder_decode(nldecoder_object *self, PyObject *args, PyObject *kwds) argument
486 incrementalnewlinedecoder_getstate(nldecoder_object *self, PyObject *args) argument
514 incrementalnewlinedecoder_setstate(nldecoder_object *self, PyObject *state) argument
533 incrementalnewlinedecoder_reset(nldecoder_object *self, PyObject *args) argument
544 incrementalnewlinedecoder_newlines_get(nldecoder_object *self, void *context) argument
715 ascii_encode(textio *self, PyObject *text) argument
723 utf16be_encode(textio *self, PyObject *text) argument
731 utf16le_encode(textio *self, PyObject *text) argument
739 utf16_encode(textio *self, PyObject *text) argument
755 utf32be_encode(textio *self, PyObject *text) argument
763 utf32le_encode(textio *self, PyObject *text) argument
771 utf32_encode(textio *self, PyObject *text) argument
787 utf8_encode(textio *self, PyObject *text) argument
795 latin1_encode(textio *self, PyObject *text) argument
824 textiowrapper_init(textio *self, PyObject *args, PyObject *kwds) argument
1066 _textiowrapper_clear(textio *self) argument
1085 textiowrapper_dealloc(textio *self) argument
1097 textiowrapper_traverse(textio *self, visitproc visit, void *arg) argument
1115 textiowrapper_clear(textio *self) argument
1181 textiowrapper_detach(textio *self) argument
1210 _textiowrapper_writeflush(textio *self) argument
1239 textiowrapper_write(textio *self, PyObject *args) argument
1338 textiowrapper_set_decoded_chars(textio *self, PyObject *chars) argument
1346 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n) argument
1381 textiowrapper_read_chunk(textio *self) argument
1485 textiowrapper_read(textio *self, PyObject *args) argument
1688 _textiowrapper_readline(textio *self, Py_ssize_t limit) argument
1848 textiowrapper_readline(textio *self, PyObject *args) argument
1959 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie) argument
1980 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie) argument
2000 textiowrapper_seek(textio *self, PyObject *args) argument
2183 textiowrapper_tell(textio *self, PyObject *args) argument
2349 textiowrapper_truncate(textio *self, PyObject *args) argument
2368 textiowrapper_repr(textio *self) argument
2407 textiowrapper_fileno(textio *self, PyObject *args) argument
2414 textiowrapper_seekable(textio *self, PyObject *args) argument
2421 textiowrapper_readable(textio *self, PyObject *args) argument
2428 textiowrapper_writable(textio *self, PyObject *args) argument
2435 textiowrapper_isatty(textio *self, PyObject *args) argument
2442 textiowrapper_flush(textio *self, PyObject *args) argument
2453 textiowrapper_close(textio *self, PyObject *args) argument
2488 textiowrapper_iternext(textio *self) argument
2526 textiowrapper_name_get(textio *self, void *context) argument
2533 textiowrapper_closed_get(textio *self, void *context) argument
2540 textiowrapper_newlines_get(textio *self, void *context) argument
2560 textiowrapper_errors_get(textio *self, void *context) argument
2568 textiowrapper_chunk_size_get(textio *self, void *context) argument
2575 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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);
763 py_scanstring(PyObject* self UNUSED, PyObject *args)
799 py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr)
818 scanner_dealloc(PyObject *self) argument
826 scanner_traverse(PyObject *self, visitproc visit, void *arg) argument
842 scanner_clear(PyObject *self) argument
1640 scanner_call(PyObject *self, PyObject *args, PyObject *kwds) argument
1687 scanner_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1821 encoder_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1861 encoder_call(PyObject *self, PyObject *args, PyObject *kwds) argument
2291 encoder_dealloc(PyObject *self) argument
2299 encoder_traverse(PyObject *self, visitproc visit, void *arg) argument
2316 encoder_clear(PyObject *self) 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
1455 s_unpack(PyObject *self, PyObject *inputstr) argument
1503 s_unpack_from(PyObject *self, PyObject *args, PyObject *kwds) argument
1618 s_pack(PyObject *self, PyObject *args) argument
1657 s_pack_into(PyObject *self, PyObject *args) argument
1720 s_get_format(PyStructObject *self, void *unused) argument
1727 s_get_size(PyStructObject *self, void *unused) argument
1736 s_sizeof(PyStructObject *self, void *unused) argument
1847 clearcache(PyObject *self) argument
1857 calcsize(PyObject *self, PyObject *fmt) argument
1872 pack(PyObject *self, PyObject *args) argument
1902 pack_into(PyObject *self, PyObject *args) argument
1932 unpack(PyObject *self, PyObject *args) argument
1952 unpack_from(PyObject *self, PyObject *args, PyObject *kwds) 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
1536 array_sizeof(arrayobject *self, PyObject *unused) argument
1660 array_subscr(arrayobject* self, PyObject* item) argument
1719 array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value) argument
1873 array_buffer_getreadbuf(arrayobject *self, Py_ssize_t index, const void **ptr) argument
1887 array_buffer_getwritebuf(arrayobject *self, Py_ssize_t index, const void **ptr) argument
1901 array_buffer_getsegcount(arrayobject *self, Py_ssize_t *lenp) argument
2004 arrayobject *self = (arrayobject *)a; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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
752 bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) argument
920 bytearray_repr(PyByteArrayObject *self) argument
1018 bytearray_richcompare(PyObject *self, PyObject *other, int op) argument
1095 bytearray_dealloc(PyByteArrayObject *self) argument
1183 bytearray_find(PyByteArrayObject *self, PyObject *args) argument
1199 bytearray_count(PyByteArrayObject *self, PyObject *args) argument
1229 bytearray_index(PyByteArrayObject *self, PyObject *args) argument
1253 bytearray_rfind(PyByteArrayObject *self, PyObject *args) argument
1268 bytearray_rindex(PyByteArrayObject *self, PyObject *args) argument
1283 bytearray_contains(PyObject *self, PyObject *arg) argument
1311 _bytearray_tailmatch(PyByteArrayObject *self, PyObject *substr, Py_ssize_t start, Py_ssize_t end, int direction) argument
1358 bytearray_startswith(PyByteArrayObject *self, PyObject *args) argument
1397 bytearray_endswith(PyByteArrayObject *self, PyObject *args) argument
1437 bytearray_translate(PyByteArrayObject *self, PyObject *args) argument
1535 return_self(PyByteArrayObject *self) argument
1563 replace_interleave(PyByteArrayObject *self, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1623 replace_delete_single_character(PyByteArrayObject *self, char from_c, Py_ssize_t maxcount) argument
1666 replace_delete_substring(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, Py_ssize_t maxcount) argument
1718 replace_single_character_in_place(PyByteArrayObject *self, char from_c, char to_c, Py_ssize_t maxcount) argument
1763 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
1814 replace_single_character(PyByteArrayObject *self, char from_c, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1881 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
1953 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
2031 bytearray_replace(PyByteArrayObject *self, PyObject *args) argument
2065 bytearray_split(PyByteArrayObject *self, PyObject *args) argument
2101 bytearray_partition(PyByteArrayObject *self, PyObject *sep_obj) argument
2129 bytearray_rpartition(PyByteArrayObject *self, PyObject *sep_obj) argument
2158 bytearray_rsplit(PyByteArrayObject *self, PyObject *args) argument
2191 bytearray_reverse(PyByteArrayObject *self, PyObject *unused) argument
2213 bytearray_insert(PyByteArrayObject *self, PyObject *args) argument
2250 bytearray_append(PyByteArrayObject *self, PyObject *arg) argument
2276 bytearray_extend(PyByteArrayObject *self, PyObject *arg) argument
2354 bytearray_pop(PyByteArrayObject *self, PyObject *args) argument
2389 bytearray_remove(PyByteArrayObject *self, PyObject *arg) argument
2443 bytearray_strip(PyByteArrayObject *self, PyObject *args) argument
2479 bytearray_lstrip(PyByteArrayObject *self, PyObject *args) argument
2512 bytearray_rstrip(PyByteArrayObject *self, PyObject *args) argument
2550 bytearray_decode(PyObject *self, PyObject *args, PyObject *kwargs) argument
2575 bytearray_alloc(PyByteArrayObject *self) argument
2586 bytearray_join(PyByteArrayObject *self, PyObject *it) argument
2663 bytearray_splitlines(PyObject *self, PyObject *args) argument
2741 bytearray_reduce(PyByteArrayObject *self) argument
2773 bytearray_sizeof(PyByteArrayObject *self) argument
[all...]
H A Dclassobject.c695 /* If Py_TRACE_REFS, _Py_NewReference re-added self to the
1413 generic_unary_op(PyInstanceObject *self, PyObject *methodname) argument
1417 if ((func = instance_getattr(self, methodname)) == NULL)
1504 /* prevent recursion if __coerce__ returns self as the first
1601 static PyObject *funcname(PyInstanceObject *self) { \
1605 return generic_unary_op(self, o); \
1610 static PyObject *funcname(PyInstanceObject *self) { \
1614 if (PyObject_HasAttr((PyObject*)self, o)) \
1615 return generic_unary_op(self, o); \
1617 return funcname_fb(self); \
1782 instance_nonzero(PyInstanceObject *self) argument
1832 instance_index(PyInstanceObject *self) argument
1860 instance_int(PyInstanceObject *self) argument
2058 instance_getiter(PyInstanceObject *self) argument
2101 instance_iternext(PyInstanceObject *self) argument
2253 PyMethod_New(PyObject *func, PyObject *self, PyObject *klass) argument
2357 PyObject *self; local
2419 PyObject *self = a->im_self; local
2551 PyObject *self = PyMethod_GET_SELF(func); local
[all...]
H A Ddictobject.c1436 dict_update_common(PyObject *self, PyObject *args, PyObject *kwds, char *methname) argument
1446 result = PyDict_Merge(self, arg, 1);
1448 result = PyDict_MergeFromSeq2(self, arg, 1);
1451 result = PyDict_Merge(self, kwds, 1);
1456 dict_update(PyObject *self, PyObject *args, PyObject *kwds) argument
1458 if (dict_update_common(self, args, kwds, "update") != -1)
2324 PyObject *self; local
2327 self = type->tp_alloc(type, 0);
2328 if (self != NULL) {
2329 PyDictObject *d = (PyDictObject *)self;
2351 dict_init(PyObject *self, PyObject *args, PyObject *kwds) argument
2825 all_contained_in(PyObject *self, PyObject *other) argument
2849 dictview_richcompare(PyObject *self, PyObject *other, int op) argument
2964 dictviews_sub(PyObject* self, PyObject *other) argument
2982 dictviews_and(PyObject* self, PyObject *other) argument
3000 dictviews_or(PyObject* self, PyObject *other) argument
3018 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
317 BaseException_get_message(PyBaseExceptionObject *self) argument
344 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
834 WindowsError_clear(PyWindowsErrorObject *self) argument
844 WindowsError_dealloc(PyWindowsErrorObject *self) argument
852 WindowsError_traverse(PyWindowsErrorObject *self, visitproc visit, void *arg) argument
862 WindowsError_init(PyWindowsErrorObject *self, PyObject *args, PyObject *kwds) argument
896 WindowsError_str(PyWindowsErrorObject *self) argument
1059 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) argument
1107 SyntaxError_clear(PySyntaxErrorObject *self) argument
1119 SyntaxError_dealloc(PySyntaxErrorObject *self) argument
1127 SyntaxError_traverse(PySyntaxErrorObject *self, visitproc visit, void *arg) argument
1159 SyntaxError_str(PySyntaxErrorObject *self) argument
1274 KeyError_str(PyBaseExceptionObject *self) argument
1565 UnicodeError_init(PyUnicodeErrorObject *self, PyObject *args, PyObject *kwds, PyTypeObject *objecttype) argument
1590 UnicodeError_clear(PyUnicodeErrorObject *self) argument
1599 UnicodeError_dealloc(PyUnicodeErrorObject *self) argument
1607 UnicodeError_traverse(PyUnicodeErrorObject *self, visitproc visit, void *arg) argument
1635 UnicodeEncodeError_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1644 UnicodeEncodeError_str(PyObject *self) argument
1724 UnicodeDecodeError_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1733 UnicodeDecodeError_str(PyObject *self) argument
1809 UnicodeTranslateError_init(PyUnicodeErrorObject *self, PyObject *args, PyObject *kwds) argument
1835 UnicodeTranslateError_str(PyObject *self) argument
[all...]
H A Dfileobject.c2087 "xreadlines() -> returns self.\n"
2113 "__enter__() -> self.");
2345 PyObject *self; local
2356 self = type->tp_alloc(type, 0);
2357 if (self != NULL) {
2361 ((PyFileObject *)self)->f_name = not_yet_string;
2363 ((PyFileObject *)self)->f_mode = not_yet_string;
2365 ((PyFileObject *)self)->f_encoding = Py_None;
2367 ((PyFileObject *)self)->f_errors = Py_None;
2368 ((PyFileObject *)self)
2375 file_init(PyObject *self, PyObject *args, PyObject *kwds) argument
[all...]
H A Dfloatobject.c1703 double self; local
1720 CONVERT_TO_DOUBLE(v, self);
1722 if (Py_IS_INFINITY(self)) {
1728 if (Py_IS_NAN(self)) {
1736 float_part = frexp(self, &exponent); /* self == float_part * 2**exponent exactly */
1743 /* self == float_part * 2**exponent exactly and float_part is integral.
1984 float__format__(PyObject *self, PyObject *args) argument
1991 return _PyFloat_FormatAdvanced(self,
2002 result = _PyFloat_FormatAdvanced(self,
[all...]
H A Dintobject.c1260 int__format__(PyObject *self, PyObject *args) argument
1267 return _PyInt_FormatAdvanced(self,
1278 result = _PyInt_FormatAdvanced(self,
1306 Number of bits necessary to represent self in binary.\n\
1322 "Returns self, the complex conjugate of any int."},
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
2044 listsort(PyListObject *self, PyObject *args, PyObject *kwds) argument
2230 listreverse(PyListObject *self) argument
2240 PyListObject *self = (PyListObject *)v; local
2277 listindex(PyListObject *self, PyObject *args) argument
2322 listcount(PyListObject *self, PyObject *v) argument
2338 listremove(PyListObject *self, PyObject *v) argument
2440 list_init(PyListObject *self, PyObject *args, PyObject *kw) argument
2468 list_sizeof(PyListObject *self) argument
2545 list_subscript(PyListObject* self, PyObject* item) argument
2598 list_ass_subscript(PyListObject* self, PyObject* item, PyObject* value) argument
[all...]
H A Dobject.c1095 PyObject_HashNotImplemented(PyObject *self) argument
1098 self->ob_type->tp_name);
1316 _PyObject_NextNotImplemented(PyObject *self) argument
1320 Py_TYPE(self)->tp_name);
1669 recursion if some joker sets self.__call__ = self */
2295 _Py_GetObjects(PyObject *self, PyObject *args) argument
2308 while (op == self || op == args || op == res || op == t ||
H A Dsetobject.c777 frozenset_hash(PyObject *self) argument
779 PySetObject *so = (PySetObject *)self;
787 hash *= PySet_GET_SIZE(self) + 1;
1836 set_nocmp(PyObject *self, PyObject *other) argument
1987 set_init(PySetObject *self, PyObject *args, PyObject *kwds) argument
1991 if (!PyAnySet_Check(self))
1993 if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds))
1995 if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
1997 set_clear_internal(self);
1998 self
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
H A Dselectmodule.c195 select_select(PyObject *self, PyObject *args) argument
341 update_ufd_array(pollObject *self) argument
345 struct pollfd *old_ufds = self->ufds;
347 self->ufd_len = PyDict_Size(self->dict);
348 PyMem_RESIZE(self->ufds, struct pollfd, self->ufd_len);
349 if (self->ufds == NULL) {
350 self->ufds = old_ufds;
356 while (PyDict_Next(self
394 poll_register(pollObject *self, PyObject *args) argument
437 poll_modify(pollObject *self, PyObject *args) argument
482 poll_unregister(pollObject *self, PyObject *o) argument
516 poll_poll(pollObject *self, PyObject *args) argument
633 pollObject *self; local
651 poll_dealloc(pollObject *self) argument
660 poll_getattr(pollObject *self, char *name) argument
690 select_poll(PyObject *self, PyObject *unused) argument
755 pyepoll_internal_close(pyEpoll_Object *self) argument
772 pyEpoll_Object *self; local
821 pyepoll_dealloc(pyEpoll_Object *self) argument
828 pyepoll_close(pyEpoll_Object *self) argument
845 pyepoll_get_closed(pyEpoll_Object *self) argument
854 pyepoll_fileno(pyEpoll_Object *self) argument
932 pyepoll_register(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
957 pyepoll_modify(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
978 pyepoll_unregister(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
997 pyepoll_poll(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
1295 kqueue_event_init(kqueue_event_Object *self, PyObject *args, PyObject *kwds) argument
1426 kqueue_queue_internal_close(kqueue_queue_Object *self) argument
1443 kqueue_queue_Object *self; local
1481 kqueue_queue_dealloc(kqueue_queue_Object *self) argument
1488 kqueue_queue_close(kqueue_queue_Object *self) argument
1505 kqueue_queue_get_closed(kqueue_queue_Object *self) argument
1514 kqueue_queue_fileno(kqueue_queue_Object *self) argument
1543 kqueue_queue_control(kqueue_queue_Object *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dbltinmodule.c36 builtin___import__(PyObject *self, PyObject *args, PyObject *kwds) argument
73 builtin_abs(PyObject *self, PyObject *v) argument
84 builtin_all(PyObject *self, PyObject *v) argument
127 builtin_any(PyObject *self, PyObject *v) argument
170 builtin_apply(PyObject *self, PyObject *args) argument
219 builtin_bin(PyObject *self, PyObject *v) argument
231 builtin_callable(PyObject *self, PyObject *v) argument
244 builtin_filter(PyObject *self, PyObject *args) argument
362 builtin_format(PyObject *self, PyObject *args) argument
380 builtin_chr(PyObject *self, PyObjec argument
404 builtin_unichr(PyObject *self, PyObject *args) argument
422 builtin_cmp(PyObject *self, PyObject *args) argument
441 builtin_coerce(PyObject *self, PyObject *args) argument
467 builtin_compile(PyObject *self, PyObject *args, PyObject *kwds) argument
581 builtin_dir(PyObject *self, PyObject *args) argument
605 builtin_divmod(PyObject *self, PyObject *args) argument
621 builtin_eval(PyObject *self, PyObject *args) argument
712 builtin_execfile(PyObject *self, PyObject *args) argument
817 builtin_getattr(PyObject *self, PyObject *args) argument
857 builtin_globals(PyObject *self) argument
873 builtin_hasattr(PyObject *self, PyObject *args) argument
916 builtin_id(PyObject *self, PyObject *v) argument
929 builtin_map(PyObject *self, PyObject *args) argument
1093 builtin_next(PyObject *self, PyObject *args) argument
1134 builtin_setattr(PyObject *self, PyObject *args) argument
1156 builtin_delattr(PyObject *self, PyObject *args) argument
1177 builtin_hash(PyObject *self, PyObject *v) argument
1195 builtin_hex(PyObject *self, PyObject *v) argument
1226 builtin_input(PyObject *self, PyObject *args) argument
1262 builtin_intern(PyObject *self, PyObject *args) argument
1287 builtin_iter(PyObject *self, PyObject *args) argument
1313 builtin_len(PyObject *self, PyObject *v) argument
1330 builtin_locals(PyObject *self) argument
1435 builtin_min(PyObject *self, PyObject *args, PyObject *kwds) argument
1449 builtin_max(PyObject *self, PyObject *args, PyObject *kwds) argument
1463 builtin_oct(PyObject *self, PyObject *v) argument
1492 builtin_open(PyObject *self, PyObject *args, PyObject *kwds) argument
1505 builtin_ord(PyObject *self, PyObject* obj) argument
1552 builtin_pow(PyObject *self, PyObject *args) argument
1569 builtin_print(PyObject *self, PyObject *args, PyObject *kwds) argument
1797 handle_range_longs(PyObject *self, PyObject *args) argument
1954 builtin_range(PyObject *self, PyObject *args) argument
2020 builtin_raw_input(PyObject *self, PyObject *args) argument
2103 builtin_reduce(PyObject *self, PyObject *args) argument
2135 builtin_reload(PyObject *self, PyObject *v) argument
2151 builtin_repr(PyObject *self, PyObject *v) argument
2164 builtin_round(PyObject *self, PyObject *args, PyObject *kwds) argument
2216 builtin_sorted(PyObject *self, PyObject *args, PyObject *kwds) argument
2260 builtin_vars(PyObject *self, PyObject *args) argument
2296 builtin_sum(PyObject *self, PyObject *args) argument
2443 builtin_isinstance(PyObject *self, PyObject *args) argument
2468 builtin_issubclass(PyObject *self, PyObject *args) argument
2492 builtin_zip(PyObject *self, PyObject *args) argument
[all...]
H A Dimport.c353 imp_lock_held(PyObject *self, PyObject *noargs) argument
363 imp_acquire_lock(PyObject *self, PyObject *noargs) argument
373 imp_release_lock(PyObject *self, PyObject *noargs) argument
2907 imp_get_magic(PyObject *self, PyObject *noargs) argument
2920 imp_get_suffixes(PyObject *self, PyObject *noargs) argument
2985 imp_find_module(PyObject *self, PyObject *args) argument
2995 imp_init_builtin(PyObject *self, PyObject *args) argument
3015 imp_init_frozen(PyObject *self, PyObject *args) argument
3035 imp_get_frozen_object(PyObject *self, PyObject *args) argument
3045 imp_is_builtin(PyObject *self, PyObjec argument
3054 imp_is_frozen(PyObject *self, PyObject *args) argument
3085 imp_load_compiled(PyObject *self, PyObject *args) argument
3107 imp_load_dynamic(PyObject *self, PyObject *args) argument
3129 imp_load_source(PyObject *self, PyObject *args) argument
3149 imp_load_module(PyObject *self, PyObject *args) argument
3190 imp_load_package(PyObject *self, PyObject *args) argument
3200 imp_new_module(PyObject *self, PyObject *args) argument
3209 imp_reload(PyObject *self, PyObject *v) argument
3311 NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) argument
3338 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
386 sys_settrace(PyObject *self, PyObject *args) argument
406 sys_gettrace(PyObject *self, PyObject *args) argument
425 sys_setprofile(PyObject *self, PyObject *args) argument
445 sys_getprofile(PyObject *self, PyObject *args) argument
464 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
629 sys_setdlopenflags(PyObject *self, PyObject *args) argument
655 sys_getdlopenflags(PyObject *self, PyObject *args) argument
676 sys_mdebug(PyObject *self, PyObject *args) argument
737 sys_getsizeof(PyObject *self, PyObject *args, PyObject *kwds) argument
769 sys_getrefcount(PyObject *self, PyObject *arg) argument
776 sys_gettotalrefcount(PyObject *self) argument
792 sys_getcounts(PyObject *self) argument
813 sys_getframe(PyObject *self, PyObject *args) argument
844 sys_current_frames(PyObject *self, PyObject *noargs) argument
858 sys_call_tracing(PyObject *self, PyObject *args) argument
908 sys_clear_type_cache(PyObject* self, PyObject* args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_elementtree.c262 element_new_extra(ElementObject* self, PyObject* attrib) argument
264 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra));
265 if (!self->extra)
272 self->extra->attrib = attrib;
274 self->extra->length = 0;
275 self->extra->allocated = STATIC_CHILDREN;
276 self->extra->children = self->extra->_children;
282 element_dealloc_extra(ElementObject* self) argument
286 Py_DECREF(self
300 ElementObject* self; local
340 element_resize(ElementObject* self, int extra) argument
391 element_add_subelement(ElementObject* self, PyObject* element) argument
407 element_get_attrib(ElementObject* self) argument
427 element_get_text(ElementObject* self) argument
447 element_get_tail(ElementObject* self) argument
467 element(PyObject* self, PyObject* args, PyObject* kw) argument
496 subelement(PyObject* self, PyObject* args, PyObject* kw) argument
532 element_dealloc(ElementObject* self) argument
551 element_append(ElementObject* self, PyObject* args) argument
564 element_clear(ElementObject* self, PyObject* args) argument
586 element_copy(ElementObject* self, PyObject* args) argument
628 element_deepcopy(ElementObject* self, PyObject* args) argument
756 element_extend(ElementObject* self, PyObject* args) argument
789 element_find(ElementObject* self, PyObject* args) argument
819 element_findtext(ElementObject* self, PyObject* args) argument
855 element_findall(ElementObject* self, PyObject* args) argument
892 element_iterfind(ElementObject* self, PyObject* args) argument
905 element_get(ElementObject* self, PyObject* args) argument
927 element_getchildren(ElementObject* self, PyObject* args) argument
954 element_iter(ElementObject* self, PyObject* args) argument
986 element_itertext(ElementObject* self, PyObject* args) argument
1017 ElementObject* self = (ElementObject*) self_; local
1032 element_insert(ElementObject* self, PyObject* args) argument
1068 element_items(ElementObject* self, PyObject* args) argument
1080 element_keys(ElementObject* self, PyObject* args) argument
1092 element_length(ElementObject* self) argument
1101 element_makeelement(PyObject* self, PyObject* args, PyObject* kw) argument
1122 element_reduce(ElementObject* self, PyObject* args) argument
1147 element_remove(ElementObject* self, PyObject* args) argument
1191 element_repr(ElementObject* self) argument
1208 element_set(ElementObject* self, PyObject* args) argument
1233 ElementObject* self = (ElementObject*) self_; local
1263 ElementObject* self = (ElementObject*) self_; local
1320 ElementObject* self = (ElementObject*) self_; local
1491 element_getattr(ElementObject* self, char* name) argument
1533 element_setattr(ElementObject* self, const char* name, PyObject* value) argument
1635 TreeBuilderObject* self; local
1673 treebuilder_dealloc(TreeBuilderObject* self) argument
1695 treebuilder_handle_xml(TreeBuilderObject* self, PyObject* encoding, PyObject* standalone) argument
1702 treebuilder_handle_start(TreeBuilderObject* self, PyObject* tag, PyObject* attrib) argument
1783 treebuilder_handle_data(TreeBuilderObject* self, PyObject* data) argument
1819 treebuilder_handle_end(TreeBuilderObject* self, PyObject* tag) argument
1875 treebuilder_handle_namespace(TreeBuilderObject* self, int start, PyObject *prefix, PyObject *uri) argument
1917 treebuilder_data(TreeBuilderObject* self, PyObject* args) argument
1927 treebuilder_end(TreeBuilderObject* self, PyObject* args) argument
1937 treebuilder_done(TreeBuilderObject* self) argument
1953 treebuilder_close(TreeBuilderObject* self, PyObject* args) argument
1962 treebuilder_start(TreeBuilderObject* self, PyObject* args) argument
1973 treebuilder_xml(TreeBuilderObject* self, PyObject* args) argument
1993 treebuilder_getattr(TreeBuilderObject* self, char* name) argument
2079 makeuniversal(XMLParserObject* self, const char* string) argument
2184 expat_default_handler(XMLParserObject* self, const XML_Char* data_in, int data_len) argument
2225 expat_start_handler(XMLParserObject* self, const XML_Char* tag_in, const XML_Char **attrib_in) argument
2288 expat_data_handler(XMLParserObject* self, const XML_Char* data_in, int data_len) argument
2312 expat_end_handler(XMLParserObject* self, const XML_Char* tag_in) argument
2335 expat_start_ns_handler(XMLParserObject* self, const XML_Char* prefix, const XML_Char *uri) argument
2363 expat_end_ns_handler(XMLParserObject* self, const XML_Char* prefix_in) argument
2371 expat_comment_handler(XMLParserObject* self, const XML_Char* comment_in) argument
2387 expat_pi_handler(XMLParserObject* self, const XML_Char* target_in, const XML_Char* data_in) argument
2411 expat_unknown_encoding_handler(XMLParserObject *self, const XML_Char *name, XML_Encoding *info) argument
2454 XMLParserObject* self; local
2566 xmlparser_dealloc(XMLParserObject* self) argument
2591 expat_parse(XMLParserObject* self, char* data, int data_len, int final) argument
2613 xmlparser_close(XMLParserObject* self, PyObject* args) argument
2636 xmlparser_feed(XMLParserObject* self, PyObject* args) argument
2649 xmlparser_parse(XMLParserObject* self, PyObject* args) argument
2708 xmlparser_setevents(XMLParserObject* self, PyObject* args) argument
2810 xmlparser_getattr(XMLParserObject* self, char* name) argument
[all...]

Completed in 508 milliseconds

12345678910