Home
last modified time | relevance | path

Searched refs:newkey (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_mutants.py63 newkey = Horrid(random.randrange(100))
64 if newkey not in target:
66 target[newkey] = Horrid(random.randrange(100))
67 keys.append(newkey)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Ditertoolsmodule.c79 PyObject *newvalue, *newkey, *r, *grouper, *tmp; in groupby_next() local
103 newkey = newvalue; in groupby_next()
106 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, in groupby_next()
108 if (newkey == NULL) { in groupby_next()
115 gbo->currkey = newkey; in groupby_next()
234 PyObject *newvalue, *newkey, *r; in _grouper_next() local
243 newkey = newvalue; in _grouper_next()
246 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, in _grouper_next()
248 if (newkey == NULL) { in _grouper_next()
255 gbo->currkey = newkey; in _grouper_next()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Ditertoolsmodule.c79 PyObject *newvalue, *newkey, *r, *grouper, *tmp; in groupby_next() local
103 newkey = newvalue; in groupby_next()
106 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, in groupby_next()
108 if (newkey == NULL) { in groupby_next()
115 gbo->currkey = newkey; in groupby_next()
234 PyObject *newvalue, *newkey, *r; in _grouper_next() local
243 newkey = newvalue; in _grouper_next()
246 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, in _grouper_next()
248 if (newkey == NULL) { in _grouper_next()
255 gbo->currkey = newkey; in _grouper_next()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py1112 def insert(self, key, newkey, newvalue, order): argument
1115 self._key_list.insert(index, newkey)
1116 IterableUserDict.__setitem__(self, newkey, newvalue)
1118 self._key_list.insert(index + 1, newkey)
1119 IterableUserDict.__setitem__(self, newkey, newvalue)