Searched refs:fSets (Results 1 – 9 of 9) sorted by relevance
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 80 List fSets; field in RBBITestMonkey.RBBICharMonkey 128 fSets = new ArrayList(); in RBBICharMonkey() 129 fSets.add(fCRLFSet); in RBBICharMonkey() 130 fSets.add(fControlSet); in RBBICharMonkey() 131 fSets.add(fExtendSet); in RBBICharMonkey() 132 fSets.add(fRegionalIndicatorSet); in RBBICharMonkey() 134 fSets.add(fPrependSet); in RBBICharMonkey() 136 fSets.add(fSpacingSet); in RBBICharMonkey() 137 fSets.add(fHangulSet); in RBBICharMonkey() 138 fSets.add(fAnySet); in RBBICharMonkey() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 83 List fSets; field in RBBITestMonkey.RBBICharMonkey 131 fSets = new ArrayList(); in RBBICharMonkey() 132 fSets.add(fCRLFSet); in RBBICharMonkey() 133 fSets.add(fControlSet); in RBBICharMonkey() 134 fSets.add(fExtendSet); in RBBICharMonkey() 135 fSets.add(fRegionalIndicatorSet); in RBBICharMonkey() 137 fSets.add(fPrependSet); in RBBICharMonkey() 139 fSets.add(fSpacingSet); in RBBICharMonkey() 140 fSets.add(fHangulSet); in RBBICharMonkey() 141 fSets.add(fAnySet); in RBBICharMonkey() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbitst.cpp | 1581 UVector *fSets; member in RBBICharMonkey 1631 fSets = new UVector(status); in RBBICharMonkey() 1632 fSets->addElement(fCRLFSet, status); in RBBICharMonkey() 1633 fSets->addElement(fControlSet, status); in RBBICharMonkey() 1634 fSets->addElement(fExtendSet, status); in RBBICharMonkey() 1635 fSets->addElement(fRegionalIndicatorSet, status); in RBBICharMonkey() 1637 fSets->addElement(fPrependSet, status); in RBBICharMonkey() 1639 fSets->addElement(fSpacingSet, status); in RBBICharMonkey() 1640 fSets->addElement(fHangulSet, status); in RBBICharMonkey() 1641 fSets->addElement(fAnySet, status); in RBBICharMonkey() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | repattrn.cpp | 120 int32_t numSets = other.fSets->size(); in operator =() 130 UnicodeSet *sourceSet = (UnicodeSet *)other.fSets->elementAt(i); in operator =() 136 fSets->addElement(newSet, fDeferredStatus); in operator =() 169 fSets = NULL; in init() 191 fSets = new UVector(fDeferredStatus); in init() 201 if (fCompiledPat == NULL || fGroupMap == NULL || fSets == NULL || in init() 208 fSets->addElement((int32_t)0, fDeferredStatus); in init() 224 for (i=1; i<fSets->size(); i++) { in zap() 226 s = (UnicodeSet *)fSets->elementAt(i); in zap() 231 delete fSets; in zap() [all …]
|
D | regexcmp.cpp | 325 int32_t numSets = fRXPat->fSets->size(); in compile() 334 UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(i); in compile() 2403 int32_t setNumber = fRXPat->fSets->size(); in compileSet() 2404 fRXPat->fSets->addElement(theSet, *fStatus); in compileSet() 2759 U_ASSERT(sn > 0 && sn < fRXPat->fSets->size()); in matchStartType() 2760 const UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(sn); in matchStartType() 2773 U_ASSERT(sn > 0 && sn < fRXPat->fSets->size()); in matchStartType() 2774 const UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(sn); in matchStartType()
|
D | rematch.cpp | 2777 UVector *fSets = fPattern->fSets; in MatchAt() local 3379 U_ASSERT(opValue > 0 && opValue < fSets->size()); in MatchAt() 3387 UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue); in MatchAt() 4126 U_ASSERT(opValue > 0 && opValue < fSets->size()); in MatchAt() 4128 UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue); in MatchAt() 4353 UVector *fSets = fPattern->fSets; in MatchChunkAt() local 4931 U_ASSERT(opValue > 0 && opValue < fSets->size()); in MatchChunkAt() 4943 UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue); in MatchChunkAt() 5626 U_ASSERT(opValue > 0 && opValue < fSets->size()); in MatchChunkAt() 5628 UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue); in MatchChunkAt()
|
/external/skia/gm/ |
D | imagescalealigned.cpp | 20 auto& set = fSets.push_back(); in onOnceBeforeDraw() 109 for (int i = 0; i < fSets.count(); ++i) { in drawSets() 110 auto& set = fSets[i]; in drawSets() 146 SkSTArray<2, ImageSet> fSets; member in ImageScaleAlignedGM
|
/external/skqp/gm/ |
D | imagescalealigned.cpp | 20 auto& set = fSets.push_back(); in onOnceBeforeDraw() 109 for (int i = 0; i < fSets.count(); ++i) { in drawSets() 110 auto& set = fSets[i]; in drawSets() 146 SkSTArray<2, ImageSet> fSets; member in ImageScaleAlignedGM
|
/external/icu/icu4c/source/i18n/unicode/ |
D | regex.h | 593 UVector *fSets; // Any UnicodeSets referenced from the pattern. variable
|