/external/icu4c/common/ |
chariter.cpp | 21 CharacterIterator::CharacterIterator() 25 CharacterIterator::CharacterIterator(int32_t length) 32 CharacterIterator::CharacterIterator(int32_t length, int32_t position) 44 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) 66 CharacterIterator::~CharacterIterator() {} [all...] |
uchriter.cpp | 20 : CharacterIterator(), 28 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0), 36 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, position), 46 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position), 52 : CharacterIterator(that), 59 CharacterIterator::operator=(that); 90 CharacterIterator* 295 UCharCharacterIterator::move(int32_t delta, CharacterIterator::EOrigin origin) { 320 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) {
|
/external/icu4c/common/unicode/ |
chariter.h | 136 * DO NOT CONSIDER IT PART OF CHARACTERITERATOR'S API! 194 * CharacterIterator classes but extends them significantly: 196 * <li>CharacterIterator is now a subclass of ForwardCharacterIterator.</li> 219 * void forward1(CharacterIterator &it) { 230 * void forward2(CharacterIterator &it) { 232 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) { 239 * void backward1(CharacterIterator &it) { 249 * void backward2(CharacterIterator &it) { 251 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) { 259 * void random(CharacterIterator &it) [all...] |
schriter.h | 32 * A concrete subclass of CharacterIterator that iterates over the 39 * @see CharacterIterator 131 virtual CharacterIterator* clone(void) const;
|
uchriter.h | 22 * A concrete subclass of CharacterIterator that iterates over the 29 * @see CharacterIterator 33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { 130 * @return the CharacterIterator newly created 133 virtual CharacterIterator* clone(void) const;
|
/external/chromium_org/third_party/icu/source/common/ |
chariter.cpp | 21 CharacterIterator::CharacterIterator() 25 CharacterIterator::CharacterIterator(int32_t length) 32 CharacterIterator::CharacterIterator(int32_t length, int32_t position) 44 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) 66 CharacterIterator::CharacterIterator(const CharacterIterator &that) [all...] |
uchriter.cpp | 19 : CharacterIterator(), 27 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0), 35 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, position), 45 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position), 51 : CharacterIterator(that), 58 CharacterIterator::operator=(that); 89 CharacterIterator* 294 UCharCharacterIterator::move(int32_t delta, CharacterIterator::EOrigin origin) { 319 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) {
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
chariter.h | 136 * DO NOT CONSIDER IT PART OF CHARACTERITERATOR'S API! 194 * CharacterIterator classes but extends them significantly: 196 * <li>CharacterIterator is now a subclass of ForwardCharacterIterator.</li> 219 * void forward1(CharacterIterator &it) { 230 * void forward2(CharacterIterator &it) { 232 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) { 239 * void backward1(CharacterIterator &it) { 249 * void backward2(CharacterIterator &it) { 251 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) { 259 * void random(CharacterIterator &it) [all...] |
schriter.h | 32 * A concrete subclass of CharacterIterator that iterates over the 39 * @see CharacterIterator 131 virtual CharacterIterator* clone(void) const;
|
uchriter.h | 22 * A concrete subclass of CharacterIterator that iterates over the 29 * @see CharacterIterator 33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { 130 * @return the CharacterIterator newly created 133 virtual CharacterIterator* clone(void) const;
|
/libcore/luni/src/main/java/java/text/ |
CharacterIterator.java | 25 public interface CharacterIterator extends Cloneable { 34 * Returns a new {@code CharacterIterator} with the same properties.
|
RuleBasedBreakIterator.java | 51 CharacterIterator it = wrapped.getText(); 58 @Override public CharacterIterator getText() { 78 @Override public void setText(CharacterIterator newText) {
|
BreakIterator.java | 82 * {@link CharacterIterator}, which makes it possible to use {@code 84 * {@code CharacterIterator} interface. 223 * @see CharacterIterator 423 * Returns a {@code CharacterIterator} which represents the text being 429 * @return a {@code CharacterIterator} which represents the text being 432 public abstract CharacterIterator getText(); 472 * Sets the new text to be analyzed by the given {@code CharacterIterator}. 477 * the {@code CharacterIterator} referring to the text to be 480 public abstract void setText(CharacterIterator newText);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
citrtest.h | 14 * Some tests for CharacterIterator and StringCharacterIterator 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
|
citrtest.cpp | 24 class SCharacterIterator : public CharacterIterator { 56 virtual CharacterIterator* clone(void) const { 77 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ 100 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin){ 199 CharacterIterator* test1 = new StringCharacterIterator(testText); 200 CharacterIterator* test1b= new StringCharacterIterator(testText, -1); 201 CharacterIterator* test1c= new StringCharacterIterator(testText, 100); 202 CharacterIterator* test1d= new StringCharacterIterator(testText, -2, 100, 5); 203 CharacterIterator* test1e= new StringCharacterIterator(testText, 100, 20, 5); 204 CharacterIterator* test2 = new StringCharacterIterator(testText, 5) [all...] |
/external/icu4c/test/intltest/ |
citrtest.h | 14 * Some tests for CharacterIterator and StringCharacterIterator 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
|
citrtest.cpp | 25 class SCharacterIterator : public CharacterIterator { 57 virtual CharacterIterator* clone(void) const { 78 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ 101 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin){ 200 CharacterIterator* test1 = new StringCharacterIterator(testText); 201 CharacterIterator* test1b= new StringCharacterIterator(testText, -1); 202 CharacterIterator* test1c= new StringCharacterIterator(testText, 100); 203 CharacterIterator* test1d= new StringCharacterIterator(testText, -2, 100, 5); 204 CharacterIterator* test1e= new StringCharacterIterator(testText, 100, 20, 5); 205 CharacterIterator* test2 = new StringCharacterIterator(testText, 5) [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
stsearch.h | 203 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 205 * in <tt>CharacterIterator</tt> will be used as it is. 222 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 232 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 234 * in <tt>CharacterIterator</tt> will be used as it is. 252 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 351 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 353 * in <tt>CharacterIterator</tt> will be used as it is. 359 virtual void setText(CharacterIterator &text, UErrorCode &status);
|
/external/icu4c/i18n/unicode/ |
stsearch.h | 203 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 205 * in <tt>CharacterIterator</tt> will be used as it is. 222 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 232 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 234 * in <tt>CharacterIterator</tt> will be used as it is. 252 StringSearch(const UnicodeString &pattern, CharacterIterator &text, 351 * Note: No parsing of the text within the <tt>CharacterIterator</tt> 353 * in <tt>CharacterIterator</tt> will be used as it is. 359 virtual void setText(CharacterIterator &text, UErrorCode &status);
|
/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...] |
/external/icu4c/samples/citer/ |
citer.cpp | 29 } else if (ch == CharacterIterator::DONE) { 30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 83 if (c == CharacterIterator::DONE && i != u_strlen(testText)) { 95 if (c != CharacterIterator::DONE) { 103 } while (c != CharacterIterator::DONE); 146 if (c == CharacterIterator::DONE) { 158 if (c != CharacterIterator::DONE) { 165 } while (c != CharacterIterator::DONE);
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
StringCharacterIteratorTest.java | 20 import java.text.CharacterIterator; 194 assertTrue("Not DONE", it1.first() == CharacterIterator.DONE); 283 assertEquals(CharacterIterator.DONE, fixture.next()); 285 assertEquals(CharacterIterator.DONE, fixture.next()); 287 assertEquals(CharacterIterator.DONE, fixture.next()); 295 assertTrue("Wrong next char3", it1.next() == CharacterIterator.DONE); 296 assertTrue("Wrong next char4", it1.next() == CharacterIterator.DONE); 300 it1.current() == CharacterIterator.DONE); 308 assertEquals(CharacterIterator.DONE, fixture.previous()); 315 assertEquals(CharacterIterator.DONE, fixture.next()) [all...] |
/libcore/luni/src/main/java/libcore/icu/ |
NativeBreakIterator.java | 19 import java.text.CharacterIterator; 36 private CharacterIterator charIterator; 49 // The RI doesn't clone the CharacterIterator. 92 public CharacterIterator getText() { 114 public void setText(CharacterIterator newText) { 116 for (char c = newText.first(); c != CharacterIterator.DONE; c = newText.next()) { 126 private void setText(String s, CharacterIterator it) {
|
RuleBasedCollatorICU.java | 13 import java.text.CharacterIterator; 113 public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) { 118 private String characterIteratorToString(CharacterIterator it) { 120 for (char ch = it.current(); ch != CharacterIterator.DONE; ch = it.next()) {
|
CollationElementIteratorICU.java | 12 import java.text.CharacterIterator; 102 public void setText(CharacterIterator source) {
|