Home
last modified time | relevance | path

Searched refs:dict_str (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/trace_processor/importers/json/
Djson_trace_tokenizer.cc298 base::StringView dict_str; in ExtractValueForJsonKey() local
299 ReadDictRes dict_res = ReadOneJsonDict(s, end, &dict_str, &s); in ExtractValueForJsonKey()
306 value_str = dict_str.ToStdString(); in ExtractValueForJsonKey()
/external/python/cpython2/Objects/
Dtypeobject.c1846 static PyObject *dict_str; in get_dict_descriptor() local
1849 if (dict_str == NULL) { in get_dict_descriptor()
1850 dict_str = PyString_InternFromString("__dict__"); in get_dict_descriptor()
1851 if (dict_str == NULL) in get_dict_descriptor()
1854 descr = _PyType_Lookup(type, dict_str); in get_dict_descriptor()