/arkcompiler/ets_runtime/ecmascript/ |
D | js_runtime_options.h | 29 using arg_list_t = std::vector<std::string>; variable 779 arg_list_t GetLogComponents() const in GetLogComponents() 784 void SetLogComponents(arg_list_t value) in SetLogComponents() 794 arg_list_t GetLogDebug() const in GetLogDebug() 799 void SetLogDebug(arg_list_t value) in SetLogDebug() 809 arg_list_t GetLogInfo() const in GetLogInfo() 814 void SetLogInfo(arg_list_t value) in SetLogInfo() 824 arg_list_t GetLogWarning() const in GetLogWarning() 829 void SetLogWarning(arg_list_t value) in SetLogWarning() 839 arg_list_t GetLogError() const in GetLogError() [all …]
|
D | js_runtime_options.cpp | 282 arg_list_t argListStr; in ParseCommand() 1060 void JSRuntimeOptions::ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::st… in ParseListArgParam()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
D | pandargs_test.cpp | 29 static const arg_list_t REF_DEF_DLIST = arg_list_t(); in TEST() 30 static const arg_list_t REF_DEF_LIST = arg_list_t(); in TEST() 38 PandArg<arg_list_t> pald("dlist", REF_DEF_DLIST, "Sample delimiter list argument", ":"); in TEST() 39 PandArg<arg_list_t> pal("list", REF_DEF_LIST, "Sample list argument"); in TEST() 176 arg_list_t refArgDlist = pald.GetValue(); in TEST() 177 arg_list_t refArgList = pal.GetValue(); in TEST() 395 static const arg_list_t REF_LIST = {"list1", "list2", "list3"}; in TEST() 411 static const arg_list_t REF_LIST = {"list1", "list2", "list3", "list4"}; in TEST() 427 static const arg_list_t REF_DLIST = {"dlist1", "dlist2", "dlist3"}; in TEST() 442 … static const arg_list_t REF_LIST = {"dlist1", "dlist2", "list1", "list2", "dlist3", "dlist4"}; in TEST() [all …]
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | pandargs_test.cpp | 29 static const arg_list_t ref_def_dlist = arg_list_t(); 30 static const arg_list_t ref_def_list = arg_list_t(); 38 PandArg<arg_list_t> pald("dlist", ref_def_dlist, "Sample delimiter list argument", ":"); 39 PandArg<arg_list_t> pal("list", ref_def_list, "Sample list argument"); 181 arg_list_t ref_arg_dlist = pald.GetValue(); 182 arg_list_t ref_arg_list = pal.GetValue(); 397 static const arg_list_t ref_list = {"list1", "list2", "list3"}; 413 static const arg_list_t ref_list = {"list1", "list2", "list3", "list4"}; 429 static const arg_list_t ref_dlist = {"dlist1", "dlist2", "dlist3"}; 444 … static const arg_list_t ref_list = {"dlist1", "dlist2", "list1", "list2", "dlist3", "dlist4"}; [all …]
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | pandargs.h | 38 using arg_list_t = std::vector<std::string>; variable 88 … is_same_v<uint32_t, T> || is_same_v<uint64_t, T> || is_same_v<arg_list_t, T>> * = nullptr> 109 … explicit PandArg(const std::string &name, const arg_list_t &default_val, const std::string &desc, in PandArg() 174 } else if constexpr (is_same_v<arg_list_t, T>) { in EvalType() 340 arg_list_t GetRemainder() in GetRemainder() 406 … std::vector<std::string> values_buf = static_cast<PandArg<arg_list_t> *>(i)->GetValue(); in GetRegularArgs() 484 static_cast<PandArg<arg_list_t> *>(tail_arg)->ResetDefaultValue(); in InitDefault() 491 remainder_ = arg_list_t(); in InitDefault() 696 … ParseListArgParam(static_cast<PandArg<arg_list_t> *>(tail_arg), argv_vec_[argv_index_]); in ParseTail() 714 remainder_ = arg_list_t(argv_vec_.begin() + argv_index_, argv_vec_.end()); in ParseRemainder() [all …]
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
D | pandargs.h | 40 using arg_list_t = std::vector<std::string>; variable 90 … is_same_v<uint32_t, T> || is_same_v<uint64_t, T> || is_same_v<arg_list_t, T>> * = nullptr> 111 explicit PandArg(const std::string &name, const arg_list_t &defaultVal, const std::string &desc, in PandArg() 176 } else if constexpr (is_same_v<arg_list_t, T>) { in EvalType() 338 arg_list_t GetRemainder() in GetRemainder() 404 … std::vector<std::string> valuesBuf = static_cast<PandArg<arg_list_t> *>(i)->GetValue(); in GetRegularArgs() 483 static_cast<PandArg<arg_list_t> *>(tailArg)->ResetDefaultValue(); in InitDefault() 490 remainder_ = arg_list_t(); in InitDefault() 696 …argvIndex_ += ParseListArgParam(static_cast<PandArg<arg_list_t> *>(tailArg), argvVec_[argvIndex_]); in ParseTail() 714 …remainder_ = arg_list_t(argvVec_.begin() + static_cast<arg_list_t::iterator::difference_type>(argv… in ParseRemainder() [all …]
|
/arkcompiler/ets_runtime/ecmascript/ohos/tests/ |
D | ohos_test.cpp | 140 arg_list_t pandaFileNames {}; in HWTEST_F_L0() 166 arg_list_t pandaFileNames {}; in HWTEST_F_L0() 189 arg_list_t pandaFileNames {}; in HWTEST_F_L0() 217 arg_list_t pandaFileNames {}; in HWTEST_F_L0() 247 arg_list_t pandaFileNames {}; in HWTEST_F_L0() 277 arg_list_t pandaFileNames {}; in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/quick_fix/ |
D | main.cpp | 102 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in Main() 104 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in Main() 116 arg_list_t entryList = base::StringHelper::SplitString(entry, ":"); in Main()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_manager.cpp | 37 arg_list_t apFileNames = base::StringHelper::SplitString(inFiles, GetFileDelimiter()); in MergeApFiles() 79 arg_list_t pandaFileNames = base::StringHelper::SplitString(inFiles, GetFileDelimiter()); in MergeApFiles()
|
/arkcompiler/ets_runtime/ecmascript/js_vm/ |
D | main.cpp | 58 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in ExecutePandaFile() 60 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in ExecutePandaFile()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | aot_compiler_preprocessor.h | 75 PGOProfilerDecoder &profilerDecoder, arg_list_t &pandaFileNames) in AotCompilerPreprocessor() 148 arg_list_t &pandaFileNames_;
|
D | aot_compiler.cpp | 94 arg_list_t pandaFileNames {}; in Main()
|
/arkcompiler/runtime_core/templates/options/ |
D | options.h.erb | 78 …<%= op.field_name %>.SetValue(<%= op.type == 'std::string' || op.type == 'arg_list_t' ? 'std::move… 105 …<%= op.field_name %>.SetValue(<%= op.type == 'std::string' || op.type == 'arg_list_t' ? 'std::move… 125 % is_string = op.type == 'std::string' || op.type == 'arg_list_t' 129 % if op.type != 'arg_list_t'
|
/arkcompiler/runtime_core/static_core/templates/options/ |
D | options.h.erb | 81 …<%= op.field_name %>.SetValue(<%= op.type == 'std::string' || op.type == 'arg_list_t' ? 'std::move… 108 …<%= op.field_name %>.SetValue(<%= op.type == 'std::string' || op.type == 'arg_list_t' ? 'std::move… 128 % is_string = op.type == 'std::string' || op.type == 'arg_list_t' 132 % if op.type != 'arg_list_t'
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
D | paoc_clusters.h | 150 … using ValueVariant = std::variant<std::string, int, double, bool, arg_list_t, uint32_t, uint64_t>; 185 return ParseOptionValue<arg_list_t>(valueString, option, paParser); in ParseOptionValue() 233 SwapValue<arg_list_t>(option, value); in SwapValue()
|
/arkcompiler/runtime_core/libpandabase/ |
D | README.md | 62 - `arg_list_t` for list argument 64 `arg_list_t` is a type, declared in `pandargs.h` under `panda` namespace, which is an alias for `st… 110 - `arg_list_t GetRemainder()` - returns remainder argument
|
/arkcompiler/runtime_core/static_core/libpandabase/ |
D | README.md | 62 - `arg_list_t` for list argument 64 `arg_list_t` is a type, declared in `pandargs.h` under `panda` namespace, which is an alias for `st… 110 - `arg_list_t GetRemainder()` - returns remainder argument
|
/arkcompiler/runtime_core/static_core/panda/ |
D | panda.cpp | 152 arg_list_t arguments = paParser.GetRemainder(); in Main()
|
/arkcompiler/runtime_core/panda/ |
D | panda.cpp | 177 arg_list_t arguments = pa_parser.GetRemainder(); in Main()
|
/arkcompiler/ets_runtime/ecmascript/ohos/ |
D | ohos_pkg_args.h | 404 …arg_list_t apFileNames = base::StringHelper::SplitString(cOptions.profilerIn_, GetFileDelimiter()); in ParseProfilerPath()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | osr_test.cpp | 59 arg_list_t default_compiler_inlining_blacklist_;
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
D | osr_test.cpp | 63 arg_list_t defaultCompilerInliningBlacklist_;
|