OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decompPos
(Results
1 - 6
of
6
) sorted by null
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizer.java
151
for (int
decompPos
= UTF16Util.codePointLength(starterCh);
decompPos
< target.length(); ) {
152
int ch = UTF16Util.nextCodePoint(target,
decompPos
);
153
decompPos
+= UTF16Util.codePointLength(ch);
166
decompPos
+= UTF16Util.setCodePointAt(target, compPos, ch);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizer.java
148
for (int
decompPos
= UTF16Util.codePointLength(starterCh);
decompPos
< target.length(); ) {
149
int ch = UTF16Util.nextCodePoint(target,
decompPos
);
150
decompPos
+= UTF16Util.codePointLength(ch);
163
decompPos
+= UTF16Util.setCodePointAt(target, compPos, ch);
/external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java
376
int
decompPos
= 0;
378
decompPos
+= UTF16.getCharCount(decompCp); // adjust position to skip first char
386
if (
decompPos
== decomp.length()) { // done, have all decomp characters!
391
decompCp = UTF16.charAt(decomp,
decompPos
);
392
decompPos
+= UTF16.getCharCount(decompCp);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java
380
int
decompPos
= 0;
382
decompPos
+= UTF16.getCharCount(decompCp); // adjust position to skip first char
390
if (
decompPos
== decomp.length()) { // done, have all decomp characters!
395
decompCp = UTF16.charAt(decomp,
decompPos
);
396
decompPos
+= UTF16.getCharCount(decompCp);
/external/icu/icu4c/source/common/
caniter.cpp
526
int32_t
decompPos
= 0;
528
U16_NEXT(decomp,
decompPos
, decompLen, decompCp);
538
if (
decompPos
== decompLen) { // done, have all decomp characters!
543
U16_NEXT(decomp,
decompPos
, decompLen, decompCp);
/external/cldr/tools/java/libs/
icu4j.jar
Completed in 2467 milliseconds