/external/icu/icu4c/source/common/ |
chariter.cpp | 23 CharacterIterator::CharacterIterator() 27 CharacterIterator::CharacterIterator(int32_t length) 34 CharacterIterator::CharacterIterator(int32_t length, int32_t position) 46 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) 68 CharacterIterator::~CharacterIterator() {} [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
LanguageBreakEngine.java | 12 import java.text.CharacterIterator; 35 int findBreaks(CharacterIterator text, int startPos, int endPos,
|
DictionaryMatcher.java | 12 import java.text.CharacterIterator; 22 * @param text A CharacterIterator representing the text. The iterator is 31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, 34 public int matches(CharacterIterator text, int maxLength, int[] lengths,
|
SearchIterator.java | 13 import java.text.CharacterIterator; 67 * @see #setTarget(CharacterIterator) 70 protected CharacterIterator targetText; 97 CharacterIterator text() { 101 void setTarget(CharacterIterator text) { 227 search_.breakIter().setText((CharacterIterator)search_.text().clone()); 242 public void setTarget(CharacterIterator text) 257 search_.breakIter().setText((CharacterIterator)text.clone()); 260 search_.internalBreakIter_.setText((CharacterIterator)text.clone()); 336 public CharacterIterator getTarget() [all...] |
DictionaryBreakEngine.java | 12 import java.text.CharacterIterator; 41 public int candidates(CharacterIterator fIter, DictionaryMatcher dict, int rangeEnd) { 60 public int acceptMarked(CharacterIterator fIter) { 67 public boolean backUp(CharacterIterator fIter) { 185 public int findBreaks(CharacterIterator text, int startPos, int endPos, 226 abstract int divideUpDictionaryRange(CharacterIterator text,
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
LanguageBreakEngine.java | 11 import java.text.CharacterIterator; 34 int findBreaks(CharacterIterator text, int startPos, int endPos,
|
DictionaryMatcher.java | 11 import java.text.CharacterIterator; 21 * @param text A CharacterIterator representing the text. The iterator is 30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, 33 public int matches(CharacterIterator text, int maxLength, int[] lengths,
|
/external/icu/icu4c/source/common/unicode/ |
chariter.h | 138 * DO NOT CONSIDER IT PART OF CHARACTERITERATOR'S API! 196 * CharacterIterator classes but extends them significantly: 198 * <li>CharacterIterator is now a subclass of ForwardCharacterIterator.</li> 221 * void forward1(CharacterIterator &it) { 232 * void forward2(CharacterIterator &it) { 234 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) { 241 * void backward1(CharacterIterator &it) { 251 * void backward2(CharacterIterator &it) { 253 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) { 261 * void random(CharacterIterator &it) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
CharacterIteratorWrapper.java | 12 import java.text.CharacterIterator; 17 * This class is a wrapper around CharacterIterator and implements the 25 private CharacterIterator iterator; 28 public CharacterIteratorWrapper(CharacterIterator iter){ 41 if(c==CharacterIterator.DONE){ 70 if(i==CharacterIterator.DONE){ 82 if(i==CharacterIterator.DONE){ 119 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) { 135 result.iterator = (CharacterIterator)this.iterator.clone(); 160 public CharacterIterator getCharacterIterator() [all...] |
CharacterIteration.java | 12 import java.text.CharacterIterator; 35 public static int next32(CharacterIterator ci) { 71 public static int nextTrail32(CharacterIterator ci, int lead) { 72 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { 89 public static int previous32(CharacterIterator ci) { 108 public static int current32(CharacterIterator ci) { 123 if (lead == CharacterIterator.DONE) {
|
UCharacterIteratorWrapper.java | 13 import java.text.CharacterIterator; 19 * CharacterIterator protocol 23 public class UCharacterIteratorWrapper implements CharacterIterator{
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CharacterIteratorWrapper.java | 11 import java.text.CharacterIterator; 16 * This class is a wrapper around CharacterIterator and implements the 23 private CharacterIterator iterator; 26 public CharacterIteratorWrapper(CharacterIterator iter){ 39 if(c==CharacterIterator.DONE){ 68 if(i==CharacterIterator.DONE){ 80 if(i==CharacterIterator.DONE){ 117 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) { 133 result.iterator = (CharacterIterator)this.iterator.clone(); 158 public CharacterIterator getCharacterIterator() [all...] |
CharacterIteration.java | 11 import java.text.CharacterIterator; 31 public static int next32(CharacterIterator ci) { 67 public static int nextTrail32(CharacterIterator ci, int lead) { 68 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { 85 public static int previous32(CharacterIterator ci) { 104 public static int current32(CharacterIterator ci) { 119 if (lead == CharacterIterator.DONE) {
|
UCharacterIteratorWrapper.java | 12 import java.text.CharacterIterator; 18 * CharacterIterator protocol 21 public class UCharacterIteratorWrapper implements CharacterIterator{
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/impl/ |
CSCharacterIteratorTest.java | 7 import java.text.CharacterIterator; 28 CharacterIterator csci = new CSCharacterIterator(cs); 29 CharacterIterator sci = new StringCharacterIterator(text); 43 CharacterIterator clci = (CharacterIterator)csci.clone();
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/ |
CSCharacterIteratorTest.java | 6 import java.text.CharacterIterator; 25 CharacterIterator csci = new CSCharacterIterator(cs); 26 CharacterIterator sci = new StringCharacterIterator(text); 40 CharacterIterator clci = (CharacterIterator)csci.clone();
|
/external/icu/icu4c/source/test/intltest/ |
citrtest.h | 16 * Some tests for CharacterIterator and StringCharacterIterator 42 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
|
citrtest.cpp | 28 class SCharacterIterator : public CharacterIterator { 60 virtual CharacterIterator* clone(void) const { 81 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ 104 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin){ 201 CharacterIterator* test1 = new StringCharacterIterator(testText); 202 CharacterIterator* test1b= new StringCharacterIterator(testText, -1); 203 CharacterIterator* test1c= new StringCharacterIterator(testText, 100); 204 CharacterIterator* test1d= new StringCharacterIterator(testText, -2, 100, 5); 205 CharacterIterator* test1e= new StringCharacterIterator(testText, 100, 20, 5); 206 CharacterIterator* test2 = new StringCharacterIterator(testText, 5) [all...] |
/external/icu/icu4c/source/samples/citer/ |
citer.cpp | 26 using icu::CharacterIterator; 40 } else if (ch == CharacterIterator::DONE) { 41 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 94 if (c == CharacterIterator::DONE && i != u_strlen(testText)) { 106 if (c != CharacterIterator::DONE) { 114 } while (c != CharacterIterator::DONE); 157 if (c == CharacterIterator::DONE) { 169 if (c != CharacterIterator::DONE) { 176 } while (c != CharacterIterator::DONE);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
AbstractBreakIteratorTests.java | 6 import java.text.CharacterIterator; 78 public CharacterIterator getText() { 83 public void setText(CharacterIterator newText) {
|
/external/icu/icu4c/source/i18n/unicode/ |
stsearch.h | 199 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 201 * in <tt>CharacterIterator</tt> will be used as it is. 218 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 228 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 230 * in <tt>CharacterIterator</tt> will be used as it is. 248 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 347 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 349 * in <tt>CharacterIterator</tt> will be used as it is. 355 virtual void setText(CharacterIterator &text, UErrorCode &status);
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
SearchIterator.java | 12 import java.text.CharacterIterator; 68 * @see #setTarget(CharacterIterator) 72 protected CharacterIterator targetText; 100 CharacterIterator text() { 104 void setTarget(CharacterIterator text) { 234 search_.breakIter().setText((CharacterIterator)search_.text().clone()); 250 public void setTarget(CharacterIterator text) 265 search_.breakIter().setText((CharacterIterator)text.clone()); 268 search_.internalBreakIter_.setText((CharacterIterator)text.clone()); 349 public CharacterIterator getTarget() [all...] |
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
BreakIteratorICU.java | 11 import java.text.CharacterIterator; 58 public CharacterIterator getText() { 93 public void setText(CharacterIterator newText) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
AbstractBreakIteratorTests.java | 5 import java.text.CharacterIterator; 75 public CharacterIterator getText() { 80 public void setText(CharacterIterator newText) {
|
/external/sfntly/cpp/src/sfntly/table/core/ |
cmap_table.h | 106 // The cmap offers CharacterIterator to allow iteration over 162 // The fully qualified name is CMapTable::CMap::CharacterIterator 163 class CharacterIterator { 165 virtual ~CharacterIterator() {} 173 // a CharacterIterator. 174 CharacterIterator() {} 180 virtual CMap::CharacterIterator* Iterator() = 0; 243 // The fully qualified name is CMapTable::CMapFormat0::CharacterIterator 244 class CharacterIterator : public CMap::CharacterIterator { [all...] |