Searched refs:node_string (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/pytorch/torch/csrc/lazy/core/ |
H A D | ir_dump_util.cpp | 26 const std::string& node_string, in SkipTagSeparator() argument 28 return node_string.compare(pos, 2, ", ") == 0 ? pos + 2 : pos; in SkipTagSeparator() 32 const std::string& node_string, in ParseAttrTag() argument 39 node_string.begin() + pos, node_string.end(), match, tag_regex)) { in ParseAttrTag() 43 std::string::size_type vpos = match[1].second - node_string.begin() + 1; in ParseAttrTag() 49 for (pos = vpos; pos < node_string.size(); ++pos) { in ParseAttrTag() 51 if (SkipTagSeparator(node_string, pos) != pos) { in ParseAttrTag() 54 switch (node_string[pos]) { in ParseAttrTag() 56 nested_open = node_string[pos]; in ParseAttrTag() 60 nested_open = node_string[pos]; in ParseAttrTag() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | prefilter_tree.cc | 100 std::string node_string = NodeString(node); in CanonicalNode() local 101 NodeMap::iterator iter = nodes->find(node_string); in CanonicalNode() 355 std::string node_string = ""; in DebugNodeString() local 358 node_string += node->atom(); in DebugNodeString() 361 node_string += node->op() == Prefilter::AND ? "AND" : "OR"; in DebugNodeString() 362 node_string += "("; in DebugNodeString() 365 node_string += ','; in DebugNodeString() 366 node_string += StringPrintf("%d", (*node->subs())[i]->unique_id()); in DebugNodeString() 367 node_string += ":"; in DebugNodeString() 368 node_string += DebugNodeString((*node->subs())[i]); in DebugNodeString() [all …]
|
/aosp_15_r20/external/regex-re2/re2/ |
H A D | prefilter_tree.cc | 109 string node_string = NodeString(node); in CanonicalNode() local 110 std::map<string, Prefilter*>::iterator iter = nodes->find(node_string); in CanonicalNode() 387 string node_string = ""; in DebugNodeString() local 391 node_string += node->atom(); in DebugNodeString() 394 node_string += node->op() == Prefilter::AND ? "AND" : "OR"; in DebugNodeString() 395 node_string += "("; in DebugNodeString() 398 node_string += ','; in DebugNodeString() 399 node_string += StringPrintf("%d", (*node->subs())[i]->unique_id()); in DebugNodeString() 400 node_string += ":"; in DebugNodeString() 401 node_string += DebugNodeString((*node->subs())[i]); in DebugNodeString() [all …]
|
/aosp_15_r20/external/cronet/third_party/re2/src/re2/ |
H A D | prefilter_tree.cc | 356 std::string node_string = ""; in DebugNodeString() local 359 node_string += node->atom(); in DebugNodeString() 362 node_string += node->op() == Prefilter::AND ? "AND" : "OR"; in DebugNodeString() 363 node_string += "("; in DebugNodeString() 366 node_string += ','; in DebugNodeString() 367 node_string += absl::StrFormat("%d", (*node->subs())[i]->unique_id()); in DebugNodeString() 368 node_string += ":"; in DebugNodeString() 369 node_string += DebugNodeString((*node->subs())[i]); in DebugNodeString() 371 node_string += ")"; in DebugNodeString() 373 return node_string; in DebugNodeString()
|
/aosp_15_r20/external/pytorch/torch/onnx/_internal/fx/ |
H A D | diagnostics.py | 83 node_string = f"fx.Node({obj.target})[{obj.op}]:" 85 return node_string + "None" 86 return node_string + format_argument(obj.meta["val"])
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2xla/ |
H A D | functionalize_control_flow_test.cc | 924 string node_string; in __anone048db3a0402() local 926 node_string = "both_loops_tpu"; in __anone048db3a0402() 928 node_string = "no_loop_tpu"; in __anone048db3a0402() 930 node_string = mark_inner_loop_tpu ? "inner_loop_tpu" : "outer_loop_tpu"; in __anone048db3a0402() 933 restrict_to_tpu_nodes ? "restricted_" : "unrestricted_", node_string); in __anone048db3a0402()
|