Home
last modified time | relevance | path

Searched full:dict_str (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/tools/acloud/create/
H A Dcreate_common.py83 def ParseKeyValuePairArgs(dict_str, item_separator=",", key_value_separator=":"): argument
91 dict_str: A String to be converted to dict object.
96 Dict created from key:val pairs in dict_str.
99 error.MalformedDictStringError: If dict_str is malformed.
102 if not dict_str:
105 for item in dict_str.split(item_separator):
/aosp_15_r20/external/pytorch/
H A Dpt_ops.bzl371 "aten::len.Dict_str",
374 "aten::__getitem__.Dict_str",
378 "aten::Delete.Dict_str",
379 "aten::pop.Dict_str",
385 "aten::copy.Dict_str",
/aosp_15_r20/external/bazelbuild-rules_python/python/private/
H A Dtext_util.bzl61 dict_str = _render_dict(selects, key_repr = key_repr, value_repr = value_repr) + ","
66 _indent(dict_str),
73 _indent(dict_str),
/aosp_15_r20/external/perfetto/src/trace_processor/importers/json/
H A Djson_trace_tokenizer.cc380 base::StringView dict_str; in ExtractValueForJsonKey() local
381 ReadDictRes dict_res = ReadOneJsonDict(s, end, &dict_str, &s); in ExtractValueForJsonKey()
389 value_str = dict_str.ToStdString(); in ExtractValueForJsonKey()
/aosp_15_r20/external/pytorch/torch/csrc/jit/serialization/
H A Dexport_module.cpp220 std::string dict_str; in getFunctionTuple() local
221 dict_str.append("Dict[") in getFunctionTuple()
226 types.emplace_back(dict_str); in getFunctionTuple()
/aosp_15_r20/external/pytorch/test/mobile/model_test/
H A Dcoverage.yaml339 - aten::len.Dict_str
1047 aten::__getitem__.Dict_str: 39
H A Dmodel_ops.yaml23 aten::__getitem__.Dict_str: 30
/aosp_15_r20/external/executorch/exir/operator/
H A Dconvert.py74 # aten::copy.Dict_str(Dict(str, t)(a) self) -> Dict(str, t)
/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/
H A Dpromoted_prim_ops.cpp253 mobile::prim_op_fn_register("aten::__getitem__.Dict_str", dictIndex),
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/static/
H A Dnative_ops.cpp149 "aten::__getitem__.Dict_str(Dict(str, t) self, str key) -> t(*)", in __anon75e5f0510b02()
1459 torch::schema("aten::len.Dict_str(Dict(str, t) self) -> int")) || in __anon75e5f0518802()
/aosp_15_r20/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()
/aosp_15_r20/external/pytorch/test/export/
H A Dtest_converter.py246 # aten::len.str and aten::len.Dict_str are not supported