Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dregexcmp.cpp314 fRXPat->fMinMatchLen = minMatchLength(3, fRXPat->fCompiledPat->size()-1); in compile()
413 int32_t op = (int32_t)fRXPat->fCompiledPat->elementAti(savePosition); in doParseActions()
415 op = buildOp(URX_STATE_SAVE, fRXPat->fCompiledPat->size()+1); in doParseActions()
416 fRXPat->fCompiledPat->setElementAt(op, savePosition); in doParseActions()
425 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions()
431 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions()
484 fParenStack.push(fRXPat->fCompiledPat->size()-3, *fStatus); // The first NOP location in doParseActions()
485 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); // The second NOP loc in doParseActions()
518 fParenStack.push(fRXPat->fCompiledPat->size()-2, *fStatus); // The first NOP location in doParseActions()
519 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()
4338 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchChunkAt()
5021 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
5032 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