| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | filesystem.cpp | 90 std::vector<std::string_view> parts; in NormalizePath() local 114 if (parts.empty()) { in NormalizePath() 115 parts.emplace_back(""); in NormalizePath() 119 if (!parts.back().empty()) { in NormalizePath() 120 parts.pop_back(); in NormalizePath() 125 parts.push_back(sv); in NormalizePath() 129 parts.push_back(sv); in NormalizePath() 133 ASSERT(!parts.empty()); in NormalizePath() 135 ss << parts[i++]; in NormalizePath() 137 while (i < parts.size()) { in NormalizePath() [all …]
|
| /arkcompiler/runtime_core/templates/ |
| D | messages.rb | 32 parts = [] 36 parts << escape_string_literal(str_part) unless str_part.empty? 39 parts << expr_part 44 parts << escape_string_literal(scanner.rest) 48 parts.join(' << ')
|
| /arkcompiler/runtime_core/static_core/templates/ |
| D | messages.rb | 32 parts = [] 36 parts << escape_string_literal(str_part) unless str_part.empty? 39 parts << expr_part 44 parts << escape_string_literal(scanner.rest) 48 parts.join(' << ')
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
| D | detailed_report.py | 57 :return: list of iterative partial parts 61 parts = test_id.split("/")[:-1] 62 if len(parts) < 2: 63 return parts 66 for part in parts:
|
| /arkcompiler/runtime_core/static_core/scripts/ |
| D | compiler_bisect.py | 242 parts = re.split('(?<!_)_(?!_*$)', method) 243 if parts[-1] in ['_ctor_', '_cctor_']: 244 parts[-1] = f'<{parts[-1].strip("_")}>' 247 if parts[0] == 'inlined': 249 parts.pop(0) 250 qname = '::'.join(('.'.join(parts[:-1]), parts[-1]))
|
| /arkcompiler/runtime_core/static_core/static_linker/ |
| D | linker.cpp | 122 constexpr uint64_t PARTS = 30; in operator <<() local 123 auto dots = s.elapsed.total == 0 ? 0 : t * PARTS / s.elapsed.total; in operator <<() 126 std::fill_n(std::ostream_iterator<CharType>(o), PARTS - dots, ' '); in operator <<()
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | reserve_sb_buffer_doc.md | 5 StringBuilder class implemented to store parts of a string being constructed in an internal buffer … 9 Sometimes, it is possible to calculate nessesary space to store all the intermediate parts in advan…
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
| D | decorator_value.py | 158 parts = [p.strip() for p in cli_value.split(",") if p.strip().startswith(prop)] 159 if len(parts) == 0: 161 prop_parts = [p.strip() for p in parts[0].split("=")]
|
| /arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
| D | update.py | 99 parts = output_path.split(os.sep) 100 if len(parts) >= 2: 101 filename = parts[-2]
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_list_format_test.cpp | 248 JSHandle<JSArray> parts = JSListFormat::FormatListToParts(thread, jsFormatter, valueArr); in HWTEST_F_L0() local 249 …auto element1 = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(parts), 0).GetVal… in HWTEST_F_L0() 250 …auto literal1 = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(parts), 1).GetVal… in HWTEST_F_L0() 251 …auto element2 = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(parts), 2).GetVal… in HWTEST_F_L0() 252 …auto literal2 = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(parts), 3).GetVal… in HWTEST_F_L0() 253 …auto element3 = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(parts), 4).GetVal… in HWTEST_F_L0()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/01.catch_clauses/ |
| D | catch.sts | 19 A catch clause consists of two parts:
|
| D | spec_example.sts | 18 A catch clause consists of two parts:
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 19_stdlib.rst | 25 The Standard Library has two parts: the common part provides |TS| compatibility,
|
| /arkcompiler/ets_frontend/arkguard/src/transformers/rename/ |
| D | RenameFileNameTransformer.ts | 314 * fixed parts in hap/hsp: @bundle:${bundleName}/${moduleName}/ 315 * fixed parts in har: @bundle:${bundleName}/${moduleName}@${harName}/ 318 * we do not mangle fixed parts. 321 …prefixSegments: string[] = originalOhmUrlSegments.slice(0, 2); // 2: length of fixed parts in array 322 …const urlSegments: string[] = originalOhmUrlSegments.slice(2); // 2: index of mangled parts in arr…
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | inspector.md | 1 # Main parts description 3 Two big parts, the `Inspector` and `InspectorServer` classes, isolate debugger and server logic res… 99 The diagrams below are split in two parts (`Inspector` and `InspectorServer` perspectives) for simp…
|
| D | design-of-interpreter.md | 7 parts: 62 definitions were defined and used, different parts of instruction description doesn't contradict 145 required parts.
|
| /arkcompiler/ets_frontend/ets2panda/compiler/core/ |
| D | ETSemitter.cpp | 535 std::vector<pandasm::ScalarValue> parts {}; in GenAnnotationSignature() local 546 parts.emplace_back(pandasm::ScalarValue::Create<pandasm::Value::Type::STRING>(ss.str())); in GenAnnotationSignature() 560 parts.emplace_back(pandasm::ScalarValue::Create<pandasm::Value::Type::STRING>(ss.str())); in GenAnnotationSignature() 565 parts.emplace_back(pandasm::ScalarValue::Create<pandasm::Value::Type::STRING>(ss.str())); in GenAnnotationSignature() 577 parts.emplace_back(pandasm::ScalarValue::Create<pandasm::Value::Type::STRING>(ss.str())); in GenAnnotationSignature() 583 std::make_unique<pandasm::ArrayValue>(pandasm::Value::Type::STRING, std::move(parts))); in GenAnnotationSignature() 682 for (auto &[parts, startIdx] : callNames) { in GenAnnotationDynamicCall() 684 for (const auto &str : parts) { in GenAnnotationDynamicCall()
|
| D | ETSCompiler.h | 38 …void GetDynamicNameParts(const ir::CallExpression *expr, ArenaVector<util::StringView> &parts) con…
|
| /arkcompiler/runtime_core/docs/ |
| D | design-of-interpreter.md | 7 parts: 62 definitions were defined and used, different parts of instruction description doesn't contradict 145 required parts.
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/sheet/ |
| D | TabPaneApSummary.js | 359 let parts = item.abcFile.split(/\/|\\/); 360 let fileName = parts.length > 1 ? parts[parts.length - 1] : item.abcFile;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/ |
| D | interfaces.rst | 19 to define contracts between various parts of code.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/ |
| D | README.MD | 21 …sponding `CMakeLists.txt` file. In most cases, it is located in the suite parts' directory (e.g., …
|
| /arkcompiler/runtime_core/static_core/runtime/mem/ |
| D | mem_stats.h | 102 // make groups of different parts of the VM (JIT, interpreter, etc)
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/ |
| D | README.md | 25 Reference-defines tests consist of two parts: `match` pattern and `define` pattern.
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | global.cpp | 30 * each function in Run() is a optimization. mainly include 2 parts:
|