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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c 153 PyObject* upcase_key; local
156 upcase_key = PyObject_CallMethod(key, "upper", "");
157 if (!upcase_key) {
161 retval = PyDict_GetItem(converters, upcase_key);
162 Py_DECREF(upcase_key);
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.c 143 PyObject* upcase_key; local
146 upcase_key = PyObject_CallMethod(key, "upper", "");
147 if (!upcase_key) {
151 retval = PyDict_GetItem(converters, upcase_key);
152 Py_DECREF(upcase_key);
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cursor.c 104 PyObject* upcase_key; local
108 upcase_key = _PyObject_CallMethodId(key, &PyId_upper, NULL);
109 if (!upcase_key) {
113 retval = PyDict_GetItem(converters, upcase_key);
114 Py_DECREF(upcase_key);

Completed in 58 milliseconds