OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:trieValue2
(Results
1 - 6
of
6
) sorted by null
/external/icu/icu4c/source/common/
ucptrie.cpp
369
uint32_t
trieValue2
= getValue(trie->data, valueWidth, di);
371
if (
trieValue2
!= trieValue) {
373
maybeFilterValue(
trieValue2
, trie->nullValue, nullValue,
377
trieValue =
trieValue2
; // may or may not help
380
trieValue =
trieValue2
;
381
value = maybeFilterValue(
trieValue2
, trie->nullValue, nullValue,
387
trieValue2
= getValue(trie->data, valueWidth, ++di);
388
if (
trieValue2
!= trieValue) {
390
maybeFilterValue(
trieValue2
, trie->nullValue, nullValue,
394
trieValue =
trieValue2
; // may or may not hel
[
all
...]
umutablecptrie.cpp
312
uint32_t
trieValue2
= index[i];
314
if (
trieValue2
!= trieValue) {
316
maybeFilterValue(
trieValue2
, initialValue, nullValue,
320
trieValue =
trieValue2
; // may or may not help
323
trieValue =
trieValue2
;
324
value = maybeFilterValue(
trieValue2
, initialValue, nullValue, filter, context);
331
uint32_t
trieValue2
= data[di];
333
if (
trieValue2
!= trieValue) {
335
maybeFilterValue(
trieValue2
, initialValue, nullValue,
339
trieValue =
trieValue2
; // may or may not hel
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
MutableCodePointTrie.java
183
int
trieValue2
= index[i];
185
if (
trieValue2
!= trieValue) {
187
maybeFilterValue(
trieValue2
, initialValue, nullValue,
192
trieValue =
trieValue2
; // may or may not help
195
trieValue =
trieValue2
;
196
value = maybeFilterValue(
trieValue2
, initialValue, nullValue, filter);
202
int
trieValue2
= data[di];
204
if (
trieValue2
!= trieValue) {
206
maybeFilterValue(
trieValue2
, initialValue, nullValue,
211
trieValue =
trieValue2
; // may or may not hel
[
all
...]
CodePointTrie.java
431
int
trieValue2
= data.getFromIndex(di);
433
if (
trieValue2
!= trieValue) {
435
maybeFilterValue(
trieValue2
, this.nullValue, nullValue,
440
trieValue =
trieValue2
; // may or may not help
443
trieValue =
trieValue2
;
444
value = maybeFilterValue(
trieValue2
, this.nullValue, nullValue, filter);
448
trieValue2
= data.getFromIndex(++di);
449
if (
trieValue2
!= trieValue) {
451
maybeFilterValue(
trieValue2
, this.nullValue, nullValue,
456
trieValue =
trieValue2
; // may or may not hel
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
MutableCodePointTrie.java
187
int
trieValue2
= index[i];
189
if (
trieValue2
!= trieValue) {
191
maybeFilterValue(
trieValue2
, initialValue, nullValue,
196
trieValue =
trieValue2
; // may or may not help
199
trieValue =
trieValue2
;
200
value = maybeFilterValue(
trieValue2
, initialValue, nullValue, filter);
206
int
trieValue2
= data[di];
208
if (
trieValue2
!= trieValue) {
210
maybeFilterValue(
trieValue2
, initialValue, nullValue,
215
trieValue =
trieValue2
; // may or may not hel
[
all
...]
CodePointTrie.java
441
int
trieValue2
= data.getFromIndex(di);
443
if (
trieValue2
!= trieValue) {
445
maybeFilterValue(
trieValue2
, this.nullValue, nullValue,
450
trieValue =
trieValue2
; // may or may not help
453
trieValue =
trieValue2
;
454
value = maybeFilterValue(
trieValue2
, this.nullValue, nullValue, filter);
458
trieValue2
= data.getFromIndex(++di);
459
if (
trieValue2
!= trieValue) {
461
maybeFilterValue(
trieValue2
, this.nullValue, nullValue,
466
trieValue =
trieValue2
; // may or may not hel
[
all
...]
Completed in 81 milliseconds