Home
last modified time | relevance | path

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

12345678910>>...20

/third_party/protobuf/objectivec/
H A DGPBUtilities_PackagePrivate.h205 GPBGetHasIvarField(GPBMessage *self, GPBFieldDescriptor *field) { in GPBGetHasIvarField() argument
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage_factory.cc106 PyMessageFactory* self = reinterpret_cast<PyMessageFactory*>(pself); in Dealloc() local
120 PyMessageFactory* self = reinterpret_cast<PyMessageFactory*>(pself); in GcTraverse() local
129 PyMessageFactory* self = reinterpret_cast<PyMessageFactory*>(pself); GcClear() local
140 RegisterMessageClass(PyMessageFactory* self, const Descriptor* message_descriptor, CMessageClass* message_class) RegisterMessageClass() argument
155 GetOrCreateMessageClass(PyMessageFactory* self, const Descriptor* descriptor) GetOrCreateMessageClass() argument
223 GetMessageClass(PyMessageFactory* self, const Descriptor* message_descriptor) GetMessageClass() argument
239 GetPool(PyMessageFactory* self, void* closure) GetPool() argument
[all...]
H A Dunknown_fields.cc54 PyUnknownFields* self = in Len() local
65 void Clear(PyUnknownFields* self) { in Clear() argument
79 PyUnknownFields* self = in Item() local
102 PyUnknownFields* self = reinterpret_cast<PyUnknownFields*>( NewPyUnknownFields() local
121 PyUnknownFieldRef* self = reinterpret_cast<PyUnknownFieldRef*>( NewPyUnknownFieldRef() local
135 PyUnknownFields* self = Dealloc() local
200 PyUnknownFields* self = reinterpret_cast<PyUnknownFields*>( PyUnknownFields_FromUnknownFieldSet() local
216 GetUnknownField(PyUnknownFieldRef* self) GetUnknownField() argument
234 GetFieldNumber(PyUnknownFieldRef* self, void *closure) GetFieldNumber() argument
243 GetWireType(PyUnknownFieldRef* self, void *closure) GetWireType() argument
272 GetData(PyUnknownFieldRef* self, void *closure) GetData() argument
301 PyUnknownFieldRef* self = Dealloc() local
[all...]
/third_party/python/Python/
H A DPython-tokenize.c42 tokenizeriterobject *self = (tokenizeriterobject *)type->tp_alloc(type, 0); in tokenizeriter_new_impl() local
/third_party/python/Modules/_sqlite/clinic/
H A Dcursor.c.h10 pysqlite_cursor_init(PyObject *self, PyObject *args, PyObject *kwargs) in pysqlite_cursor_init() argument
48 pysqlite_cursor_execute(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs) in pysqlite_cursor_execute() argument
90 pysqlite_cursor_executemany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs) pysqlite_cursor_executemany() argument
128 pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *arg) pysqlite_cursor_executescript() argument
165 pysqlite_cursor_fetchone(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored)) pysqlite_cursor_fetchone() argument
186 pysqlite_cursor_fetchmany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) pysqlite_cursor_fetchmany() argument
226 pysqlite_cursor_fetchall(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored)) pysqlite_cursor_fetchall() argument
254 pysqlite_cursor_setoutputsize(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs) pysqlite_cursor_setoutputsize() argument
288 pysqlite_cursor_close(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored)) pysqlite_cursor_close() argument
[all...]
/third_party/python/Modules/_ssl/
H A Dcert.c20 PySSLCertificate *self; in newCertificate() local
74 _ssl_Certificate_public_bytes_impl(PySSLCertificate *self, int format) in _ssl_Certificate_public_bytes_impl() argument
124 _ssl_Certificate_get_info_impl(PySSLCertificate *self) _ssl_Certificate_get_info_impl() argument
157 certificate_repr(PySSLCertificate *self) certificate_repr() argument
179 certificate_hash(PySSLCertificate *self) certificate_hash() argument
194 certificate_richcompare(PySSLCertificate *self, PyObject *other, int op) certificate_richcompare() argument
215 certificate_dealloc(PySSLCertificate *self) certificate_dealloc() argument
[all...]
/third_party/python/Objects/clinic/
H A Dfloatobject.c.h18 float_is_integer(PyObject *self, PyObject *Py_UNUSED(ignored)) in float_is_integer() argument
36 float___trunc__(PyObject *self, PyObject *Py_UNUSED(ignored)) in float___trunc__() argument
54 float___floor__(PyObject *self, PyObject *Py_UNUSED(ignored)) float___floor__() argument
72 float___ceil__(PyObject *self, PyObject *Py_UNUSED(ignored)) float___ceil__() argument
92 float___round__(PyObject *self, PyObject *const *args, Py_ssize_t nargs) float___round__() argument
124 float_conjugate(PyObject *self, PyObject *Py_UNUSED(ignored)) float_conjugate() argument
147 float_hex(PyObject *self, PyObject *Py_UNUSED(ignored)) float_hex() argument
191 float_as_integer_ratio(PyObject *self, PyObject *Py_UNUSED(ignored)) float_as_integer_ratio() argument
242 float___getnewargs__(PyObject *self, PyObject *Py_UNUSED(ignored)) float___getnewargs__() argument
306 float___format__(PyObject *self, PyObject *arg) float___format__() argument
[all...]
H A Dmemoryobject.c.h49 memoryview_release(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored)) in memoryview_release() argument
68 memoryview_cast(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in memoryview_cast() argument
114 memoryview_toreadonly(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored)) memoryview_toreadonly() argument
132 memoryview_tolist(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored)) memoryview_tolist() argument
156 memoryview_tobytes(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) memoryview_tobytes() argument
228 memoryview_hex(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) memoryview_hex() argument
[all...]
H A Dtypeobject.c.h18 type___instancecheck__(PyTypeObject *self, PyObject *instance) in type___instancecheck__() argument
46 type___subclasscheck__(PyTypeObject *self, PyObject *subclass) in type___subclasscheck__() argument
74 type_mro(PyTypeObject *self, PyObject *Py_UNUSED(ignored)) type_mro() argument
92 type___subclasses__(PyTypeObject *self, PyObject *Py_UNUSED(ignored)) type___subclasses__() argument
110 type___dir__(PyTypeObject *self, PyObject *Py_UNUSED(ignored)) type___dir__() argument
128 type___sizeof__(PyTypeObject *self, PyObject *Py_UNUSED(ignored)) type___sizeof__() argument
146 object___getstate__(PyObject *self, PyObject *Py_UNUSED(ignored)) object___getstate__() argument
164 object___reduce__(PyObject *self, PyObject *Py_UNUSED(ignored)) object___reduce__() argument
182 object___reduce_ex__(PyObject *self, PyObject *arg) object___reduce_ex__() argument
210 object___format__(PyObject *self, PyObject *arg) object___format__() argument
242 object___sizeof__(PyObject *self, PyObject *Py_UNUSED(ignored)) object___sizeof__() argument
260 object___dir__(PyObject *self, PyObject *Py_UNUSED(ignored)) object___dir__() argument
[all...]
/third_party/python/Objects/
H A Dinterpreteridobject.c33 interpid *self = PyObject_New(interpid, cls); in newinterpid() local
104 interpid_repr(PyObject *self) in interpid_repr() argument
113 interpid_str(PyObject *self) in interpid_str() argument
120 interpid_int(PyObject *self) in interpid_int() argument
167 interpid_hash(PyObject *self) interpid_hash() argument
180 interpid_richcompare(PyObject *self, PyObject *other, int op) interpid_richcompare() argument
[all...]
H A Dnamespaceobject.c25 PyObject *self; in namespace_new() local
165 namespace_richcompare(PyObject *self, PyObject *other, int op) in namespace_richcompare() argument
H A Dpicklebufobject.c20 PyPickleBufferObject *self; in PyPickleBuffer_FromObject() local
38 PyPickleBufferObject *self = (PyPickleBufferObject *) obj; in PyPickleBuffer_GetBuffer() local
57 PyPickleBufferObject *self = (PyPickleBufferObject *) obj; PyPickleBuffer_Release() local
72 PyPickleBufferObject *self; picklebuf_new() local
95 picklebuf_traverse(PyPickleBufferObject *self, visitproc visit, void *arg) picklebuf_traverse() argument
102 picklebuf_clear(PyPickleBufferObject *self) picklebuf_clear() argument
109 picklebuf_dealloc(PyPickleBufferObject *self) picklebuf_dealloc() argument
121 picklebuf_getbuf(PyPickleBufferObject *self, Py_buffer *view, int flags) picklebuf_getbuf() argument
132 picklebuf_releasebuf(PyPickleBufferObject *self, Py_buffer *view) picklebuf_releasebuf() argument
149 picklebuf_raw(PyPickleBufferObject *self, PyObject *Py_UNUSED(ignored)) picklebuf_raw() argument
189 picklebuf_release(PyPickleBufferObject *self, PyObject *Py_UNUSED(ignored)) picklebuf_release() argument
[all...]
/third_party/python/Modules/clinic/
H A D_lzmamodule.c.h23 _lzma_LZMACompressor_compress(Compressor *self, PyObject *arg) in _lzma_LZMACompressor_compress() argument
63 _lzma_LZMACompressor_flush(Compressor *self, PyObject *Py_UNUSED(ignored)) in _lzma_LZMACompressor_flush() argument
95 _lzma_LZMADecompressor_decompress(Decompressor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _lzma_LZMADecompressor_decompress() argument
171 _lzma_LZMADecompressor___init__(PyObject *self, PyObject *args, PyObject *kwargs) _lzma_LZMADecompressor___init__() argument
[all...]
H A D_gdbmmodule.c.h18 _gdbm_gdbm_get(gdbmobject *self, PyObject *const *args, Py_ssize_t nargs) in _gdbm_gdbm_get() argument
53 _gdbm_gdbm_setdefault(gdbmobject *self, PyObject *const *args, Py_ssize_t nargs) in _gdbm_gdbm_setdefault() argument
87 _gdbm_gdbm_close(gdbmobject *self, PyObject *Py_UNUSED(ignored)) _gdbm_gdbm_close() argument
105 _gdbm_gdbm_keys(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _gdbm_gdbm_keys() argument
131 _gdbm_gdbm_firstkey(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _gdbm_gdbm_firstkey() argument
162 _gdbm_gdbm_nextkey(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _gdbm_gdbm_nextkey() argument
199 _gdbm_gdbm_reorganize(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _gdbm_gdbm_reorganize() argument
224 _gdbm_gdbm_sync(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _gdbm_gdbm_sync() argument
[all...]
H A D_struct.c.h20 Struct___init__(PyObject *self, PyObject *args, PyObject *kwargs) in Struct___init__() argument
59 Struct_unpack(PyStructObject *self, PyObject *arg) in Struct_unpack() argument
103 Struct_unpack_from(PyStructObject *self, PyObjec argument
[all...]
H A D_queuemodule.c.h52 _queue_SimpleQueue_put(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _queue_SimpleQueue_put() argument
104 _queue_SimpleQueue_put_nowait(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _queue_SimpleQueue_put_nowait() argument
145 _queue_SimpleQueue_get(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _queue_SimpleQueue_get() argument
196 _queue_SimpleQueue_get_nowait(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _queue_SimpleQueue_get_nowait() argument
218 _queue_SimpleQueue_empty(simplequeueobject *self, PyObject *Py_UNUSED(ignored)) _queue_SimpleQueue_empty() argument
246 _queue_SimpleQueue_qsize(simplequeueobject *self, PyObject *Py_UNUSED(ignored)) _queue_SimpleQueue_qsize() argument
[all...]
H A Dunicodedata.c.h23 unicodedata_UCD_decimal(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicodedata_UCD_decimal() argument
72 unicodedata_UCD_digit(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicodedata_UCD_digit() argument
122 unicodedata_UCD_numeric(PyObject *self, PyObject *const *args, Py_ssize_t nargs) unicodedata_UCD_numeric() argument
167 unicodedata_UCD_category(PyObject *self, PyObject *arg) unicodedata_UCD_category() argument
205 unicodedata_UCD_bidirectional(PyObject *self, PyObject *arg) unicodedata_UCD_bidirectional() argument
243 unicodedata_UCD_combining(PyObject *self, PyObject *arg) unicodedata_UCD_combining() argument
287 unicodedata_UCD_mirrored(PyObject *self, PyObject *arg) unicodedata_UCD_mirrored() argument
328 unicodedata_UCD_east_asian_width(PyObject *self, PyObject *arg) unicodedata_UCD_east_asian_width() argument
366 unicodedata_UCD_decomposition(PyObject *self, PyObject *arg) unicodedata_UCD_decomposition() argument
405 unicodedata_UCD_is_normalized(PyObject *self, PyObject *const *args, Py_ssize_t nargs) unicodedata_UCD_is_normalized() argument
452 unicodedata_UCD_normalize(PyObject *self, PyObject *const *args, Py_ssize_t nargs) unicodedata_UCD_normalize() argument
499 unicodedata_UCD_name(PyObject *self, PyObject *const *args, Py_ssize_t nargs) unicodedata_UCD_name() argument
548 unicodedata_UCD_lookup(PyObject *self, PyObject *arg) unicodedata_UCD_lookup() argument
[all...]
/third_party/python/Modules/
H A Dxxmodule.c33 XxoObject *self; in newXxoObject() local
44 Xxo_dealloc(XxoObject *self) in Xxo_dealloc() argument
51 Xxo_demo(XxoObject *self, PyObjec argument
66 Xxo_getattro(XxoObject *self, PyObject *name) Xxo_getattro() argument
82 Xxo_setattr(XxoObject *self, const char *name, PyObject *v) Xxo_setattr() argument
155 xx_foo(PyObject *self, PyObject *args) xx_foo() argument
169 xx_new(PyObject *self, PyObject *args) xx_new() argument
184 xx_bug(PyObject *self, PyObject *args) xx_bug() argument
205 xx_roj(PyObject *self, PyObject *args) xx_roj() argument
267 null_richcompare(PyObject *self, PyObject *other, int op) null_richcompare() argument
[all...]
H A Dxxsubtype.c27 spamlist_getstate(spamlistobject *self, PyObject *args) in spamlist_getstate() argument
35 spamlist_setstate(spamlistobject *self, PyObject *args) in spamlist_setstate() argument
47 spamlist_specialmeth(PyObject *self, PyObject *args, PyObject *kw) in spamlist_specialmeth() argument
83 spamlist_init(spamlistobject *self, PyObjec argument
92 spamlist_state_get(spamlistobject *self, void *Py_UNUSED(ignored)) spamlist_state_get() argument
152 spamdict_getstate(spamdictobject *self, PyObject *args) spamdict_getstate() argument
160 spamdict_setstate(spamdictobject *self, PyObject *args) spamdict_setstate() argument
180 spamdict_init(spamdictobject *self, PyObject *args, PyObject *kwds) spamdict_init() argument
236 spam_bench(PyObject *self, PyObject *args) spam_bench() argument
[all...]
H A Dxxlimited_35.c28 XxoObject *self; in newXxoObject() local
39 Xxo_traverse(XxoObject *self, visitproc visit, void *arg) in Xxo_traverse() argument
47 Xxo_clear(XxoObject *self) in Xxo_clear() argument
54 Xxo_finalize(XxoObject *self) Xxo_finalize() argument
60 Xxo_demo(XxoObject *self, PyObject *args) Xxo_demo() argument
81 Xxo_getattro(XxoObject *self, PyObject *name) Xxo_getattro() argument
97 Xxo_setattr(XxoObject *self, const char *name, PyObject *v) Xxo_setattr() argument
144 xx_foo(PyObject *self, PyObject *args) xx_foo() argument
158 xx_new(PyObject *self, PyObject *args) xx_new() argument
173 xx_roj(PyObject *self, PyObject *args) xx_roj() argument
202 null_richcompare(PyObject *self, PyObject *other, int op) null_richcompare() argument
[all...]
/third_party/python/Doc/includes/
H A Dcustom4.c13 Custom_traverse(CustomObject *self, visitproc visit, void *arg) in Custom_traverse() argument
21 Custom_clear(CustomObject *self) in Custom_clear() argument
29 Custom_dealloc(CustomObject *self) in Custom_dealloc() argument
39 CustomObject *self; Custom_new() local
58 Custom_init(CustomObject *self, PyObject *args, PyObject *kwds) Custom_init() argument
90 Custom_getfirst(CustomObject *self, void *closure) Custom_getfirst() argument
97 Custom_setfirst(CustomObject *self, PyObject *value, void *closure) Custom_setfirst() argument
115 Custom_getlast(CustomObject *self, void *closure) Custom_getlast() argument
122 Custom_setlast(CustomObject *self, PyObject *value, void *closure) Custom_setlast() argument
148 Custom_name(CustomObject *self, PyObject *Py_UNUSED(ignored)) Custom_name() argument
[all...]
/third_party/python/Modules/_io/clinic/
H A Dwinconsoleio.c.h23 _io__WindowsConsoleIO_close(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_close() argument
48 _io__WindowsConsoleIO___init__(PyObject *self, PyObject *args, PyObject *kwargs) in _io__WindowsConsoleIO___init__() argument
122 _io__WindowsConsoleIO_fileno(winconsoleio *self, PyObjec argument
144 _io__WindowsConsoleIO_readable(winconsoleio *self, PyObject *Py_UNUSED(ignored)) _io__WindowsConsoleIO_readable() argument
166 _io__WindowsConsoleIO_writable(winconsoleio *self, PyObject *Py_UNUSED(ignored)) _io__WindowsConsoleIO_writable() argument
188 _io__WindowsConsoleIO_readinto(winconsoleio *self, PyObject *arg) _io__WindowsConsoleIO_readinto() argument
232 _io__WindowsConsoleIO_readall(winconsoleio *self, PyObject *Py_UNUSED(ignored)) _io__WindowsConsoleIO_readall() argument
258 _io__WindowsConsoleIO_read(winconsoleio *self, PyObject *const *args, Py_ssize_t nargs) _io__WindowsConsoleIO_read() argument
299 _io__WindowsConsoleIO_write(winconsoleio *self, PyObject *arg) _io__WindowsConsoleIO_write() argument
339 _io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored)) _io__WindowsConsoleIO_isatty() argument
[all...]
/third_party/ffmpeg/libavdevice/
H A Djack.c65 JackData *self = arg; in process_callback() local
118 JackData *self = arg; shutdown_callback() local
124 JackData *self = arg; xrun_callback() local
130 supply_new_packets(JackData *self, AVFormatContext *context) supply_new_packets() argument
150 JackData *self = context->priv_data; start_jack() local
222 stop_jack(JackData *self) stop_jack() argument
238 JackData *self = context->priv_data; audio_read_header() local
266 JackData *self = context->priv_data; audio_read_packet() local
326 JackData *self = context->priv_data; audio_read_close() local
[all...]
/third_party/ltp/metadata/
H A Ddata_storage.h137 static inline int data_node_hash_add(struct data_node *self, const char *id, struct data_node *payload) in data_node_hash_add() argument
155 static inline void data_node_free(struct data_node *self) in data_node_free() argument
178 data_node_hash_del(struct data_node *self, const char *id) data_node_hash_del() argument
199 data_node_hash_get(struct data_node *self, const char *id) data_node_hash_get() argument
215 data_node_array_add(struct data_node *self, struct data_node *payload) data_node_array_add() argument
230 data_node_array_len(struct data_node *self) data_node_array_len() argument
244 data_node_print_(struct data_node *self, unsigned int padd) data_node_print_() argument
278 data_node_print(struct data_node *self) data_node_print() argument
334 data_to_json_(struct data_node *self, FILE *f, unsigned int padd, int do_padd) data_to_json_() argument
371 data_to_json(struct data_node *self, FILE *f, unsigned int padd) data_to_json() argument
[all...]
/third_party/ltp/testcases/kernel/device-drivers/usb/tusb/
H A Dst_tusb.h50 struct usb_bus self; /* hcd is-a bus */ member

Completed in 11 milliseconds

12345678910>>...20