Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/utils/
Dpandargs.h548 auto sub_args_str = argstr.substr(sep_pos + 1); in ParseCompoundArg() local
550 for (size_t pos = sub_args_str.find(',', 0); pos != std::string_view::npos; in ParseCompoundArg()
551 start = pos + 1, pos = sub_args_str.find(',', start)) { in ParseCompoundArg()
552 auto arg_str = sub_args_str.substr(start, pos - start); in ParseCompoundArg()
557 if (start < sub_args_str.size()) { in ParseCompoundArg()
558 if (!ParseSubArgument(arg, sub_args_str.substr(start))) { in ParseCompoundArg()