/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
D | ets_string_substring.ets | 16 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/ |
D | RenamePropertiesTransformer.ts | 165 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);
|
D | RenameIdentifierTransformer.ts | 205 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 …]
|
D | RenameFileNameTransformer.ts | 176 let original: string = ''; 177 original = node.text; 178 original = original.replace(/\\/g, '/');
|
/arkcompiler/runtime_core/static_core/compiler/docs/ |
D | loop_unswitch_doc.md | 16 `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…
|
D | loop_unrolling.md | 4 `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…
|
D | constant_folding_doc.md | 13 If instruction have constant inputs, new constant is calculate and input of user of original instru…
|
D | escape_analysis.md | 18 …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/ |
D | etsTypeParameter.cpp | 134 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/ |
D | util.ts | 444 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/ |
D | preparation_step.py | 143 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/ |
D | recipe128.md | 27 // Import what you need from the original module
|
D | recipe59.md | 31 // To mimic the original semantics, you may declare a nullable type
|
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
D | recipe128.md | 27 // Import what you need from the original module
|
D | recipe59.md | 31 // To mimic the original semantics, you may declare a nullable type
|
/arkcompiler/ets_frontend/es2panda/ir/ |
D | astNode.h | 276 void SetOriginal(const AstNode *original) in AST_NODE_REINTERPRET_MAPPING() 278 original_ = original; in AST_NODE_REINTERPRET_MAPPING()
|
/arkcompiler/runtime_core/docs/ |
D | 2022-08-18-isa-changelog.md | 13 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/ |
D | runner_base.py | 218 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/ |
D | intro.rst | 24 #. **Fully supported features**: the original code requires no modification
|
D | guide.rst | 33 The original |TS| code containing the keyword ``var``:
|
/arkcompiler/runtime_core/static_core/ |
D | LICENSE | 44 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/ |
D | LICENSE | 44 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/ |
D | LICENSE | 44 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/ |
D | README.md | 63 - source code of intrusive test (may be based on original test). This code should set test identifi…
|
/arkcompiler/ets_frontend/ |
D | LICENSE | 44 represent, as a whole, an original work of authorship. For the purposes 50 the original version of the Work and any modifications or additions
|