Searched refs:delimiter (Results 1 – 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_runtime_options.cpp | 824 …ptions::ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::string delimiter) in ParseListArgParam() argument 828 std::size_t pos = option.find_first_of(delimiter, strIndex); in ParseListArgParam() 832 strIndex = option.find_first_not_of(delimiter, strIndex); in ParseListArgParam() 833 pos = option.find_first_of(delimiter, strIndex); in ParseListArgParam()
|
D | js_runtime_options.h | 1188 … void ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::string delimiter);
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | string_helper.h | 364 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument 368 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString() 373 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString() 374 pos = str.find_first_of(delimiter, strIndex); in SplitString()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | aot_compiler.cpp | 143 std::string delimiter = GetFileDelimiter(); in Main() local 144 arg_list_t pandaFileNames = base::StringHelper::SplitString(files, delimiter); in Main()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | pandargs.h | 110 std::string delimiter) in PandArg() argument 114 delimiter_(std::move(delimiter)) in PandArg() 938 std::string delimiter = arg->GetDelimiter().value(); in ParseListArgParam() local 940 std::size_t pos = param_str.find_first_of(delimiter, param_str_index); in ParseListArgParam() 944 param_str_index = param_str.find_first_not_of(delimiter, param_str_index); in ParseListArgParam() 945 pos = param_str.find_first_of(delimiter, param_str_index); in ParseListArgParam()
|
/arkcompiler/ets_frontend/es2panda/aot/ |
D | options.cpp | 75 static std::vector<std::string> GetStringItems(std::string &input, const std::string &delimiter) in GetStringItems() argument 80 while ((pos = input.find(delimiter)) != std::string::npos) { in GetStringItems() 85 input.erase(0, pos + delimiter.length()); in GetStringItems()
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
D | string_helper_test.cpp | 224 const std::string delimiter = " "; in HWTEST_F_L0() local 225 std::vector<std::string> resultList = StringHelper::SplitString(result, delimiter); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/templates/options/ |
D | options.h.erb | 170 % if defined? op.delimiter 171 …e %>{"<%= op.name %>", <%= op.default_value %>, <%= op.full_description %>, "<%= op.delimiter %>"};
|
/arkcompiler/runtime_core/libpandabase/ |
D | README.md | 41 - 4 parameters for single list: argument name, default value, description, delimiter. 140 - list values must be repeated with arg name or separated by delimiter
|