Searched refs:replaceable (Results 1 - 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DReplaceableUCharacterIterator.java34 * @param replaceable text which the iterator will be based on
36 public ReplaceableUCharacterIterator(Replaceable replaceable){ argument
37 if(replaceable==null){
40 this.replaceable = replaceable;
52 this.replaceable = new ReplaceableString(str);
64 this.replaceable = new ReplaceableString(buf);
90 if (currentIndex < replaceable.length()) {
91 return replaceable.charAt(currentIndex);
130 return replaceable
208 private Replaceable replaceable; field in class:ReplaceableUCharacterIterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DReplaceableUCharacterIterator.java32 * @param replaceable text which the iterator will be based on
34 public ReplaceableUCharacterIterator(Replaceable replaceable){ argument
35 if(replaceable==null){
38 this.replaceable = replaceable;
50 this.replaceable = new ReplaceableString(str);
62 this.replaceable = new ReplaceableString(buf);
88 if (currentIndex < replaceable.length()) {
89 return replaceable.charAt(currentIndex);
128 return replaceable
206 private Replaceable replaceable; field in class:ReplaceableUCharacterIterator
[all...]
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_base_board.h38 bool replaceable; member in struct:__anon20836
/external/icu/icu4c/source/test/intltest/
H A Dtransapi.cpp385 UnicodeString rs="This is the replaceable String";
387 "0", "0", "This is the replaceable String",
388 "2", "3", UnicodeString("Th\\u0069s is the replaceable String", ""),
625 UnicodeString replaceable=s; local
626 transLimit=nullTrans->transliterate(replaceable, start, limit);
630 doTest((UnicodeString)"nulTrans->transliterate", replaceable, s);
631 replaceable.remove();
632 replaceable.append(s);
638 nullTrans->finishTransliteration(replaceable, index);
642 doTest((UnicodeString)"NullTransliterator->handleTransliterate", replaceable,
[all...]
/external/icu/icu4c/source/i18n/
H A Dutrans.cpp48 ReplaceableGlue(UReplaceable *replaceable,
90 ReplaceableGlue::ReplaceableGlue(UReplaceable *replaceable, argument
94 this->rep = replaceable;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUTF16Test.java225 ReplaceableString replaceable = new ReplaceableString(str);
226 if (UTF16.charAt(replaceable, 0) != '1' ||
227 UTF16.charAt(replaceable, 2) != '3' ||
228 UTF16.charAt(replaceable, 5) != 0x10001 ||
229 UTF16.charAt(replaceable, 6) != 0x10001 ||
230 UTF16.charAt(replaceable, 12) != 0x10002 ||
231 UTF16.charAt(replaceable, 13) != 0x10002) {
232 errln("FAIL Getting character from replaceable error" );
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUTF16Test.java224 ReplaceableString replaceable = new ReplaceableString(str);
225 if (UTF16.charAt(replaceable, 0) != '1' ||
226 UTF16.charAt(replaceable, 2) != '3' ||
227 UTF16.charAt(replaceable, 5) != 0x10001 ||
228 UTF16.charAt(replaceable, 6) != 0x10001 ||
229 UTF16.charAt(replaceable, 12) != 0x10002 ||
230 UTF16.charAt(replaceable, 13) != 0x10002) {
231 errln("FAIL Getting character from replaceable error" );

Completed in 406 milliseconds