Home
last modified time | relevance | path

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

123

/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/static_core/libpandabase/
Doptions.yaml83 delimiter: ":"
91 delimiter: ":"
99 delimiter: ":"
107 delimiter: ":"
115 delimiter: ":"
123 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/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/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/utils/
Dutils.cpp95 std::vector<std::string> Utils::SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument
99 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString()
104 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString()
105 pos = str.find_first_of(delimiter, strIndex); in SplitString()
Dutils.h31 … 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/plugins/ets/
Druntime_options.yaml22 delimiter: ":"
32 delimiter: ":"
50 delimiter: ":"
/arkcompiler/ets_frontend/es2panda/util/
DcommonUtil.cpp24 std::vector<std::string> Split(const std::string &str, const char delimiter) in Split() argument
31 size_t pos = str.find(delimiter); in Split()
36 pos = str.find(delimiter, start); in Split()
DcommonUtil.h53 std::vector<std::string> Split(const std::string &str, const char delimiter);
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc.yaml24 delimiter: ","
100 delimiter: ":"
/arkcompiler/runtime_core/static_core/runtime/
Doptions.yaml24 delimiter: ":"
30 delimiter: ":"
39 delimiter: ":"
48 delimiter: ":"
64 delimiter: ":"
175 delimiter: ":"
509 delimiter: ':'
757 delimiter: ":"
836 delimiter: ","
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_function.cpp606 // there are two ways to represent the delimiter: '|' or "_7C"
614 std::string delimiter = "|"; in SetBaseClassFuncNames() local
615 uint32 width = 1; // delimiter width in SetBaseClassFuncNames()
616 size_t pos = name.find(delimiter); in SetBaseClassFuncNames()
618 delimiter = namemangler::kNameSplitterStr; in SetBaseClassFuncNames()
619 width = 3; // delimiter "_7C" width is 3 in SetBaseClassFuncNames()
620 pos = name.find(delimiter); in SetBaseClassFuncNames()
625 pos = name.find(delimiter, pos + width); in SetBaseClassFuncNames()
640 size_t newPos = name.find(delimiter, pos + width); in SetBaseClassFuncNames()
644 newPos = name.find(delimiter, newPos + width); in SetBaseClassFuncNames()
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.h379 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument
383 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString()
388 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString()
389 pos = str.find_first_of(delimiter, strIndex); in SplitString()
/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
937 std::string delimiter = arg->GetDelimiter().value(); in ParseListArgParam() local
939 std::size_t pos = param_str.find_first_of(delimiter, param_str_index); in ParseListArgParam()
943 param_str_index = param_str.find_first_not_of(delimiter, param_str_index); in ParseListArgParam()
944 pos = param_str.find_first_of(delimiter, param_str_index); in ParseListArgParam()
/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
948 std::string delimiter = arg->GetDelimiter().value(); in ParseListArgParam() local
950 std::size_t pos = paramStr.find_first_of(delimiter, paramStrIndex); in ParseListArgParam()
954 paramStrIndex = paramStr.find_first_not_of(delimiter, paramStrIndex); in ParseListArgParam()
955 pos = paramStr.find_first_of(delimiter, paramStrIndex); 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/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
Dresult.py105 f, delimiter=','):
140 f, delimiter=','):
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvmbackend.yaml85 delimiter: ","
/arkcompiler/runtime_core/scripts/
Dinstall-third-party129 # Split by delimiter and remove "with_submodules" keyword:
/arkcompiler/runtime_core/compiler/
Dcompiler.yaml152 delimiter: ","
355 delimiter: ","
589 delimiter: ","

123