| /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/verification/verifier/ |
| D | options.yaml | 24 delimiter: ":" 30 delimiter: ":" 36 delimiter: "," 44 delimiter: "," 56 delimiter: ":" 73 delimiter: ":"
|
| /arkcompiler/runtime_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 = aot_context.find(DELIMITER, start); in CheckFilesInClassContext() 106 end = aot_context.find(DELIMITER, start); in CheckFilesInClassContext()
|
| /arkcompiler/runtime_core/runtime/ |
| D | options.yaml | 24 delimiter: ":" 30 delimiter: ":" 39 delimiter: ":" 48 delimiter: ":" 64 delimiter: ":" 139 delimiter: ":" 409 delimiter: ':' 702 delimiter: ","
|
| /arkcompiler/runtime_core/compiler/tools/paoc/ |
| D | paoc.yaml | 24 delimiter: "," 109 delimiter: ":"
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | aot_compiler.cpp | 93 std::string delimiter = GetFileDelimiter(); in Main() local 94 arg_list_t pandaFileNames = base::StringHelper::SplitString(files, delimiter); in Main()
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | string_helper.h | 347 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter) in SplitString() argument 351 std::size_t pos = str.find_first_of(delimiter, strIndex); in SplitString() 356 strIndex = str.find_first_not_of(delimiter, strIndex); in SplitString() 357 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 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_runtime/ecmascript/ |
| D | js_runtime_options.cpp | 599 …ptions::ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::string delimiter) in ParseListArgParam() argument 603 std::size_t pos = option.find_first_of(delimiter, strIndex); in ParseListArgParam() 607 strIndex = option.find_first_not_of(delimiter, strIndex); in ParseListArgParam() 608 pos = option.find_first_of(delimiter, strIndex); in ParseListArgParam()
|
| D | js_runtime_options.h | 908 … void ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::string delimiter);
|
| /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/ets_frontend/es2panda/aot/ |
| D | options.cpp | 43 static std::vector<std::string> GetStringItems(std::string &input, const std::string &delimiter) in GetStringItems() argument 48 while ((pos = input.find(delimiter)) != std::string::npos) { in GetStringItems() 53 input.erase(0, pos + delimiter.length()); in GetStringItems()
|
| /arkcompiler/runtime_core/compiler/ |
| D | compiler.yaml | 152 delimiter: "," 355 delimiter: "," 589 delimiter: ","
|
| /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/scripts/ |
| D | install-third-party | 129 # Split by delimiter and remove "with_submodules" keyword:
|
| /arkcompiler/runtime_core/assembler/ |
| D | lexer.cpp | 22 /* Is this a delimiter ? */ 199 if (FindDelim(curr_line_->buffer[beg]) != Token::Type::ID_BAD) { /* delimiter */ in LexGetType()
|
| D | assembly-parser.cpp | 630 …GetError("Delimiter '}' for the code area is outside a function.", Error::ErrorType::ERR_BAD_BOUND… in ParseAsBraceRight()
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | pandargs_test.cpp | 38 PandArg<arg_list_t> pald("dlist", ref_def_dlist, "Sample delimiter list argument", ":"); 410 // expect list argument without delimiter processed right 426 // expect delimiter list argument processed right 441 // expect delimiter and multiple list argument processed right
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | stacktrace.cpp | 70 pos_ = pos + 1; // skip delimiter in Next()
|