Lines Matching defs:captureIndex
1745 uint32_t captureIndex = 1;
1746 while (captureIndex < capturesSize) {
1748 matchResultInfo->GetStartOfCaptureIndex(captureIndex).GetInt());
1750 matchResultInfo->GetEndOfCaptureIndex(captureIndex).GetInt());
1773 captureIndex++;
2060 uint32_t captureIndex = 1;
2063 for (; captureIndex < capturesSize; captureIndex++) {
2065 int32_t captureStartIndex = globalTable->GetStartOfCaptureIndex(captureIndex).GetInt();
2066 int32_t captureEndIndex = globalTable->GetEndOfCaptureIndex(captureIndex).GetInt();
2077 if (captureIndex <= REGEXP_GLOBAL_ARRAY_SIZE) {
2078 globalTable->SetCapture(thread, captureIndex, iValue.GetTaggedValue());
2081 resultElements->Set(thread, captureIndex, iValue);
2085 if (groupArray->GetLength() > captureIndex - 1) {
2086 JSHandle<JSTaggedValue> skey(thread, groupArray->Get(captureIndex - 1));
2106 while (captureIndex <= REGEXP_GLOBAL_ARRAY_SIZE) {
2107 globalTable->SetCapture(thread, captureIndex, emptyString.GetTaggedValue());
2108 ++captureIndex;