Lines Matching defs:name

94     const char *name) {
101 int err = PyDict_SetItemString(res, name, d);
218 /* Use random 160 bit number as file name,
487 PyObject *name, int opcode, int opcode_module)
509 index = _PyDict_GetItemHint(dict, name, -1, &value);
548 analyze_descriptor(PyTypeObject *type, PyObject *name, PyObject **descr, int store)
562 PyObject *descriptor = _PyType_Lookup(type, name);
583 if (PyUnicode_CompareWithASCIIString(name, "__class__") == 0) {
584 if (descriptor == _PyType_Lookup(&PyBaseObject_Type, name)) {
608 DescriptorClassification kind, PyObject *name,
624 assert(PyUnicode_CheckExact(name));
625 Py_ssize_t index = _PyDictKeys_StringLookup(keys, name);
643 _PyDict_GetItemHint(dict, name, -1, &value);
656 _Py_Specialize_LoadAttr(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)
661 int err = specialize_module_load_attr(owner, instr, name, LOAD_ATTR,
675 DescriptorClassification kind = analyze_descriptor(type, name, &descr, 0);
736 owner, instr, type, kind, name,
758 _Py_Specialize_StoreAttr(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)
768 DescriptorClassification kind = analyze_descriptor(type, name, &descr, 1);
822 owner, instr, type, kind, name,
882 PyObject *name)
885 if (!PyType_CheckExact(owner) || _PyType_Lookup(Py_TYPE(owner), name)) {
891 kind = analyze_descriptor((PyTypeObject *)owner, name, &descr, 0);
921 _Py_Specialize_LoadMethod(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)
930 int err = specialize_module_load_attr(owner, instr, name, LOAD_METHOD,
943 int err = specialize_class_load_method(owner, instr, name);
952 kind = analyze_descriptor(owner_cls, name, &descr, 0);
991 Py_ssize_t index = _PyDictKeys_StringLookup(keys, name);
1052 _Py_CODEUNIT *instr, PyObject *name)
1057 assert(PyUnicode_CheckExact(name));
1066 Py_ssize_t index = _PyDictKeys_StringLookup(globals_keys, name);
1092 index = _PyDictKeys_StringLookup(builtin_keys, name);