Searched refs:main_dict (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/base/
H A Dvalues_unittest.cc815 DictionaryValue main_dict; local
826 main_dict.Set("bool", bool_value.DeepCopy());
827 main_dict.Set("int", int_value.DeepCopy());
828 main_dict.Set("double", double_value.DeepCopy());
829 main_dict.Set("string", string_value.DeepCopy());
830 main_dict.Set("binary", binary_value.DeepCopy());
831 main_dict.Set("dict", dict_value.DeepCopy());
832 main_dict.Set("list", list_value.DeepCopy());
842 EXPECT_TRUE(main_dict.Get("bool", NULL));
843 EXPECT_TRUE(main_dict
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c51 static PyObject *main_module, *main_dict; variable
95 handler = PyDict_GetItemString(main_dict, handler_name);
141 handler = PyDict_GetItemString(main_dict, handler_name);
267 handler = PyDict_GetItemString(main_dict, handler_name);
341 handler = PyDict_GetItemString(main_dict, "trace_unhandled");
380 handler = PyDict_GetItemString(main_dict, handler_name);
443 main_dict = PyModule_GetDict(main_module);
444 if (main_dict == NULL) {
448 Py_INCREF(main_dict);
450 handler = PyDict_GetItemString(main_dict, "trace_begi
[all...]
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp716 PyObject *main_dict = PyModule_GetDict (main_mod); local
717 if ((main_dict != NULL)
718 && PyDict_Check (main_dict))
724 while (PyDict_Next (main_dict, &pos, &key, &value))

Completed in 211 milliseconds