Home
last modified time | relevance | path

Searched full:matched (Results 1 – 25 of 55) sorted by relevance

123

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dsignature_match_lambda.ets19 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/
Dgen_impl.py137 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/
DRegExp.ets30 /** 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/
Dfile_header.h94 << " 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/
Dexpect_output.txt48 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
Dsharedcheck.ts433 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/
Dorphaned_md.erb16 …e properly formatted assertions, or contain assertions that could not be matched to the specificat…
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/
Dorphaned_md.erb16 …e properly formatted assertions, or contain assertions that could not be matched to the specificat…
/arkcompiler/runtime_core/libabckit/include/cpp/headers/
Dbase_concepts.h49 * @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/
DArkMethod.ts292 * 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/
Dasm_test.cpp135 // 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/
Dets_stubs-inl.h389 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/
Dlowering.h55 * 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()
Dcse.cpp203 // Build the set of matched insts in GlobalCse()
/arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/utils/common/
DCheckerIndex.ts65 logger.error(`${ruleId} is not matched to any checker`);
/arkcompiler/ets_frontend/ets2panda/lsp/src/
Dtodo_comments.cpp124 if (match[i + firstDescriptorCaptureIndex].matched) { in FindMatchedDescriptor()
154 // Find which descriptor matched in ProcessMatchedTodo()
/arkcompiler/ets_frontend/test262/
Dtest-list-test262-other-fastverify-qemu-aot-pgo-built-ins-RegExp-part1.txt54 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/
Dbuiltins_string.cpp1101 …// 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/
Dmir_module.cpp319 bool matched = false; in DumpFunctionList() local
322 matched = true; in DumpFunctionList()
326 if (matched) { in DumpFunctionList()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
Dinfer_flags.cpp107 LLVM_DEBUG(llvm::dbgs() << "Matched simple recurrence '" << *binaryOperator << "'\n"); in RunOnBasicBlock()
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/
DIntlLocaleMatch.cpp311 auto matched = matcher.getBestMatchResult(desired, success); in StdCoreIntlBestFitLocales() local
315 if (matched.getSupportedIndex() < 0) { in StdCoreIntlBestFitLocales()
/arkcompiler/runtime_core/static_core/compiler/docs/
Dcompiler_doc.md155 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/
Dets_method_wrapper.cpp186 // Methods with matched number of arguments might present in base classes in FindSuitableMethod()
/arkcompiler/runtime_core/panda_guard/obfuscate/
Dgraph_analyzer.cpp216 * @param list The instruction type that should be matched
217 * @param targetIns The InstructionInfo that should be matched
/arkcompiler/ets_frontend/ets2panda/util/
Darktsconfig.h83 // Test if absolute path is matched by pattern

123