HomeSort by relevance Sort by last modified time
    Searched refs:getEndIndex (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CharacterIteratorWrapper.java 52 return (iterator.getEndIndex() - iterator.getBeginIndex());
105 iterator.setIndex(iterator.getEndIndex());
113 int length =iterator.getEndIndex() - iterator.getBeginIndex();
145 int length = iterator.getEndIndex() - iterator.getBeginIndex();
UCharacterIteratorWrapper.java 46 * Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty)
49 * @see #getEndIndex()
71 * to getEndIndex(), the current index is reset to getEndIndex() and
100 * getBeginIndex() to getEndIndex(). An IllegalArgumentException is thrown
102 * @return the character at the specified position or DONE if the specified position is equal to getEndIndex()
126 public int getEndIndex(){
CharacterIteration.java 72 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) {
124 if (ci.getIndex() >= ci.getEndIndex()) {
CSCharacterIterator.java 91 public int getEndIndex() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CharacterIteratorWrapper.java 50 return (iterator.getEndIndex() - iterator.getBeginIndex());
103 iterator.setIndex(iterator.getEndIndex());
111 int length =iterator.getEndIndex() - iterator.getBeginIndex();
143 int length = iterator.getEndIndex() - iterator.getBeginIndex();
UCharacterIteratorWrapper.java 44 * Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty)
47 * @see #getEndIndex()
69 * to getEndIndex(), the current index is reset to getEndIndex() and
98 * getBeginIndex() to getEndIndex(). An IllegalArgumentException is thrown
100 * @return the character at the specified position or DONE if the specified position is equal to getEndIndex()
124 public int getEndIndex(){
CharacterIteration.java 68 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) {
120 if (ci.getIndex() >= ci.getEndIndex()) {
CSCharacterIterator.java 89 public int getEndIndex() {
  /external/icu/icu4c/source/test/intltest/
compactdecimalformattest.cpp 336 UnicodeString subString = result.tempSubString(fp.getBeginIndex(), fp.getEndIndex() - fp.getBeginIndex());
396 if (actual != expected || pos.getEndIndex() != 3) {
398 "Got: \"" + actual + "\", pos " + pos.getEndIndex());
406 if (actual != expected || pos.getEndIndex() != 3 || status != U_ZERO_ERROR) {
408 "Got: \"" + actual + "\", pos " + pos.getEndIndex() + ", status " + u_errorName(status));
417 if (actual != expected || pos.getEndIndex() != 3 || status != U_ZERO_ERROR) {
419 "Got: \"" + actual + "\", pos " + pos.getEndIndex() + ", status " + u_errorName(status));
426 if (actual != expected || pos.getEndIndex() != 3) {
428 "Got: \"" + actual + "\", pos " + pos.getEndIndex());
436 if (actual != expected || pos.getEndIndex() != 3 || status != U_ZERO_ERROR)
    [all...]
pptest.cpp 137 // if (fp.getEndIndex() != i+7) err3 = TRUE;
150 logln("FP setEndIndex and getEndIndex tested.");
152 errln("*** FP setEndIndex or getEndIndex");
207 int tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ?
208 tempLen : (tempLen - pos.getEndIndex());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/impl/
CSCharacterIteratorTest.java 37 assertEquals("", sci.getEndIndex(), csci.getEndIndex());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
CSCharacterIteratorTest.java 34 assertEquals("", sci.getEndIndex(), csci.getEndIndex());
  /external/icu/icu4c/source/i18n/
scientificnumberformatter.cpp 146 copyFromOffset = fp.getEndIndex();
153 int32_t endIndex = fp.getEndIndex();
182 fp.getEndIndex(),
187 copyFromOffset = fp.getEndIndex();
220 copyFromOffset = fp.getEndIndex();
228 fp.getEndIndex() - copyFromOffset);
229 copyFromOffset = fp.getEndIndex();
ufieldpositer.cpp 54 *endIndex = fp.getEndIndex();
fphdlimp.cpp 51 pos.setEndIndex(delta + pos.getEndIndex());
udateintervalformat.cpp 101 position->endIndex = fp.getEndIndex();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
QuantityFormatter.java 119 pos.setEndIndex(fpos.getEndIndex());
130 if (pos.getBeginIndex() != 0 || pos.getEndIndex() != 0) {
133 pos.setEndIndex(pos.getEndIndex() + offsets[0]);
SearchIterator.java 153 return targetText.getEndIndex();
244 if (text == null || text.getEndIndex() == text.getIndex()) {
611 || (target.getEndIndex() - target.getBeginIndex()) == 0) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
QuantityFormatter.java 118 pos.setEndIndex(fpos.getEndIndex());
129 if (pos.getBeginIndex() != 0 || pos.getEndIndex() != 0) {
132 pos.setEndIndex(pos.getEndIndex() + offsets[0]);
  /external/icu/icu4c/source/i18n/unicode/
fieldpos.h 86 * temp[__min(tempLen, tempLen-pos.getEndIndex())] = '\0';
209 int32_t getEndIndex(void) const { return fEndIndex; }
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 53 if(clone.getEndIndex()!= norm.getEndIndex()){
54 errln("error in Normalizer.getEndIndex()");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 50 if(clone.getEndIndex()!= norm.getEndIndex()){
51 errln("error in Normalizer.getEndIndex()");
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 286 if (fposByInt.getEndIndex() != fposByField.getEndIndex())
288 errln("ERROR: End index for integer field - fposByInt:" + fposByInt.getEndIndex() +
289 " / fposByField: " + fposByField.getEndIndex());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 283 if (fposByInt.getEndIndex() != fposByField.getEndIndex())
285 errln("ERROR: End index for integer field - fposByInt:" + fposByInt.getEndIndex() +
286 " / fposByField: " + fposByField.getEndIndex());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
BreakIteratorRegTest.java 79 int len = sci.getEndIndex() - sci.getBeginIndex();
103 int len = sci.getEndIndex() - sci.getBeginIndex();
121 StringBuffer buf = new StringBuffer(ci.getEndIndex() - ci.getBeginIndex() + 2);

Completed in 623 milliseconds

1 2 3 4 5