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

/macosx-10.10.1/ICU-531.30/icuSources/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.cpp72 UnhandledEngine::handles(UChar32 c, int32_t breakType) const {
73 return (breakType >= 0 && breakType < (int32_t)(sizeof(fHandled)/sizeof(fHandled[0]))
74 && fHandled[breakType] != 0 && fHandled[breakType]->contains(c));
82 int32_t breakType,
84 if (breakType >= 0 && breakType < (int32_t)(sizeof(fHandled)/sizeof(fHandled[0]))) {
87 while((int32_t)utext_getNativeIndex(text) > startPos && fHandled[breakType]->contains(c)) {
92 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]
78 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
102 handleCharacter(UChar32 c, int32_t breakType) argument
142 getEngineFor(UChar32 c, int32_t breakType) argument
221 loadEngineFor(UChar32 c, int32_t breakType) argument
[all...]
H A Daaplbfct.h40 * @param breakType The kind of text break for which a dictionary is
44 virtual DictionaryMatcher *loadDictionaryMatcherFor(UScriptCode script, int32_t breakType);
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.cpp37 DictionaryBreakEngine::handles(UChar32 c, int32_t breakType) const {
38 return (breakType >= 0 && breakType < 32 && (((uint32_t)1 << breakType) & fTypes)
47 int32_t breakType,
77 if (breakType >= 0 && breakType < 32 && (((uint32_t)1 << breakType) & fTypes)) {
43 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
H A Daaplbfct.cpp191 virtual const CompactTrieDictionary *loadDictionaryFor(UScriptCode script, int32_t breakType);
193 virtual DictionaryMatcher *loadDictionaryMatcherFor(UScriptCode script, int32_t breakType);
198 AppleLanguageBreakFactory::loadDictionaryMatcherFor(UScriptCode script, int32_t breakType) { argument
199 DictionaryMatcher *icuDictMatcher = ICULanguageBreakFactory::loadDictionaryMatcherFor(script, breakType);
H A Drbbi.cpp1794 getLanguageBreakEngineFromFactory(UChar32 c, int32_t breakType) argument
1805 lbe = factory->getEngineFor(c, breakType);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Drbbitst.cpp3821 UnicodeString breakType = "all";
3836 breakType = m.group(1, status);
3862 if (breakType == "char" || breakType == "all") {
3867 if (breakType == "all" && useUText==FALSE) {
3878 if (breakType == "word" || breakType == "all") {
3891 if (breakType == "line" || breakType == "all") {
3907 if (breakType
[all...]
H A Dssearch.cpp1415 UnicodeString breakType = m.group(1, status); local
1418 if (breakType == strengthNames[s]) {

Completed in 191 milliseconds