| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | signature_match_lambda.ets | 19 return "first catch is matched" 23 return "second catch is matched" 27 return "third catch is matched" 31 return "fourth catch is matched" 37 assertEQ(a.catch(()=>{}),"first catch is matched") 38 assertEQ(a.catch((e:Error|undefined|null)=>{}),"second catch is matched") 39 assertEQ(a.catch((e:Error)=>{}),"second catch is matched") 40 assertEQ(a.catch((e:Error,e2:Error)=>{}),"third catch is matched") 41 assertEQ(a.catch((e:Error,e2:Error,e3:Error)=>{}),"fourth catch is matched")
|
| /arkcompiler/runtime_core/taihe/compiler/taihe/codegen/cpp/ |
| D | gen_impl.py | 137 matched = match.group(0) 140 if matched.startswith(ns): 141 return matched[len(ns) :] 143 if matched.startswith(ns): 144 return matched[len(ns) :] 145 return matched
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | RegExp.ets | 30 /** The original string that was matched against */ 166 * @returns The last matched string if present; otherwise, undefined. 366 * Returns the string against which a regular expression is matched 373 * Returns the string against which a regular expression is matched 380 * Returns the last matched substring 591 let matched = result.$_get(0); 592 let matchLength = matched.getLength(); 600 …let replacement = String.getSubstitution(matched, str, position as int, captures.toArray(), namedC… 640 let matched = result.$_get(0); 641 let matchLength = matched.getLength(); [all …]
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | file_header.h | 94 << " and the source code are matched"; in VerifyVersion() 127 bool matched = strictMatch ? (currVersion == lastVersion) : (currVersion <= lastVersion); in VerifyVersion() local 128 if (!matched) { in VerifyVersion()
|
| /arkcompiler/ets_runtime/test/sharedtest/check/ |
| D | expect_output.txt | 48 Success set prop through accessor with matched type 109 [IC] Fail to set prop through accessor with matched type. err: TypeError: Cannot set sendable prope… 110 [IC] Success set prop through accessor with matched type
|
| D | sharedcheck.ts | 433 print("Success set prop through accessor with matched type"); 435 print("Fail to set prop through accessor with matched type. err: " + error); 687 print("[IC] Success set prop through accessor with matched type"); 689 print("[IC] Fail to set prop through accessor with matched type. err: " + error); 699 print("[IC] Success set prop through accessor with matched type"); 701 print("[IC] Fail to set prop through accessor with matched type. err: " + error);
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/templates/ |
| D | orphaned_md.erb | 16 …e properly formatted assertions, or contain assertions that could not be matched to the specificat…
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/ |
| D | orphaned_md.erb | 16 …e properly formatted assertions, or contain assertions that could not be matched to the specificat…
|
| /arkcompiler/runtime_core/libabckit/include/cpp/headers/ |
| D | base_concepts.h | 49 * @note A general case to be matched (to false) if more specialized case fail 59 …* @note A more specialized case to be matched (to true) if the type expression below is valid for …
|
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/model/ |
| D | ArkMethod.ts | 292 * Get the index of the matched method declare signature among all declare signatures. 293 * The index will be -1 if there is no matched signature found. 295 * @returns -1 or the index of the matched signature. 607 errMsg: 'methodDeclareSignatures and methodDeclareLineCols are not matched.', 613 errMsg: 'methodDeclareSignatures and methodDeclareLineCols are not matched.', 619 errMsg: 'methodSignature and lineCol are not matched.',
|
| /arkcompiler/ets_frontend/ets2panda/test/utils/ |
| D | asm_test.cpp | 135 // Check the fields for the matched annotation name in CheckRecordAnnotations() 204 // Check the fields for the matched annotation name in CheckFunctionAnnotations() 237 // Check the fields for the matched annotation name in CheckFunctionParameterAnnotations() 271 // Check the fields for the matched annotation name in CheckClassFieldAnnotations()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_stubs-inl.h | 389 Method *matched = lookupFromIndex(vtStart); in ResolveCompatibleVMethodInClass() local 390 if (matched == nullptr) { in ResolveCompatibleVMethodInClass() 394 if (lookupFromIndex(matched->GetVTableIndex() + 1) != nullptr) { in ResolveCompatibleVMethodInClass() 398 return matched; in ResolveCompatibleVMethodInClass()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | lowering.h | 55 * To capture operands from matched subtree Operand<Index> should be used, where 230 bool matched = inst->GetOpcode() == OPCODE && inst->GetInputsCount() == 1 && in Capture() local 233 if (matched) { in Capture() 236 return matched; in Capture()
|
| D | cse.cpp | 203 // Build the set of matched insts in GlobalCse()
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/utils/common/ |
| D | CheckerIndex.ts | 65 logger.error(`${ruleId} is not matched to any checker`);
|
| /arkcompiler/ets_frontend/ets2panda/lsp/src/ |
| D | todo_comments.cpp | 124 if (match[i + firstDescriptorCaptureIndex].matched) { in FindMatchedDescriptor() 154 // Find which descriptor matched in ProcessMatchedTodo()
|
| /arkcompiler/ets_frontend/test262/ |
| D | test-list-test262-other-fastverify-qemu-aot-pgo-built-ins-RegExp-part1.txt | 54 test262/data/other_tests/built-ins/RegExp/match-indices/indices-array-matched.js 84 test262/data/other_tests/built-ins/RegExp/prototype/Symbol.replace/result-coerce-matched.js 85 test262/data/other_tests/built-ins/RegExp/prototype/Symbol.replace/result-coerce-matched-global.js
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_string.cpp | 1101 …// unit of the matched substring and let matched be searchString. If no occurrences of searchStrin… in Replace() 1111 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in Replace() 1112 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in Replace() 1125 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in Replace() 1130 // Let tailPos be pos + the number of code units in matched. in Replace() 1236 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in ReplaceAll() 1237 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in ReplaceAll() 1250 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in ReplaceAll() 1256 // Let tailPos be pos + the number of code units in matched. in ReplaceAll() 1286 …DollarAmpersand(EcmaVM *ecmaVm, std::u16string &stringBuilder, const JSHandle<EcmaString> &matched, in ProcessDollarAmpersand() argument [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| D | mir_module.cpp | 319 bool matched = false; in DumpFunctionList() local 322 matched = true; in DumpFunctionList() 326 if (matched) { in DumpFunctionList()
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
| D | infer_flags.cpp | 107 LLVM_DEBUG(llvm::dbgs() << "Matched simple recurrence '" << *binaryOperator << "'\n"); in RunOnBasicBlock()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/ |
| D | IntlLocaleMatch.cpp | 311 auto matched = matcher.getBestMatchResult(desired, success); in StdCoreIntlBestFitLocales() local 315 if (matched.getSupportedIndex() < 0) { in StdCoreIntlBestFitLocales()
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | compiler_doc.md | 155 1. `--compiler-regex` - selects methods with fully-matched qualified name (i.e. 'Class::Method'). 156 2. `--compiler-regex-with-signature` - selects methods with fully-matched qualified name with signa…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
| D | ets_method_wrapper.cpp | 186 // Methods with matched number of arguments might present in base classes in FindSuitableMethod()
|
| /arkcompiler/runtime_core/panda_guard/obfuscate/ |
| D | graph_analyzer.cpp | 216 * @param list The instruction type that should be matched 217 * @param targetIns The InstructionInfo that should be matched
|
| /arkcompiler/ets_frontend/ets2panda/util/ |
| D | arktsconfig.h | 83 // Test if absolute path is matched by pattern
|