Searched refs:fCompiledPat (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | regexcmp.cpp | 311 fRXPat->fMinMatchLen = minMatchLength(3, fRXPat->fCompiledPat->size()-1); in compile() 410 int32_t op = (int32_t)fRXPat->fCompiledPat->elementAti(savePosition); in doParseActions() 412 op = buildOp(URX_STATE_SAVE, fRXPat->fCompiledPat->size()+1); in doParseActions() 413 fRXPat->fCompiledPat->setElementAt(op, savePosition); in doParseActions() 422 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions() 428 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); in doParseActions() 481 fParenStack.push(fRXPat->fCompiledPat->size()-3, *fStatus); // The first NOP location in doParseActions() 482 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); // The second NOP loc in doParseActions() 515 fParenStack.push(fRXPat->fCompiledPat->size()-2, *fStatus); // The first NOP location in doParseActions() 516 fParenStack.push(fRXPat->fCompiledPat->size()-1, *fStatus); // The second NOP loc in doParseActions() [all …]
|
D | repattrn.cpp | 108 fCompiledPat->assign(*other.fCompiledPat, fDeferredStatus); in operator =() 163 fCompiledPat = 0; in init() 185 fCompiledPat = new UVector64(fDeferredStatus); in init() 197 if (fCompiledPat == NULL || fGroupMap == NULL || fSets == NULL || in init() 217 delete fCompiledPat; in zap() 218 fCompiledPat = NULL; in zap() 689 int32_t op = fCompiledPat->elementAti(index); in dumpOp() 760 int32_t lengthOp = fCompiledPat->elementAti(index+1); in dumpOp() 881 for (index = 0; index<fCompiledPat->size(); index++) { in dumpPattern()
|
D | rematch.cpp | 2777 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchAt() 3487 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchAt() 3498 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchAt() 4338 int64_t *pat = fPattern->fCompiledPat->getBuffer(); in MatchChunkAt() 5017 U_ASSERT(opValue < fPattern->fCompiledPat->size()); in MatchChunkAt() 5028 U_ASSERT(opValue > 0 && opValue < fPattern->fCompiledPat->size()); in MatchChunkAt()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | regex.h | 587 UVector64 *fCompiledPat; // The compiled pattern p-code. variable
|