Home
last modified time | relevance | path

Searched refs:kv (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
Dheaders.py54 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
83 return [kv[1] for kv in self._headers if kv[0].lower()==name]
131 return '\r\n'.join(["%s: %s" % kv for kv in self._headers]+['',''])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddictobject.c2421 PyObject *kv, *rv; in PyDict_GetItemString() local
2422 kv = PyString_FromString(key); in PyDict_GetItemString()
2423 if (kv == NULL) in PyDict_GetItemString()
2425 rv = PyDict_GetItem(v, kv); in PyDict_GetItemString()
2426 Py_DECREF(kv); in PyDict_GetItemString()
2433 PyObject *kv; in PyDict_SetItemString() local
2435 kv = PyString_FromString(key); in PyDict_SetItemString()
2436 if (kv == NULL) in PyDict_SetItemString()
2438 PyString_InternInPlace(&kv); /* XXX Should we really? */ in PyDict_SetItemString()
2439 err = PyDict_SetItem(v, kv, item); in PyDict_SetItemString()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddictobject.c2387 PyObject *kv, *rv; in PyDict_GetItemString() local
2388 kv = PyString_FromString(key); in PyDict_GetItemString()
2389 if (kv == NULL) in PyDict_GetItemString()
2391 rv = PyDict_GetItem(v, kv); in PyDict_GetItemString()
2392 Py_DECREF(kv); in PyDict_GetItemString()
2399 PyObject *kv; in PyDict_SetItemString() local
2401 kv = PyString_FromString(key); in PyDict_SetItemString()
2402 if (kv == NULL) in PyDict_SetItemString()
2404 PyString_InternInPlace(&kv); /* XXX Should we really? */ in PyDict_SetItemString()
2405 err = PyDict_SetItem(v, kv, item); in PyDict_SetItemString()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_httplib.py72 kv = item.split(':')
73 if len(kv) > 1:
75 lcKey = kv[0].lower()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
Dencoder.py355 items = sorted(dct.items(), key=lambda kv: kv[0])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
Dencoder.py361 items = sorted(dct.items(), key=lambda kv: kv[0])
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py1194 value = kv[0]