Searched refs:breakType (Results 1 - 7 of 7) sorted by relevance

/external/icu4c/common/
H A Dbrkeng.h54 * @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...]
H A Dbrkeng.cpp69 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]
75 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
99 handleCharacter(UChar32 c, int32_t breakType) argument
139 getEngineFor(UChar32 c, int32_t breakType) argument
218 loadEngineFor(UChar32 c, int32_t breakType) argument
[all...]
H A Ddictbe.h73 * @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,
H A Ddictbe.cpp38 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)) {
44 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
H A Drbbi.cpp1775 getLanguageBreakEngineFromFactory(UChar32 c, int32_t breakType) argument
1811 lbe = factory->getEngineFor(c, breakType);
/external/icu4c/test/intltest/
H A Drbbitst.cpp4278 UnicodeString breakType = "all";
4293 breakType = m.group(1, status);
4319 if (breakType == "char" || breakType == "all") {
4324 if (breakType == "all" && useUText==FALSE) {
4335 if (breakType == "word" || breakType == "all") {
4348 if (breakType == "line" || breakType == "all") {
4364 if (breakType
[all...]
H A Dssearch.cpp2265 UnicodeString breakType = m.group(1, status); local
2268 if (breakType == strengthNames[s]) {
2404 UnicodeString breakType = m.group(1, status); local
2407 if (breakType == strengthNames[s]) {

Completed in 110 milliseconds