OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:breakType
(Results
1 - 7
of
7
) sorted by null
/external/icu4c/common/
brkeng.h
54
* @param
breakType
The type of text break which the caller wants to determine
58
virtual UBool handles(UChar32 c, int32_t
breakType
) const = 0;
70
* @param
breakType
The type of break desired, or -1.
78
int32_t
breakType
,
128
* @param
breakType
The kind of text break for which a LanguageBreakEngine is
132
virtual const LanguageBreakEngine *getEngineFor(UChar32 c, int32_t
breakType
) = 0;
179
* @param
breakType
The type of text break which the caller wants to determine
183
virtual UBool handles(UChar32 c, int32_t
breakType
) const;
195
* @param
breakType
The type of break desired, or -1.
203
int32_t
breakType
,
[
all
...]
brkeng.cpp
69
UnhandledEngine::handles(UChar32 c, int32_t
breakType
) const {
70
return (
breakType
>= 0 &&
breakType
< (int32_t)(sizeof(fHandled)/sizeof(fHandled[0]))
71
&& fHandled[
breakType
] != 0 && fHandled[
breakType
]->contains(c));
79
int32_t
breakType
,
81
if (
breakType
>= 0 &&
breakType
< (int32_t)(sizeof(fHandled)/sizeof(fHandled[0]))) {
84
while((int32_t)utext_getNativeIndex(text) > startPos && fHandled[
breakType
]->contains(c)) {
89
while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[
breakType
]->contains(c))
[
all
...]
dictbe.h
73
* @param
breakType
The type of text break which the caller wants to determine
77
virtual UBool handles( UChar32 c, int32_t
breakType
) const;
89
* @param
breakType
The type of break desired, or -1.
97
int32_t
breakType
,
dictbe.cpp
38
DictionaryBreakEngine::handles(UChar32 c, int32_t
breakType
) const {
39
return (
breakType
>= 0 &&
breakType
< 32 && (((uint32_t)1 <<
breakType
) & fTypes)
48
int32_t
breakType
,
75
if (
breakType
>= 0 &&
breakType
< 32 && (((uint32_t)1 <<
breakType
) & fTypes)) {
rbbi.cpp
252
fBreakType = UBRK_WORD; // Defaulting
BreakType
to word gives reasonable
[
all
...]
/external/icu4c/test/intltest/
rbbitst.cpp
[
all
...]
ssearch.cpp
[
all
...]
Completed in 2073 milliseconds