| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/ |
| D | list.std_core_array_join.yaml | 19 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/ |
| D | options.yaml | 83 delimiter: ":" 91 delimiter: ":" 99 delimiter: ":" 107 delimiter: ":" 115 delimiter: ":" 123 delimiter: ":"
|
| D | README.md | 41 - 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/ |
| D | options.yaml | 80 delimiter: ":" 88 delimiter: ":" 96 delimiter: ":" 104 delimiter: ":" 112 delimiter: ":" 120 delimiter: ":"
|
| D | README.md | 41 - 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/ |
| D | options.yaml | 24 delimiter: ":" 30 delimiter: ":" 36 delimiter: "," 44 delimiter: "," 57 delimiter: ":" 74 delimiter: ":"
|
| /arkcompiler/runtime_core/static_core/compiler/aot/ |
| D | aot_manager.cpp | 83 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/ |
| D | utils.cpp | 95 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()
|
| D | utils.h | 31 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter);
|
| /arkcompiler/runtime_core/static_core/tools/sampler/ |
| D | options.yaml | 52 delimiter: ',' 58 delimiter: ','
|
| /arkcompiler/runtime_core/static_core/plugins/ets/ |
| D | runtime_options.yaml | 22 delimiter: ":" 32 delimiter: ":" 50 delimiter: ":"
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | commonUtil.cpp | 24 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()
|
| D | commonUtil.h | 53 std::vector<std::string> Split(const std::string &str, const char delimiter);
|
| /arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
| D | paoc.yaml | 24 delimiter: "," 100 delimiter: ":"
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | options.yaml | 24 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/ |
| D | mir_function.cpp | 606 // 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/ |
| D | string_helper.h | 379 … 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/ |
| D | pandargs.h | 110 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/ |
| D | pandargs.h | 112 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/ |
| D | options.h.erb | 170 % if defined? op.delimiter 171 …e %>{"<%= op.name %>", <%= op.default_value %>, <%= op.full_description %>, "<%= op.delimiter %>"};
|
| /arkcompiler/runtime_core/static_core/templates/options/ |
| D | options.h.erb | 173 % 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/ |
| D | result.py | 105 f, delimiter=','): 140 f, delimiter=','):
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| D | llvmbackend.yaml | 85 delimiter: ","
|
| /arkcompiler/runtime_core/scripts/ |
| D | install-third-party | 129 # Split by delimiter and remove "with_submodules" keyword:
|
| /arkcompiler/runtime_core/compiler/ |
| D | compiler.yaml | 152 delimiter: "," 355 delimiter: "," 589 delimiter: ","
|