OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:USTRINGTRIE_NO_MATCH
(Results
1 - 7
of
7
) sorted by null
/external/icu4c/common/unicode/
ustringtrie.h
35
* Once current()/next() return
USTRINGTRIE_NO_MATCH
,
36
* all further calls to current()/next() will also return
USTRINGTRIE_NO_MATCH
,
40
USTRINGTRIE_NO_MATCH
,
67
* Same as (result!=
USTRINGTRIE_NO_MATCH
).
72
#define USTRINGTRIE_MATCHES(result) ((result)!=
USTRINGTRIE_NO_MATCH
)
ucharstrie.h
180
USTRINGTRIE_NO_MATCH
);
203
USTRINGTRIE_NO_MATCH
);
212
* if(!USTRINGTRIE_HAS_NEXT(result)) return
USTRINGTRIE_NO_MATCH
;
228
* Do not call getValue() after
USTRINGTRIE_NO_MATCH
or USTRINGTRIE_NO_VALUE!
257
* That is, each UChar c for which it would be next(c)!=
USTRINGTRIE_NO_MATCH
now.
/external/icu4c/common/
bytestrie.cpp
70
return
USTRINGTRIE_NO_MATCH
;
144
return
USTRINGTRIE_NO_MATCH
;
177
return
USTRINGTRIE_NO_MATCH
;
184
return
USTRINGTRIE_NO_MATCH
;
200
return
USTRINGTRIE_NO_MATCH
;
214
return
USTRINGTRIE_NO_MATCH
;
236
return
USTRINGTRIE_NO_MATCH
;
258
return
USTRINGTRIE_NO_MATCH
;
268
if(result==
USTRINGTRIE_NO_MATCH
) {
269
return
USTRINGTRIE_NO_MATCH
;
[
all
...]
ucharstrie.cpp
32
return
USTRINGTRIE_NO_MATCH
;
98
return
USTRINGTRIE_NO_MATCH
;
130
return
USTRINGTRIE_NO_MATCH
;
137
return
USTRINGTRIE_NO_MATCH
;
150
return
USTRINGTRIE_NO_MATCH
;
164
return
USTRINGTRIE_NO_MATCH
;
186
return
USTRINGTRIE_NO_MATCH
;
208
return
USTRINGTRIE_NO_MATCH
;
218
if(result==
USTRINGTRIE_NO_MATCH
) {
219
return
USTRINGTRIE_NO_MATCH
;
[
all
...]
/external/icu4c/test/perf/dicttrieperf/
dicttrieperf.cpp
421
} else if(result==
USTRINGTRIE_NO_MATCH
) {
615
} else if(result==
USTRINGTRIE_NO_MATCH
) {
/external/icu4c/test/intltest/
ucharstrietest.cpp
322
(result=trie->nextForCodePoint(0x20222))!=
USTRINGTRIE_NO_MATCH
|| result!=trie->current() // no match for trail surrogate
394
if(trie->first(x[0])==
USTRINGTRIE_NO_MATCH
) {
395
errln("first(first char U+%04X)=
USTRINGTRIE_NO_MATCH
for string %ld\n",
893
errln("trie.next()=
USTRINGTRIE_NO_MATCH
before end of %s (at index %d)", data[i].s, j);
[
all
...]
bytestrietest.cpp
713
errln("trie.next()=
USTRINGTRIE_NO_MATCH
before end of %s (at index %d)", data[i].s, j);
752
"(trie.next(some byte)!=
USTRINGTRIE_NO_MATCH
) after end of %s", data[i].s);
771
errln("trie.next()=
USTRINGTRIE_NO_MATCH
for a prefix of %s", data[i].s);
783
if(result!=
USTRINGTRIE_NO_MATCH
|| result!=trie.current()) {
824
errln("trie.next(up to middle of string)=
USTRINGTRIE_NO_MATCH
for %s", data[i].s);
829
errln("trie.next(string+NUL)!=
USTRINGTRIE_NO_MATCH
for %s", data[i].s);
Completed in 275 milliseconds