Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dregexcmp.cpp315 fRXPat->fMinMatchLen = minMatchLength(3, fRXPat->fCompiledPat->size()-1); in compile()
414 int32_t op = (int32_t)fRXPat->fCompiledPat->elementAti(savePosition); in doParseActions()
416 op = buildOp(URX_STATE_SAVE, fRXPat->fCompiledPat->size()+1); in doParseActions()
417 fRXPat->fCompiledPat->setElementAt(op, savePosition); in doParseActions()
426 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions()
432 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions()
485 fParenStack.push(fRXPat->fCompiledPat->size()-3, *fStatus); // The first NOP location in doParseActions()
486 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); // The second NOP loc in doParseActions()
519 fParenStack.push(fRXPat->fCompiledPat->size()-2, *fStatus); // The first NOP location in doParseActions()
520 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); // The second NOP loc in doParseActions()
[all …]
Drepattrn.cpp112 fCompiledPat->assign(*other.fCompiledPat, fDeferredStatus); in operator =()
167 fCompiledPat = 0; in init()
189 fCompiledPat = new UVector64(fDeferredStatus); in init()
201 if (fCompiledPat == NULL || fGroupMap == NULL || fSets == NULL || in init()
221 delete fCompiledPat; in zap()
222 fCompiledPat = NULL; in zap()
692 int32_t op = fCompiledPat->elementAti(index); in dumpOp()
767 int32_t lengthOp = fCompiledPat->elementAti(index+1); in dumpOp()
852 for (index = 0; index<fCompiledPat->size(); index++) { in dumpPattern()
Drematch.cpp2774 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchAt()
3488 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchAt()
3499 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchAt()
4350 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchChunkAt()
5033 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
5044 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
/external/icu/icu4c/source/i18n/unicode/
Dregex.h589 UVector64 *fCompiledPat; // The compiled pattern p-code. variable