Searched refs:JSRegExpIterator (Results 1 – 12 of 12) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_regexp_iterator.cpp | 28 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()
|
| D | js_regexp_iterator.h | 23 class JSRegExpIterator : public JSObject { 25 CAST_CHECK(JSRegExpIterator, IsJSRegExpIterator);
|
| D | global_env_constants.cpp | 250 … factory->NewEcmaHClass(hClass, JSRegExpIterator::SIZE, JSType::JS_REG_EXP_ITERATOR)); in InitRootsClass()
|
| D | object_factory.h | 63 class JSRegExpIterator; variable 432 JSHandle<JSRegExpIterator> NewJSRegExpIterator(const JSHandle<JSTaggedValue> &matcher,
|
| D | dump.cpp | 960 JSRegExpIterator::Cast(obj)->Dump(os); in DumpObject() 2080 void JSRegExpIterator::Dump(std::ostream &os) const in Dump() 5108 void JSRegExpIterator::DumpForSnapshot(std::vector<Reference> &vec) const in DumpForSnapshot()
|
| D | object_factory.cpp | 3163 JSHandle<JSRegExpIterator> ObjectFactory::NewJSRegExpIterator(const JSHandle<JSTaggedValue> &matche… in NewJSRegExpIterator() 3172 JSHandle<JSRegExpIterator> iter(NewJSObject(hclassHandle)); in NewJSRegExpIterator()
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_regexp_iterator_test.cpp | 83 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()
|
| D | dump_test.cpp | 672 CHECK_DUMP_FIELDS(JSObject::SIZE, JSRegExpIterator::SIZE, 3U); in HWTEST_F_L0() 675 JSHandle<JSRegExpIterator> jsRegExpIter = in HWTEST_F_L0()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | object_xray.h | 288 JSRegExpIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
|
| /arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
| D | snapshot_processor.cpp | 620 reinterpret_cast<uintptr_t>(JSRegExpIterator::Next),
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_regexp.cpp | 737 return JSRegExpIterator::CreateRegExpStringIterator(thread, matcherHandle, in MatchAll()
|
| D | builtins.cpp | 1959 SetFunction(env, regExpIteratorPrototype, "next", JSRegExpIterator::Next, FunctionLength::ZERO); in InitializeRegexpIterator()
|