Searched refs:_Py_Identifier (Results 1 - 14 of 14) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | abstract.h | 123 /* Like PyObject_CallMethod(), but expect a _Py_Identifier* 126 _Py_Identifier *name, 130 _Py_Identifier *name, 136 _Py_Identifier *name, 141 _Py_Identifier *name, PyObject *const *args, in _PyObject_VectorcallMethodId() 152 _PyObject_CallMethodIdNoArgs(PyObject *self, _Py_Identifier *name) in _PyObject_CallMethodIdNoArgs() 159 _PyObject_CallMethodIdOneArg(PyObject *self, _Py_Identifier *name, PyObject *arg) in _PyObject_CallMethodIdOneArg()
|
H A D | object.h | 35 _PyObject_{Get,Set,Has}AttrId are __getattr__ versions using _Py_Identifier*. 37 typedef struct _Py_Identifier { struct 42 } _Py_Identifier; typedef 49 #define _Py_static_string(varname, value) static _Py_Identifier varname = _Py_static_string_init(value) 263 PyAPI_FUNC(PyObject *) _PyType_LookupId(PyTypeObject *, _Py_Identifier *); 264 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecialId(PyObject *, _Py_Identifier *); 281 PyAPI_FUNC(PyObject *) _PyObject_GetAttrId(PyObject *, _Py_Identifier *); 282 PyAPI_FUNC(int) _PyObject_SetAttrId(PyObject *, _Py_Identifier *, PyObject *); 293 PyAPI_FUNC(int) _PyObject_LookupAttrId(PyObject *, _Py_Identifier *, PyObject **);
|
H A D | dictobject.h | 35 _Py_Identifier *key); 51 PyAPI_FUNC(int) _PyDict_ContainsId(PyObject *, _Py_Identifier *); 65 PyAPI_FUNC(int) _PyDict_SetItemId(PyObject *dp, _Py_Identifier *key, PyObject *item); 67 PyAPI_FUNC(int) _PyDict_DelItemId(PyObject *mp, _Py_Identifier *key);
|
H A D | ceval.h | 12 PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *);
|
H A D | import.h | 9 PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(_Py_Identifier *name);
|
H A D | unicodeobject.h | 993 _Py_Identifier *right /* Right identifier */ 1141 PyAPI_FUNC(PyObject*) _PyUnicode_FromId(_Py_Identifier*);
|
/third_party/python/Objects/ |
H A D | call.c | 686 _PyObject_CallMethodId(PyObject *obj, _Py_Identifier *name, in _PyObject_CallMethodId() 745 _PyObject_CallMethodId_SizeT(PyObject *obj, _Py_Identifier *name, in _PyObject_CallMethodId_SizeT() 888 _PyObject_CallMethodIdObjArgs(PyObject *obj, _Py_Identifier *name, ...) in _PyObject_CallMethodIdObjArgs()
|
H A D | object.c | 852 _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) in _PyObject_GetAttrId() 863 _PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w) in _PyObject_SetAttrId() 987 _PyObject_LookupAttrId(PyObject *v, _Py_Identifier *name, PyObject **result) in _PyObject_LookupAttrId()
|
H A D | dictobject.c | 1806 _PyDict_GetItemIdWithError(PyObject *dp, _Py_Identifier *key) in _PyDict_GetItemIdWithError() 3724 _PyDict_ContainsId(PyObject *op, _Py_Identifier *key) in _PyDict_ContainsId() 3902 _PyDict_SetItemId(PyObject *v, _Py_Identifier *key, PyObject *item) in _PyDict_SetItemId() 3926 _PyDict_DelItemId(PyObject *v, _Py_Identifier *key) in _PyDict_DelItemId()
|
H A D | typeobject.c | 1594 _PyObject_LookupSpecialId(PyObject *self, _Py_Identifier *attrid) in _PyObject_LookupSpecialId() 3872 _PyType_LookupId(PyTypeObject *type, _Py_Identifier *name) in _PyType_LookupId()
|
H A D | unicodeobject.c | 2282 _PyUnicode_FromId(_Py_Identifier *id) in _PyUnicode_FromId() 2353 // Don't reset _PyRuntime next_index: _Py_Identifier.id remains valid in unicode_clear_identifiers() 11273 _PyUnicode_EqualToASCIIId(PyObject *left, _Py_Identifier *right) in _PyUnicode_EqualToASCIIId()
|
/third_party/python/Python/ |
H A D | import.c | 286 _PyImport_GetModuleId(_Py_Identifier *nameid) in _PyImport_GetModuleId()
|
H A D | ceval.c | 7172 _PyEval_GetBuiltinId(_Py_Identifier *name)
|
/third_party/python/Modules/ |
H A D | _elementtree.c | 2548 PyObject **dest, _Py_Identifier *name) in treebuilder_extend_element_text_or_tail()
|
Completed in 80 milliseconds