Home
last modified time | relevance | path

Searched refs:original (Results 1 – 25 of 59) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dets_string_substring.ets16 let original: String = new String("abcde");
45 let subs: String = __noinline__SubString(original, 0, original.getLength());
46 if(!runtime.equals(original, subs)) return 1;
47 let subs1: String = __noinline__SubString(original, -1, 100);
48 if(!runtime.equals(original, subs1)) return 2;
49 let subs2: String = original.substring(0, original.getLength());
50 if(!runtime.equals(original, subs2)) return 3;
/arkcompiler/ets_frontend/arkguard/src/transformers/rename/
DRenamePropertiesTransformer.ts165 let original: string = node.text;
166 if (reservedProperties.has(original)) {
170 let mangledName: string = getPropertyName(original);
188 function getPropertyName(original: string): string {
189 if (reservedProperties.has(original)) {
190 return original;
193 const historyName: string = historyMangledTable?.get(original);
194 let mangledName: string = historyName ? historyName : globalMangledTable.get(original);
198 if (reservedProperties.has(tmpName) || tmpName === original) {
229 globalMangledTable.set(original, mangledName);
DRenameIdentifierTransformer.ts205 const original: string = def.name; constant
206 let mangled: string = original;
208 if ((!Reflect.has(def, 'obfuscateAsProperty') && reservedNames.includes(original)) ||
219 const path: string = scope.loc + '#' + original;
225 mangled = getPropertyMangledName(original);
237 function getPropertyMangledName(original: string): string {
238 if (reservedProperties.has(original)) {
239 return original;
242 const historyName: string = historyMangledTable?.get(original);
243 let mangledName: string = historyName ? historyName : globalMangledTable.get(original);
[all …]
DRenameFileNameTransformer.ts176 let original: string = '';
177 original = node.text;
178 original = original.replace(/\\/g, '/');
/arkcompiler/runtime_core/static_core/compiler/docs/
Dloop_unswitch_doc.md16 `Loop Unswitch` starts with original loop and iterates on each new loop (which was created while un…
21 * original branch instructions are replaced with constant conditions corresponding `true` and `fals…
Dloop_unrolling.md4 `Loop unrolling` optimization increases loop body by copying instructions of the original loop body.
32 **Unroll factor** - the number of loop body copies including the original one;
58 3. Clone loop-body with the original loop-backedge `factor` times, but replace edge to the loop-hea…
Dconstant_folding_doc.md13 If instruction have constant inputs, new constant is calculate and input of user of original instru…
Descape_analysis.md18 …te (it can happen, for example, when an instruction is just an alias to original allocation, like …
33 …apping - a map from an instruction in the original method to an in instruction that should replace…
126 ### Difference from original algorithm
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
DetsTypeParameter.cpp134 auto *original = GetOriginal(); in Substitute() local
135 if (auto repl = substitution->find(original); repl != substitution->end()) { in Substitute()
142 if (this != original && ((ContainsNull() && !replType->ContainsNull()) || in Substitute()
/arkcompiler/ets_frontend/ts2panda/src/base/
Dutil.ts444 let original = node.original;
445 while (original) {
446 node = original;
457 original = node.original;
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Dpreparation_step.py143 original = read_file(test_path)
144 match = self.main_regexp.search(original)
167 … result = self.main_regexp.sub(lambda arg: arg.group(0).replace("main", "main_run"), original)
/arkcompiler/ets_frontend/ets2panda/linter-4.2/docs/rules/
Drecipe128.md27 // Import what you need from the original module
Drecipe59.md31 // To mimic the original semantics, you may declare a nullable type
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe128.md27 // Import what you need from the original module
Drecipe59.md31 // To mimic the original semantics, you may declare a nullable type
/arkcompiler/ets_frontend/es2panda/ir/
DastNode.h276 void SetOriginal(const AstNode *original) in AST_NODE_REINTERPRET_MAPPING()
278 original_ = original; in AST_NODE_REINTERPRET_MAPPING()
/arkcompiler/runtime_core/docs/
D2022-08-18-isa-changelog.md13 1. We delete all original java specific opcodes and delete java specific opcode prefix.
30 |<- 16-bit header index ->|<- 8-bit function kind ->|<- 8-bit original access flag ->|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Drunner_base.py218 def _search_duplicates(original: List[str], kind: str) -> None:
219 main_counter = Counter(original)
225 elif len(original) > 0:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/
Dintro.rst24 #. **Fully supported features**: the original code requires no modification
Dguide.rst33 The original |TS| code containing the keyword ``var``:
/arkcompiler/runtime_core/static_core/
DLICENSE44 represent, as a whole, an original work of authorship. For the purposes
50 the original version of the Work and any modifications or additions
/arkcompiler/toolchain/
DLICENSE44 represent, as a whole, an original work of authorship. For the purposes
50 the original version of the Work and any modifications or additions
/arkcompiler/ets_runtime/
DLICENSE44 represent, as a whole, an original work of authorship. For the purposes
50 the original version of the Work and any modifications or additions
/arkcompiler/runtime_core/static_core/runtime/tests/intrusive-tests/
DREADME.md63 - source code of intrusive test (may be based on original test). This code should set test identifi…
/arkcompiler/ets_frontend/
DLICENSE44 represent, as a whole, an original work of authorship. For the purposes
50 the original version of the Work and any modifications or additions

123