Searched defs:RegExpState (Results 1 – 2 of 2) sorted by relevance
36 struct RegExpState { struct37 StateType type_ = STATE_SPLIT;38 uint32_t currentPc_ = 0;39 uint32_t currentStack_ = 0;40 const uint8_t *currentPtr_ = nullptr;41 __extension__ CaptureState *captureResultList_[0]; // NOLINT(modernize-avoid-c-arrays)
25 using RegExpState = RegExpExecutor::RegExpState; typedef