HomeSort by relevance Sort by last modified time
    Searched defs:dict (Results 226 - 250 of 389) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/xz-embedded/linux/lib/xz/
xz_dec_lzma2.c 264 struct dictionary dict; member in struct:xz_dec_lzma2
286 static void dict_reset(struct dictionary *dict, struct xz_buf *b)
288 if (DEC_IS_SINGLE(dict->mode)) {
289 dict->buf = b->out + b->out_pos;
290 dict->end = b->out_size - b->out_pos;
293 dict->start = 0;
294 dict->pos = 0;
295 dict->limit = 0;
296 dict->full = 0;
300 static void dict_limit(struct dictionary *dict, size_t out_max
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
coff-alpha.c 2089 bfd_byte dict[4096]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 400 PyObject *key, *value, *dict; local
415 dict = PyModule_GetDict(value);
418 PyDict_SetItemString(dict, "_", Py_None);
424 dict = PyModule_GetDict(value);
428 PyDict_SetItemString(dict, *p, Py_None);
433 v = PyDict_GetItemString(dict, *(p+1));
436 PyDict_SetItemString(dict, *p, v);
458 in the modules dict with None, rather than really deleting
549 PyObject *modules, *mod, *dict, *copy; local
562 dict = PyModule_GetDict(mod);
576 PyObject *dict, *mod, *mdict; local
2543 PyObject *dict = PyModule_GetDict(mod); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bufferedio.c 233 PyObject *dict; member in struct:__anon4379
385 Py_CLEAR(self->dict);
404 Py_VISIT(self->dict);
415 Py_CLEAR(self->dict);
2057 PyObject *dict; member in struct:__anon4380
    [all...]
textio.c 707 PyObject *dict; member in struct:__anon4386
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
arraymodule.c 1505 PyObject *dict, *result, *list; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 2743 PyObject *latin1, *dict; local
    [all...]
classobject.c 29 PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
54 if (dict == NULL || !PyDict_Check(dict)) {
56 "PyClass_New: dict must be a dictionary");
59 if (PyDict_GetItem(dict, docstr) == NULL) {
60 if (PyDict_SetItem(dict, docstr, Py_None) < 0)
63 if (PyDict_GetItem(dict, modstr) == NULL) {
68 if (PyDict_SetItem(dict, modstr, modname) < 0)
94 name, bases, dict, NULL);
122 Py_INCREF(dict);
177 PyObject *name, *bases, *dict; local
613 PyObject *dict = Py_None; local
    [all...]
object.c 1820 PyObject *dict = PyDict_New(); local
1834 PyObject *dict = PyObject_GetAttrString(obj, "__dict__"); local
1859 PyObject *dict = NULL; local
2376 PyObject *dict; local
2404 PyObject *dict; local
    [all...]
setobject.c 1950 PyObject *keys=NULL, *args=NULL, *result=NULL, *dict=NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
bltinmodule.c 636 "globals must be a real dict; try eval(expr, {}, mapping)"
637 : "globals must be a dict");
2669 PyObject *mod, *dict, *debug; local
    [all...]
import.c 432 PyObject *key, *value, *dict; local
447 dict = PyModule_GetDict(value);
450 PyDict_SetItemString(dict, "_", Py_None);
456 dict = PyModule_GetDict(value);
460 PyDict_SetItemString(dict, *p, Py_None);
465 v = PyDict_GetItemString(dict, *(p+1));
468 PyDict_SetItemString(dict, *p, v);
490 in the modules dict with None, rather than really deleting
581 PyObject *modules, *mod, *dict, *copy; local
594 dict = PyModule_GetDict(mod);
608 PyObject *dict, *mod, *mdict; local
2644 PyObject *dict = PyModule_GetDict(mod); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bufferedio.c 233 PyObject *dict; member in struct:__anon4692
385 Py_CLEAR(self->dict);
393 Py_VISIT(self->dict);
404 Py_CLEAR(self->dict);
2026 PyObject *dict; member in struct:__anon4693
    [all...]
textio.c 691 PyObject *dict; member in struct:__anon4699
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 122 PyObject *dict = PyDict_New(); local
125 if (dict == NULL)
130 PyDict_SetItem(dict, v, v);
134 while (PyDict_Next(dict, &pos, &k, &v)) {
142 if (PyDict_SetItem(dict, k, o) < 0) {
149 Py_DECREF(dict);
154 "test_dict_iteration: dict iteration went wrong ");
1112 PyObject *tuple, *dict = NULL; local
1630 PyObject *dict = NULL; local
    [all...]
arraymodule.c 1505 PyObject *dict, *result, *list; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 2735 PyObject *latin1, *dict; local
    [all...]
classobject.c 29 PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
54 if (dict == NULL || !PyDict_Check(dict)) {
56 "PyClass_New: dict must be a dictionary");
59 if (PyDict_GetItem(dict, docstr) == NULL) {
60 if (PyDict_SetItem(dict, docstr, Py_None) < 0)
63 if (PyDict_GetItem(dict, modstr) == NULL) {
68 if (PyDict_SetItem(dict, modstr, modname) < 0)
94 name, bases, dict, NULL);
122 Py_INCREF(dict);
177 PyObject *name, *bases, *dict; local
603 PyObject *dict = Py_None; local
    [all...]
setobject.c 1954 PyObject *keys=NULL, *args=NULL, *result=NULL, *dict=NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
bltinmodule.c 628 "globals must be a real dict; try eval(expr, {}, mapping)"
629 : "globals must be a dict");
2658 PyObject *mod, *dict, *debug; local
    [all...]
import.c 400 PyObject *key, *value, *dict; local
415 dict = PyModule_GetDict(value);
418 PyDict_SetItemString(dict, "_", Py_None);
424 dict = PyModule_GetDict(value);
428 PyDict_SetItemString(dict, *p, Py_None);
433 v = PyDict_GetItemString(dict, *(p+1));
436 PyDict_SetItemString(dict, *p, v);
458 in the modules dict with None, rather than really deleting
549 PyObject *modules, *mod, *dict, *copy; local
562 dict = PyModule_GetDict(mod);
576 PyObject *dict, *mod, *mdict; local
2543 PyObject *dict = PyModule_GetDict(mod); local
    [all...]
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 1013 auto dict = local
    [all...]
idl.h 173 auto it = dict.find(name);
174 if (it != dict.end()) return true;
175 dict[name] = e;
180 auto it = dict.find(oldname);
181 if (it != dict.end()) {
183 dict.erase(it);
184 dict[newname] = obj;
191 auto it = dict.find(name);
192 return it == dict.end() ? nullptr : it->second;
196 std::map<std::string, T *> dict; // quick looku member in class:flatbuffers::SymbolTable
    [all...]
  /external/harfbuzz_ng/src/
hb-coretext.cc 707 CFDictionaryRef dict = CFDictionaryCreate (kCFAllocatorDefault, local
716 CFArrayAppendValue (features_array, dict);
717 CFRelease (dict);
    [all...]
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 232 DictionaryValue* dict) {
235 if (dict->Get(key_value->key, &value) &&
242 dict->GetDictionary("args", &args_dict);
250 DictionaryValue* dict) {
253 if (!IsKeyValueInDict(key_values, dict))
269 DictionaryValue* dict = static_cast<DictionaryValue*>(value); local
271 if (IsAllKeyValueInDict(key_values, dict))
272 return dict;
289 DictionaryValue* dict = static_cast<DictionaryValue*>(value); local
291 if (dict->GetString("ph", &tmp) && tmp == "M"
376 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
394 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
1144 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
2201 DictionaryValue* dict = FindNamePhase("bar", "X"); local
2321 DictionaryValue* dict = NULL; local
2506 DictionaryValue* dict = NULL; local
    [all...]

Completed in 502 milliseconds

1 2 3 4 5 6 7 8 91011>>