Home
last modified time | relevance | path

Searched refs:matchResult (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_regexp_iterator_test.cpp127 JSHandle<JSTaggedValue> matchResult = JSIterator::IteratorValue(thread, matchObj); in HWTEST_F_L0() local
128 … JSHandle<JSTaggedValue> zeroHandle(JSObject::GetProperty(thread, matchResult, zero).GetValue()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.cpp200 JSTaggedValue matchResult = RegExpExec(thread, thisObj, string, false); in Test() local
204 return GetTaggedBoolean(!matchResult.IsNull()); in Test()
659 …RegExpExecutor::MatchResult matchResult = Matcher(thread, regexp, strBuffer, inputLength, lastInde… in RegExpReplaceFast() local
660 if (!matchResult.isSuccess_) { in RegExpReplaceFast()
669 uint32_t startIndex = matchResult.index_; in RegExpReplaceFast()
670 uint32_t endIndex = matchResult.endIndex_; in RegExpReplaceFast()
1451 …RegExpExecutor::MatchResult matchResult = Matcher(thread, regexp, strBuffer, stringLength, lastInd… in RegExpBuiltinExec() local
1452 if (!matchResult.isSuccess_) { in RegExpBuiltinExec()
1462 uint32_t endIndex = matchResult.endIndex_; in RegExpBuiltinExec()
1470 uint32_t capturesSize = matchResult.captures_.size(); in RegExpBuiltinExec()
[all …]
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_regexp_test.cpp433 JSHandle<JSTaggedValue> matchResult(thread, matchResults); in HWTEST_F_L0() local
437 JSHandle<JSTaggedValue> zeroHandle(JSObject::GetProperty(thread, matchResult, zero).GetValue()); in HWTEST_F_L0()