Home
last modified time | relevance | path

Searched full:delimiter (Results 1 – 25 of 45) sorted by relevance

12

/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/
Dlist.std_core_array_join.yaml19 method_signature: { arr: "boolean[]", delimiter: "String" },
21 method_signature_desc: {first: "boolean_array", delimiter: "String"},
27 delimiter: '""',
32 delimiter: '" "',
37 delimiter: '"------"',
42 delimiter: '","',
44 test5: {arr: "[]", delimiter: '","'},
61 method_signature: { arr: "byte[]", delimiter: "String" },
63 method_signature_desc: {first: "byte_array", delimiter: "String"},
66 test1: { arr: "[1, 22, 33, 44, 55, 66, 77, 88, 99]", delimiter: '""' },
[all …]
/arkcompiler/runtime_core/libpandabase/
Doptions.yaml80 delimiter: ":"
88 delimiter: ":"
96 delimiter: ":"
104 delimiter: ":"
112 delimiter: ":"
120 delimiter: ":"
DREADME.md41 - 4 parameters for single list: argument name, default value, description, delimiter.
49 - Delimiter is a character or string that separates the different value if the single argument list
140 - list values must be repeated with arg name or separated by delimiter
/arkcompiler/runtime_core/static_core/libpandabase/
Doptions.yaml82 delimiter: ":"
90 delimiter: ":"
98 delimiter: ":"
106 delimiter: ":"
114 delimiter: ":"
122 delimiter: ":"
DREADME.md41 - 4 parameters for single list: argument name, default value, description, delimiter.
49 - Delimiter is a character or string that separates the different value if the single argument list
140 - list values must be repeated with arg name or separated by delimiter
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
Djoin.ets.j221 * @param delimiter a string to insert between elements of arr
23 * @returns joined elements of arr with delimiter between
25 export function join(arr: {{T}}[], delimiter: String): String {
43 sb.append(delimiter);
/arkcompiler/runtime_core/static_core/verification/verifier/
Doptions.yaml24 delimiter: ":"
30 delimiter: ":"
36 delimiter: ","
44 delimiter: ","
57 delimiter: ":"
74 delimiter: ":"
/arkcompiler/runtime_core/static_core/compiler/aot/
Daot_manager.cpp83 constexpr char DELIMITER = ':'; in FancyClassContextPrint() local
85 size_t end = context.find(DELIMITER, start); in FancyClassContextPrint()
89 end = context.find(DELIMITER, start); in FancyClassContextPrint()
96 constexpr char DELIMITER = ':'; in CheckFilesInClassContext() local
98 size_t end = aotContext.find(DELIMITER, start); in CheckFilesInClassContext()
106 end = aotContext.find(DELIMITER, start); in CheckFilesInClassContext()
/arkcompiler/toolchain/tooling/client/utils/
Dutils.cpp71 std::vector<std::string> Utils::SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument
75 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString()
80 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString()
81 pos = str.find_first_of(delimiter, strIndex); in SplitString()
Dutils.h28 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter);
/arkcompiler/runtime_core/static_core/tools/sampler/
Doptions.yaml52 delimiter: ','
58 delimiter: ','
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc.yaml24 delimiter: ","
100 delimiter: ":"
/arkcompiler/runtime_core/static_core/plugins/ets/
Druntime_options.yaml22 delimiter: ":"
32 delimiter: ":"
50 delimiter: ":"
/arkcompiler/runtime_core/static_core/runtime/
Doptions.yaml24 delimiter: ":"
30 delimiter: ":"
39 delimiter: ":"
48 delimiter: ":"
64 delimiter: ":"
175 delimiter: ":"
499 delimiter: ':'
732 delimiter: ":"
811 delimiter: ","
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_function.cpp605 // there are two ways to represent the delimiter: '|' or "_7C"
613 std::string delimiter = "|"; in SetBaseClassFuncNames() local
614 uint32 width = 1; // delimiter width in SetBaseClassFuncNames()
615 size_t pos = name.find(delimiter); in SetBaseClassFuncNames()
617 delimiter = namemangler::kNameSplitterStr; in SetBaseClassFuncNames()
618 width = 3; // delimiter "_7C" width is 3 in SetBaseClassFuncNames()
619 pos = name.find(delimiter); in SetBaseClassFuncNames()
622 pos = name.find(delimiter, pos + width); in SetBaseClassFuncNames()
636 size_t newPos = name.find(delimiter, pos + width); in SetBaseClassFuncNames()
639 newPos = name.find(delimiter, newPos + width); in SetBaseClassFuncNames()
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvmbackend.yaml40 delimiter: ","
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.h382 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument
386 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString()
391 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString()
392 pos = str.find_first_of(delimiter, strIndex); in SplitString()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dpandargs.h112 std::string delimiter) in PandArg() argument
116 delimiter_ {std::move(delimiter)}
188 // Only for strings with delimiter
939 std::string delimiter = arg->GetDelimiter().value(); in ParseListArgParam() local
941 std::size_t pos = paramStr.find_first_of(delimiter, paramStrIndex); in ParseListArgParam()
945 paramStrIndex = paramStr.find_first_not_of(delimiter, paramStrIndex); in ParseListArgParam()
946 pos = paramStr.find_first_of(delimiter, paramStrIndex); in ParseListArgParam()
/arkcompiler/runtime_core/libpandabase/utils/
Dpandargs.h110 std::string delimiter) in PandArg() argument
114 delimiter_(std::move(delimiter)) in PandArg()
186 // Only for strings with delimiter
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/runtime_core/templates/options/
Doptions.h.erb170 % if defined? op.delimiter
171 …e %>{"<%= op.name %>", <%= op.default_value %>, <%= op.full_description %>, "<%= op.delimiter %>"};
/arkcompiler/runtime_core/static_core/templates/options/
Doptions.h.erb173 % if defined? op.delimiter
174 …e %>{"<%= op.name %>", <%= op.default_value %>, <%= op.full_description %>, "<%= op.delimiter %>"};
/arkcompiler/ets_runtime/ecmascript/compiler/
Daot_compiler_preprocessor.cpp108 std::string delimiter = GetFileDelimiter(); in HandlePandaFileNames() local
109 pandaFileNames_ = base::StringHelper::SplitString(files, delimiter); in HandlePandaFileNames()
/arkcompiler/runtime_core/compiler/
Dcompiler.yaml152 delimiter: ","
355 delimiter: ","
589 delimiter: ","
/arkcompiler/runtime_core/scripts/
Dinstall-third-party129 # Split by delimiter and remove "with_submodules" keyword:
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dstring_helper_test.cpp224 const std::string delimiter = " "; in HWTEST_F_L0() local
225 std::vector<std::string> resultList = StringHelper::SplitString(result, delimiter); in HWTEST_F_L0()

12