Home
last modified time | relevance | path

Searched refs:fCompiledPat (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/i18n/
Dregexcmp.cpp317 fRXPat->fMinMatchLen = minMatchLength(3, fRXPat->fCompiledPat->size()-1); in compile()
371 fRXPat->fCompiledPat->addElement(URX_BUILD(URX_STATE_SAVE, 2), *fStatus); in doParseActions()
372 fRXPat->fCompiledPat->addElement(URX_BUILD(URX_JMP, 3), *fStatus); in doParseActions()
373 fRXPat->fCompiledPat->addElement(URX_BUILD(URX_FAIL, 0), *fStatus); in doParseActions()
396 fRXPat->fCompiledPat->addElement(URX_BUILD(URX_END, 0), *fStatus); in doParseActions()
416 int32_t op = (int32_t)fRXPat->fCompiledPat->elementAti(savePosition); in doParseActions()
418 op = URX_BUILD(URX_STATE_SAVE, fRXPat->fCompiledPat->size()+1); in doParseActions()
419 fRXPat->fCompiledPat->setElementAt(op, savePosition); in doParseActions()
425 fRXPat->fCompiledPat->addElement(op, *fStatus); in doParseActions()
429 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions()
[all …]
Drepattrn.cpp100 fCompiledPat->assign(*other.fCompiledPat, fDeferredStatus); in operator =()
140 fCompiledPat = 0; in init()
162 fCompiledPat = new UVector64(fDeferredStatus); in init()
170 if (fCompiledPat == NULL || fGroupMap == NULL || fSets == NULL || in init()
187 delete fCompiledPat; in zap()
188 fCompiledPat = NULL; in zap()
628 int32_t op = fCompiledPat->elementAti(index); in dumpOp()
696 int32_t lengthOp = fCompiledPat->elementAti(index+1); in dumpOp()
802 for (index = 0; index<This->fCompiledPat->size(); index++) { in RegexPatternDump()
Drematch.cpp2796 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchAt()
3452 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchAt()
3463 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchAt()
4288 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchChunkAt()
4911 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
4922 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
/external/icu4c/i18n/unicode/
Dregex.h564 UVector64 *fCompiledPat; // The compiled pattern p-code. variable