OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fcd16
(Results
1 - 19
of
19
) sorted by null
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
FCDIterCollationIterator.java
268
// Fetch the next character and its
fcd16
value.
271
int
fcd16
= nfcImpl.getFCD16(c);
local
272
int leadCC =
fcd16
>> 8;
279
if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
297
prevCC =
fcd16
& 0xff;
357
// Fetch the previous character and its
fcd16
value.
360
int
fcd16
= nfcImpl.getFCD16(c);
local
361
int trailCC =
fcd16
& 0xff;
369
CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
371
while(
fcd16
> 0xff)
[
all
...]
FCDUTF16CollationIterator.java
254
// Fetch the next character's
fcd16
value.
258
int
fcd16
= nfcImpl.getFCD16(c);
local
259
int leadCC =
fcd16
>> 8;
265
if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
277
prevCC =
fcd16
& 0xff;
330
// Fetch the previous character's
fcd16
value.
334
int
fcd16
= nfcImpl.getFCD16(c);
335
int trailCC =
fcd16
& 0xff;
342
CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
346
if(
fcd16
<= 0xff || p == rawStart) { break;
[
all
...]
CollationIterator.java
786
int
fcd16
= d.getFCD16(c);
local
787
assert(
fcd16
> 0xff); // The caller checked this already, as a shortcut.
795
int prevCC =
fcd16
& 0xff;
796
fcd16
= d.getFCD16(nextCp);
797
if(
fcd16
<= 0xff) {
[
all
...]
CollationDataBuilder.java
1085
int
fcd16
= nfcImpl.getFCD16(suffix.codePointAt(0));
local
[
all
...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
FCDIterCollationIterator.java
266
// Fetch the next character and its
fcd16
value.
269
int
fcd16
= nfcImpl.getFCD16(c);
local
270
int leadCC =
fcd16
>> 8;
277
if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
295
prevCC =
fcd16
& 0xff;
355
// Fetch the previous character and its
fcd16
value.
358
int
fcd16
= nfcImpl.getFCD16(c);
local
359
int trailCC =
fcd16
& 0xff;
367
CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
369
while(
fcd16
> 0xff)
[
all
...]
FCDUTF16CollationIterator.java
252
// Fetch the next character's
fcd16
value.
256
int
fcd16
= nfcImpl.getFCD16(c);
local
257
int leadCC =
fcd16
>> 8;
263
if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
275
prevCC =
fcd16
& 0xff;
328
// Fetch the previous character's
fcd16
value.
332
int
fcd16
= nfcImpl.getFCD16(c);
333
int trailCC =
fcd16
& 0xff;
340
CollationFCD.isFCD16OfTibetanCompositeVowel(
fcd16
))) {
344
if(
fcd16
<= 0xff || p == rawStart) { break;
[
all
...]
CollationIterator.java
784
int
fcd16
= d.getFCD16(c);
local
785
assert(
fcd16
> 0xff); // The caller checked this already, as a shortcut.
793
int prevCC =
fcd16
& 0xff;
794
fcd16
= d.getFCD16(nextCp);
795
if(
fcd16
<= 0xff) {
[
all
...]
CollationDataBuilder.java
1084
int
fcd16
= nfcImpl.getFCD16(suffix.codePointAt(0));
local
[
all
...]
/external/icu/icu4c/source/i18n/
collationiterator.cpp
578
uint16_t
fcd16
= d->getFCD16(c);
local
579
U_ASSERT(
fcd16
> 0xff); // The caller checked this already, as a shortcut.
587
uint8_t prevCC = (uint8_t)
fcd16
;
588
fcd16
= d->getFCD16(nextCp);
589
if(
fcd16
<= 0xff) {
630
if(prevCC < (
fcd16
>> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) {
642
prevCC = (uint8_t)
fcd16
;
646
fcd16
= d->getFCD16(c);
647
if(
fcd16
<= 0xff) {
[
all
...]
collationdatabuilder.cpp
1416
uint16_t
fcd16
= nfcImpl.getFCD16(suffix.char32At(0));
local
[
all
...]
/external/icu/icu4c/source/common/
normalizer2impl.cpp
320
// They might have different non-zero
FCD16
values.
322
uint16_t
fcd16
=impl.getFCD16(start);
local
323
if(
fcd16
>0xff) { set.add(start); }
326
uint16_t
fcd16
=impl.getFCD16(start);
local
327
if(
fcd16
>0xff) { set.add(start, end); }
362
// They might have different non-zero
FCD16
values.
365
uint16_t
fcd16
=ctx->impl.getFCD16(start);
local
366
if(
fcd16
!=prevFCD16) {
368
prevFCD16=
fcd16
;
742
//
fcd16
<=1 || trailCC==
1649
uint16_t
fcd16
=0;
local
[
all
...]
normalizer2impl.h
476
uint16_t
fcd16
=getFCD16(c);
local
477
return
fcd16
<=1 || (
fcd16
&0xff)==0;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
Normalizer2Impl.java
500
// They might have different non-zero
FCD16
values.
502
int
fcd16
=getFCD16(start);
local
503
if(
fcd16
>0xff) { set.add(start); }
506
int
fcd16
=getFCD16(start);
local
507
if(
fcd16
>0xff) { set.add(start, end); }
516
// They might have different non-zero
FCD16
values.
519
int
fcd16
=getFCD16(start);
local
520
if(
fcd16
!=prevFCD16) {
522
prevFCD16=
fcd16
;
747
int
fcd16
=firstUnit>>8; // tcc
local
1431
int
fcd16
=0;
local
1645
int
fcd16
=getFCD16(c);
local
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java
496
// They might have different non-zero
FCD16
values.
498
int
fcd16
=getFCD16(start);
local
499
if(
fcd16
>0xff) { set.add(start); }
502
int
fcd16
=getFCD16(start);
local
503
if(
fcd16
>0xff) { set.add(start, end); }
512
// They might have different non-zero
FCD16
values.
515
int
fcd16
=getFCD16(start);
local
516
if(
fcd16
!=prevFCD16) {
518
prevFCD16=
fcd16
;
743
int
fcd16
=firstUnit>>8; // tcc
local
1427
int
fcd16
=0;
local
1641
int
fcd16
=getFCD16(c);
local
[
all
...]
/prebuilts/misc/common/icu4j/
icu4j.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar
Completed in 656 milliseconds