HomeSort by relevance Sort by last modified time
    Searched refs:position_obj (Results 1 - 9 of 9) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 674 PyObject *position_obj; local
704 position_obj = PyTuple_GET_ITEM(state, 1);
705 if (!PyIndex_Check(position_obj)) {
708 Py_TYPE(position_obj)->tp_name);
711 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
stringio.c 711 PyObject *position_obj; local
756 position_obj = PyTuple_GET_ITEM(state, 2);
757 if (!PyIndex_Check(position_obj)) {
760 Py_TYPE(position_obj)->tp_name);
763 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bytesio.c 664 PyObject *position_obj; local
694 position_obj = PyTuple_GET_ITEM(state, 1);
695 if (!PyIndex_Check(position_obj)) {
698 Py_TYPE(position_obj)->tp_name);
701 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
stringio.c 698 PyObject *position_obj; local
743 position_obj = PyTuple_GET_ITEM(state, 2);
744 if (!PyIndex_Check(position_obj)) {
747 Py_TYPE(position_obj)->tp_name);
750 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
  /external/python/cpython2/Modules/_io/
bytesio.c 674 PyObject *position_obj; local
704 position_obj = PyTuple_GET_ITEM(state, 1);
705 if (!PyIndex_Check(position_obj)) {
708 Py_TYPE(position_obj)->tp_name);
711 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
stringio.c 711 PyObject *position_obj; local
756 position_obj = PyTuple_GET_ITEM(state, 2);
757 if (!PyIndex_Check(position_obj)) {
760 Py_TYPE(position_obj)->tp_name);
763 pos = PyNumber_AsSsize_t(position_obj, PyExc_OverflowError);
  /external/python/cpython3/Modules/_io/
bytesio.c 837 PyObject *position_obj; local
868 position_obj = PyTuple_GET_ITEM(state, 1);
869 if (!PyLong_Check(position_obj)) {
872 Py_TYPE(position_obj)->tp_name);
875 pos = PyLong_AsSsize_t(position_obj);
    [all...]
stringio.c 888 PyObject *position_obj; local
944 position_obj = PyTuple_GET_ITEM(state, 2);
945 if (!PyLong_Check(position_obj)) {
948 Py_TYPE(position_obj)->tp_name);
951 pos = PyLong_AsSsize_t(position_obj);
  /external/v8/src/runtime/
runtime-regexp.cc     [all...]

Completed in 281 milliseconds