Lines Matching refs:sal_Int16
56 … const Locale &rLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 nCount, sal_Int32& nDone ) in nextCharacters()
65 … const Locale& rLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 nCount, sal_Int32& nDone ) in previousCharacters()
75 static sal_Int32 skipSpace(const OUString& Text, sal_Int32 nPos, sal_Int32 len, sal_Int16 rWordType… in skipSpace()
105 const Locale& rLocale, sal_Int16 rWordType ) throw(RuntimeException) in nextWord()
135 const Locale& rLocale, sal_Int16 rWordType) throw(RuntimeException) in previousWord()
161 sal_Int16 rWordType, sal_Bool bDirection ) throw(RuntimeException) in getWordBoundary()
194 const Locale& rLocale, sal_Int16 rWordType ) throw(RuntimeException) in isBeginWord()
210 const Locale& rLocale, sal_Int16 rWordType ) throw(RuntimeException) in isEndWord()
250 sal_Int16 SAL_CALL BreakIteratorImpl::getScriptType( const OUString& Text, sal_Int32 nPos ) in getScriptType()
286 sal_Int32 nStartPos, sal_Int16 ScriptType ) throw(RuntimeException) in beginOfScript()
304 sal_Int32 nStartPos, sal_Int16 ScriptType ) throw(RuntimeException) in endOfScript()
315 sal_Int16 currentCharScriptType = getScriptClass(ch); in endOfScript()
323 sal_Int32 nStartPos, sal_Int16 ScriptType ) throw(RuntimeException) in previousScript()
330 …sal_Int16 numberOfChange = (ScriptType == getScriptClass(Text.iterateCodePoints(&nStartPos, 0))) ?… in previousScript()
349 sal_Int16 ScriptType ) throw(RuntimeException) in nextScript()
358 …sal_Int16 numberOfChange = (ScriptType == getScriptClass(Text.iterateCodePoints(&nStartPos, 0))) ?… in nextScript()
362 sal_Int16 currentCharScriptType = getScriptClass(ch); in nextScript()
371 const Locale& /*rLocale*/, sal_Int16 CharType ) throw(RuntimeException) in beginOfCharBlock()
375 if (CharType != (sal_Int16)u_charType( Text.iterateCodePoints(&nStartPos, 0))) return -1; in beginOfCharBlock()
378 …while(nStartPos > 0 && CharType == (sal_Int16)u_charType(Text.iterateCodePoints(&nPos, -1))) { nSt… in beginOfCharBlock()
383 const Locale& /*rLocale*/, sal_Int16 CharType ) throw(RuntimeException) in endOfCharBlock()
389 if (CharType != (sal_Int16)u_charType(Text.iterateCodePoints(&nStartPos, 0))) return -1; in endOfCharBlock()
392 …while(iterateCodePoints(Text, nStartPos, 1, ch) < strLen && CharType == (sal_Int16)u_charType(ch))… in endOfCharBlock()
397 const Locale& /*rLocale*/, sal_Int16 CharType ) throw(RuntimeException) in nextCharBlock()
402 …sal_Int16 numberOfChange = (CharType == (sal_Int16)u_charType(Text.iterateCodePoints(&nStartPos, 0… in nextCharBlock()
407 if ((CharType != (sal_Int16)u_charType(ch)) ^ (numberOfChange == 1)) in nextCharBlock()
414 const Locale& /*rLocale*/, sal_Int16 CharType ) throw(RuntimeException) in previousCharBlock()
419 …sal_Int16 numberOfChange = (CharType == (sal_Int16)u_charType(Text.iterateCodePoints(&nStartPos, 0… in previousCharBlock()
423 if (((numberOfChange % 2) == 0) ^ (CharType != (sal_Int16)u_charType(ch))) in previousCharBlock()
435 sal_Int16 SAL_CALL BreakIteratorImpl::getWordType( const OUString& /*Text*/, in getWordType()
444 sal_Int16 script;
474 sal_Int16 BreakIteratorImpl::getScriptClass(sal_uInt32 currentChar) in getScriptClass()
477 static sal_Int16 nRet = 0; in getScriptClass()