Home
last modified time | relevance | path

Searched full:parts (Results 1 – 25 of 85) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/libpandabase/os/
Dfilesystem.cpp90 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/
Dmessages.rb32 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/
Dmessages.rb32 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/
Ddetailed_report.py57 :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/
Dcompiler_bisect.py242 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/
Dlinker.cpp122 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/
Dreserve_sb_buffer_doc.md5 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/ets_frontend/test/scripts/utils/download_sdk_and_image/
Dupdate.py99 parts = output_path.split(os.sep)
100 if len(parts) >= 2:
101 filename = parts[-2]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Ddecorator_value.py158 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_runtime/ecmascript/tests/
Djs_list_format_test.cpp248 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/
Dcatch.sts19 A catch clause consists of two parts:
Dspec_example.sts18 A catch clause consists of two parts:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D19_stdlib.rst25 The Standard Library has two parts: the common part provides |TS| compatibility,
/arkcompiler/ets_frontend/arkguard/src/transformers/rename/
DRenameFileNameTransformer.ts314 * 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/
Dinspector.md1 # 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…
Ddesign-of-interpreter.md7 parts:
62 definitions were defined and used, different parts of instruction description doesn't contradict
145 required parts.
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DETSemitter.cpp535 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()
DETSCompiler.h38 …void GetDynamicNameParts(const ir::CallExpression *expr, ArenaVector<util::StringView> &parts) con…
/arkcompiler/runtime_core/docs/
Ddesign-of-interpreter.md7 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/
DTabPaneApSummary.js359 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/
Dinterfaces.rst19 to define contracts between various parts of code.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/
DREADME.MD21 …sponding `CMakeLists.txt` file. In most cases, it is located in the suite parts' directory (e.g., …
/arkcompiler/runtime_core/static_core/runtime/mem/
Dmem_stats.h102 // make groups of different parts of the VM (JIT, interpreter, etc)
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dglobal.cpp30 * each function in Run() is a optimization. mainly include 2 parts:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
DREADME.md25 Reference-defines tests consist of two parts: `match` pattern and `define` pattern.

1234