Home
last modified time | relevance | path

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

12

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DRegExp.sts26 /** The original string that was matched against */
233 * Returns the string against which a regular expression is matched
240 * Returns the string against which a regular expression is matched
247 * Returns the last matched substring
456 let matched = result.get(0);
457 let matchLength = matched.getLength();
465 …let replacement = String.getSubstitution(matched, str, position as int, captures.toArray(), namedC…
505 let matched = result.get(0);
506 let matchLength = matched.getLength();
519 let replacement = replacer(matched, args.toArray());
/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/ets_runtime/ecmascript/base/
Dfile_header.h95 << " and the source code are matched"; in VerifyVersion()
128 bool matched = strictMatch ? (currVersion == lastVersion) : (currVersion <= lastVersion); in VerifyVersion() local
129 if (!matched) { in VerifyVersion()
/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/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/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/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()
Dloop_idioms.cpp218 std::array<Inst *, 8U> matched = { in CheckLoopIsolation() local
222 for (Inst *inst : matched) { in CheckLoopIsolation()
/arkcompiler/ets_frontend/ets2panda/test/unit/annotations/
Dannotations_emit_test.h128 // Check the fields for the matched annotation name in CheckClassAnnotations()
144 // Check the fields for the matched annotation name in CheckFunctionAnnotations()
/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/runtime_core/panda_guard/obfuscate/
Dgraph_analyzer.cpp160 * @param list The instruction type that should be matched
161 * @param targetIns The InstructionInfo that should be matched
/arkcompiler/ets_frontend/ets2panda/util/
Darktsconfig.h52 // Test if absolute path is matched by pattern
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.cpp1083 …// unit of the matched substring and let matched be searchString. If no occurrences of searchStrin… in Replace()
1093 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in Replace()
1094 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in Replace()
1107 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in Replace()
1112 // Let tailPos be pos + the number of code units in matched. in Replace()
1218 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in ReplaceAll()
1219 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in ReplaceAll()
1232 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in ReplaceAll()
1238 // Let tailPos be pos + the number of code units in matched. in ReplaceAll()
1268 void ProcessDollarAmpersand(std::u16string &stringBuilder, const JSHandle<EcmaString> &matched, boo… in ProcessDollarAmpersand() argument
[all …]
Dbuiltins_string.h146 static JSTaggedValue GetSubstitution(JSThread *thread, const JSHandle<EcmaString> &matched,
/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/plugins/ets/runtime/interop_js/ets_proxy/
Dets_method_wrapper.cpp81 // Methods with matched number of arguments might present in base classes in FindSuitableMethod()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
Dinfer_flags.cpp107 LLVM_DEBUG(llvm::dbgs() << "Matched simple recurrence '" << *binaryOperator << "'\n"); in RunOnBasicBlock()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/
Dutils.cpp53 …oss << " is not matched the current rawheap translator, please use the newest version of the trans… in CheckVersion()
/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/compiler/
Dcompiler.yaml28 A method matches if its qualified name (e.g. 'Foo::bar') is fully matched.
36 A method matches if its full signature (e.g. 'void Foo::bar(i32)') is fully matched.
/arkcompiler/ets_frontend/arkguard/src/utils/
DTransformUtil.ts113 // isPath: containing '**', and '*', '?' can not be matched with '/'.
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dbasics.rst506 case label1: // will be executed if label1 is matched
512 case label3: // will be executed if label2 or label3 is matched
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.h104 * @return: true means matched and callback execute success

12