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

  /external/chromium_org/base/
values_unittest.cc 815 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.Get("int", NULL))
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
trace-event-python.c 51 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_begin")
    [all...]
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp 716 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))
    [all...]

Completed in 229 milliseconds