Home
last modified time | relevance | path

Searched refs:JSRegExpIterator (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_regexp_iterator.cpp28 JSTaggedValue JSRegExpIterator::Next(EcmaRuntimeCallInfo *argv) in Next()
44 JSHandle<JSRegExpIterator> jsIterator = JSHandle<JSRegExpIterator>::Cast(input); in Next()
109 JSHandle<JSTaggedValue> JSRegExpIterator::CreateRegExpStringIterator(JSThread *thread, in CreateRegExpStringIterator()
Djs_regexp_iterator.h23 class JSRegExpIterator : public JSObject {
25 CAST_CHECK(JSRegExpIterator, IsJSRegExpIterator);
Dobject_factory.h61 class JSRegExpIterator; variable
400 JSHandle<JSRegExpIterator> NewJSRegExpIterator(const JSHandle<JSTaggedValue> &matcher,
Dglobal_env_constants.cpp233 … factory->NewEcmaHClass(hClass, JSRegExpIterator::SIZE, JSType::JS_REG_EXP_ITERATOR)); in InitRootsClass()
Ddump.cpp873 JSRegExpIterator::Cast(obj)->Dump(os); in DumpObject()
1956 void JSRegExpIterator::Dump(std::ostream &os) const in Dump()
4692 void JSRegExpIterator::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) const in DumpForSnapshot()
Dobject_factory.cpp2716 JSHandle<JSRegExpIterator> ObjectFactory::NewJSRegExpIterator(const JSHandle<JSTaggedValue> &matche… in NewJSRegExpIterator()
2725 JSHandle<JSRegExpIterator> iter(NewJSObject(hclassHandle)); in NewJSRegExpIterator()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_regexp_iterator_test.cpp83 JSRegExpIterator::CreateRegExpStringIterator(thread, matchHandle, inputStr, true, false); in HWTEST_F_L0()
86 JSRegExpIterator::CreateRegExpStringIterator(thread, matchHandle, inputStr, false, false); in HWTEST_F_L0()
110 …JSHandle<JSRegExpIterator> regExpIterator(thread, reinterpret_cast<JSRegExpIterator *>(iteratorVal… in HWTEST_F_L0()
119 JSTaggedValue result = JSRegExpIterator::Next(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
Ddump_test.cpp639 CHECK_DUMP_FIELDS(JSObject::SIZE, JSRegExpIterator::SIZE, 3U); in HWTEST_F_L0()
642 JSHandle<JSRegExpIterator> jsRegExpIter = in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h265 JSRegExpIterator::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp618 reinterpret_cast<uintptr_t>(JSRegExpIterator::Next),
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.cpp583 return JSRegExpIterator::CreateRegExpStringIterator(thread, matcherHandle, in MatchAll()
Dbuiltins.cpp1973 SetFunction(env, regExpIteratorPrototype, "next", JSRegExpIterator::Next, FunctionLength::ZERO); in InitializeRegexpIterator()