Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dclassobject.c1937 static PyObject **name_op = NULL; variable
1952 name_op = (PyObject **)malloc(sizeof(PyObject *) * NAME_OPS); in init_name_op()
1953 if (name_op == NULL) in init_name_op()
1956 name_op[i] = PyString_InternFromString(_name_op[i]); in init_name_op()
1957 if (name_op[i] == NULL) in init_name_op()
1972 if (name_op == NULL) { in half_richcompare()
1981 name_op[op]); in half_richcompare()
1983 method = PyObject_GetAttr(v, name_op[op]); in half_richcompare()
Dtypeobject.c5513 static char *name_op[] = { variable
5528 func = lookup_method(self, name_op[op], &op_str[op]);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dclassobject.c1961 static PyObject **name_op = NULL; variable
1976 name_op = (PyObject **)malloc(sizeof(PyObject *) * NAME_OPS); in init_name_op()
1977 if (name_op == NULL) in init_name_op()
1980 name_op[i] = PyString_InternFromString(_name_op[i]); in init_name_op()
1981 if (name_op[i] == NULL) in init_name_op()
1996 if (name_op == NULL) { in half_richcompare()
2005 name_op[op]); in half_richcompare()
2007 method = PyObject_GetAttr(v, name_op[op]); in half_richcompare()
Dtypeobject.c5565 static char *name_op[] = { variable
5580 func = lookup_method(self, name_op[op], &op_str[op]);