Searched refs:PyObject_GetItem (Results 1 - 25 of 34) sorted by relevance

12

/external/python/cpython3/Modules/_sqlite/
H A Drow.c145 return PyObject_GetItem(self->data, idx);
/external/python/cpython3/Objects/
H A Dodictobject.c229 PyDict_GetItemWithError PyObject_GetItem
1043 result = PyObject_GetItem((PyObject *)od, key);
1122 value = PyObject_GetItem(od, key);
1280 PyObject *value = PyObject_GetItem((PyObject *)od,
2387 PyObject *value = PyObject_GetItem(other, key);
H A Dweakrefobject.c568 WRAP_BINARY(proxy_getitem, PyObject_GetItem)
H A Dabstract.c138 PyObject_GetItem(PyObject *o, PyObject *key) function
2062 r = PyObject_GetItem(o, okey);
2105 v = PyObject_GetItem(o, key);
H A Dframeobject.c834 PyObject *value = PyObject_GetItem(dict, key);
H A Ddescrobject.c768 return PyObject_GetItem(pp->mapping, key);
/external/python/cpython2/Modules/
H A Doperator.c130 spam2(op_getitem , PyObject_GetItem)
519 return PyObject_GetItem(obj, ig->item);
531 val = PyObject_GetItem(obj, item);
/external/python/cpython3/Modules/
H A D_operator.c104 spam2(op_getitem , PyObject_GetItem)
468 return PyObject_GetItem(obj, ig->item);
480 val = PyObject_GetItem(obj, item);
/external/python/cpython3/Objects/stringlib/
H A Dunicode_format.h173 newobj = PyObject_GetItem(obj, idx_obj);
186 newobj = PyObject_GetItem(obj, str);
418 /* Use PyObject_GetItem instead of PyDict_GetItem because this
421 if ((kwargs == NULL) || (obj = PyObject_GetItem(kwargs, key)) == NULL) {
/external/python/cpython2/Include/
H A Dabstract.h444 PyAPI_FUNC(PyObject *) PyObject_GetItem(PyObject *o, PyObject *key);
/external/python/cpython3/Python/
H A Dceval.c1464 PyObject *res = PyObject_GetItem(container, sub);
1766 ann_dict = PyObject_GetItem(f->f_locals, ann_str);
2151 bc = PyObject_GetItem(f->f_builtins, build_class_str);
2311 v = PyObject_GetItem(locals, name);
2333 v = PyObject_GetItem(f->f_builtins, name);
2372 v = PyObject_GetItem(f->f_globals, name);
2379 v = PyObject_GetItem(f->f_builtins, name);
2437 value = PyObject_GetItem(locals, name);
2665 ann_dict = PyObject_GetItem(f->f_locals, ann_str);
H A Dpeephole.c269 newconst = PyObject_GetItem(v, w);
H A Dimport.c1752 builtins = PyObject_GetItem(globals, builtins_str);
1769 import = PyObject_GetItem(builtins, import_str);
/external/python/cpython2/Objects/stringlib/
H A Dstring_format.h258 newobj = PyObject_GetItem(obj, idx_obj);
271 newobj = PyObject_GetItem(obj, str);
/external/protobuf/python/google/protobuf/pyext/
H A Drepeated_composite_container.cc237 return PyObject_GetItem(self->child_messages, slice);
H A Dmessage.cc1078 function_return.reset(PyObject_GetItem(map.get(), map_key));
2125 PyObject* extension = PyObject_GetItem(
/external/python/cpython2/Python/
H A Dpeephole.c138 newconst = PyObject_GetItem(v, w);
H A Dimport.c2883 builtins = PyObject_GetItem(globals, builtins_str);
2900 import = PyObject_GetItem(builtins, import_str);
H A Dceval.c1539 x = PyObject_GetItem(v, w);
2309 x = PyObject_GetItem(v, w);
4733 PyObject *res = PyObject_GetItem(u, slice);
/external/python/cpython3/Include/
H A Dabstract.h513 PyAPI_FUNC(PyObject *) PyObject_GetItem(PyObject *o, PyObject *key);
/external/python/cpython2/Objects/
H A Dabstract.c135 PyObject_GetItem(PyObject *o, PyObject *key) function
2476 r = PyObject_GetItem(o, okey);
2519 v = PyObject_GetItem(o, key);
H A Ddescrobject.c709 return PyObject_GetItem(pp->dict, key);
H A Dframeobject.c844 PyObject *value = PyObject_GetItem(dict, key);
H A Dweakrefobject.c583 WRAP_BINARY(proxy_getitem, PyObject_GetItem)
H A Dunicodeobject.c4183 x = PyObject_GetItem(mapping, w);
4530 x = PyObject_GetItem(mapping, w);
4949 x = PyObject_GetItem(mapping, w);
8468 args = PyObject_GetItem(dict, key);

Completed in 464 milliseconds

12