Home
last modified time | relevance | path

Searched refs:cursorPos (Results 1 – 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringReplacer.java35 private int cursorPos; field in StringReplacer
72 cursorPos = theCursorPos; in StringReplacer()
90 cursorPos = 0; in StringReplacer()
129 newStart = cursorPos; in replace()
167 if (oOutput == cursorPos) { in replace()
213 if (oOutput == cursorPos) { in replace()
233 if (cursorPos < 0) { in replace()
235 int n = cursorPos; in replace()
242 } else if (cursorPos > output.length()) { in replace()
244 int n = cursorPos - output.length(); in replace()
[all …]
DTransliterationRule.java156 int cursorPos, int cursorOffset, in TransliterationRule() argument
180 if (cursorPos < 0) { in TransliterationRule()
181 cursorPos = output.length(); in TransliterationRule()
182 } else if (cursorPos > output.length()) { in TransliterationRule()
220 this.output = new StringReplacer(output, cursorPos + cursorOffset, data); in TransliterationRule()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DStringReplacer.java34 private int cursorPos; field in StringReplacer
71 cursorPos = theCursorPos; in StringReplacer()
89 cursorPos = 0; in StringReplacer()
128 newStart = cursorPos; in replace()
166 if (oOutput == cursorPos) { in replace()
212 if (oOutput == cursorPos) { in replace()
232 if (cursorPos < 0) { in replace()
234 int n = cursorPos; in replace()
241 } else if (cursorPos > output.length()) { in replace()
243 int n = cursorPos - output.length(); in replace()
[all …]
DTransliterationRule.java155 int cursorPos, int cursorOffset, in TransliterationRule() argument
179 if (cursorPos < 0) { in TransliterationRule()
180 cursorPos = output.length(); in TransliterationRule()
181 } else if (cursorPos > output.length()) { in TransliterationRule()
219 this.output = new StringReplacer(output, cursorPos + cursorOffset, data); in TransliterationRule()
/external/icu/icu4c/source/i18n/
Dstrrepl.cpp41 cursorPos = theCursorPos; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
59 cursorPos = 0; in StringReplacer()
73 cursorPos = other.cursorPos; in StringReplacer()
119 newStart = cursorPos; in replace()
157 if (oOutput == cursorPos) { in replace()
187 if (oOutput == cursorPos) { in replace()
207 if (cursorPos < 0) { in replace()
209 int32_t n = cursorPos; in replace()
216 } else if (cursorPos > output.length()) { in replace()
218 int32_t n = cursorPos - output.length(); in replace()
[all …]
Dstrrepl.h48 int32_t cursorPos; variable
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
DJglfwInput.java874 public void cursorPos (long window, int x, int y) { in cursorPos() method in JglfwInput.GlfwInputProcessor