Lines Matching defs:thisIndex
723 // c. Let nextIndex be AdvanceStringIndex(S, thisIndex, fullUnicode).
889 JSTaggedValue thisIndex =
893 if (thisIndex.IsInt()) {
894 lastIndex = static_cast<uint32_t>(thisIndex.GetInt());
896 JSHandle<JSTaggedValue> thisIndexHandle(thread, thisIndex);
1133 // a. Let thisIndex be ToLength(Get(rx, "lastIndex")).
1134 uint32_t thisIndex = static_cast<uint32_t>(GetLastIndex(thread, thisObj, isFastPath));
1136 // c. Let nextIndex be AdvanceStringIndex(S, thisIndex, fullUnicode).
1137 uint32_t nextIndex = static_cast<uint32_t>(AdvanceStringIndex(inputStr, thisIndex, fullUnicode));
2856 JSTaggedNumber thisIndex = JSTaggedValue::ToLength(thread, lastIndexHandle);
2858 return thisIndex.GetNumber();