Home
last modified time | relevance | path

Searched refs:name_op (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Dopcode.py42 def name_op(name, op): function
131 name_op('STORE_NAME', 90) # Index in name list
132 name_op('DELETE_NAME', 91) # ""
136 name_op('STORE_ATTR', 95) # Index in name list
137 name_op('DELETE_ATTR', 96) # ""
138 name_op('STORE_GLOBAL', 97) # ""
139 name_op('DELETE_GLOBAL', 98) # ""
142 name_op('LOAD_NAME', 101) # Index in name list
147 name_op('LOAD_ATTR', 106) # Index in name list
150 name_op('IMPORT_NAME', 108) # Index in name list
[all …]
/external/python/cpython2/Lib/
Dopcode.py31 def name_op(name, op): function
126 name_op('STORE_NAME', 90) # Index in name list
127 name_op('DELETE_NAME', 91) # ""
131 name_op('STORE_ATTR', 95) # Index in name list
132 name_op('DELETE_ATTR', 96) # ""
133 name_op('STORE_GLOBAL', 97) # ""
134 name_op('DELETE_GLOBAL', 98) # ""
138 name_op('LOAD_NAME', 101) # Index in name list
143 name_op('LOAD_ATTR', 106) # Index in name list
146 name_op('IMPORT_NAME', 108) # Index in name list
[all …]
/external/python/cpython2/Objects/
Dclassobject.c1960 static PyObject **name_op = NULL; variable
1975 name_op = (PyObject **)malloc(sizeof(PyObject *) * NAME_OPS); in init_name_op()
1976 if (name_op == NULL) in init_name_op()
1979 name_op[i] = PyString_InternFromString(_name_op[i]); in init_name_op()
1980 if (name_op[i] == NULL) in init_name_op()
1995 if (name_op == NULL) { in half_richcompare()
2004 name_op[op]); in half_richcompare()
2006 method = PyObject_GetAttr(v, name_op[op]); in half_richcompare()
Dtypeobject.c5725 static char *name_op[] = { variable
5740 func = lookup_method(self, name_op[op], &op_str[op]);
/external/python/cpython3/Tools/c-analyzer/
Dignored-globals.txt295 name_op
DTODO608 Objects/typeobject.c:name_op static _Py_Identifier name_op[]
Dknown.tsv529 Objects/typeobject.c - name_op variable static _Py_Identifier name_op[]
/external/python/cpython3/Objects/
Dtypeobject.c6815 static _Py_Identifier name_op[] = { variable
6830 PyObject *func = lookup_maybe_method(self, &name_op[op], &unbound); in slot_tp_richcompare()