Home
last modified time | relevance | path

Searched refs:currentChar (Results 1 – 11 of 11) sorted by relevance

/trunk/main/i18npool/source/breakiterator/
H A DbreakiteratorImpl.cxx471 sal_Int16 BreakIteratorImpl::getScriptClass(sal_uInt32 currentChar) in getScriptClass() argument
476 if (currentChar != lastChar) { in getScriptClass()
477 lastChar = currentChar; in getScriptClass()
483 if( 1 == currentChar || 2 == currentChar || 0x20 == currentChar || 0xA0 == currentChar) in getScriptClass()
486 else if ( 0x2C80 <= currentChar && 0x2CE3 >= currentChar) in getScriptClass()
489 else if ((0xFB00 <= currentChar && currentChar <= 0xFB06) || in getScriptClass()
490 (0xFB13 <= currentChar && currentChar <= 0xFB17)) in getScriptClass()
493 UBlockCode block=ublock_getCode(currentChar); in getScriptClass()
/trunk/main/i18npool/source/transliteration/
H A DignoreProlongedSoundMark_ja_JP.cxx322 sal_Unicode currentChar; in folding() local
326 currentChar = *src ++; in folding()
328 if (currentChar == 0x30fc || // KATAKANA-HIRAGANA PROLONGED SOUND MARK in folding()
329 currentChar == 0xff70) { // HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK in folding()
332 currentChar = table_normalwidth[ previousChar - 0x3041 ]; in folding()
335 currentChar = table_halfwidth[ previousChar - 0xff66 ]; in folding()
342 previousChar = currentChar; in folding()
H A DignoreKiKuFollowedBySa_ja_JP.cxx59 sal_Unicode currentChar; in folding() local
63 currentChar = *src ++; in folding()
67 if (0x30B5 <= currentChar && // KATAKANA LETTER SA in folding()
68 currentChar <= 0x30BE) { // KATAKANA LETTER ZO in folding()
74 *dst ++ = currentChar; in folding()
84 previousChar = currentChar; in folding()
H A DignoreIterationMark_ja_JP.cxx114 sal_Unicode currentChar; in folding() local
118 currentChar = *src ++; in folding()
120 switch ( currentChar ) { in folding()
124 currentChar = previousChar; in folding()
128 currentChar = aTable[ previousChar ]; in folding()
134 previousChar = currentChar; in folding()
H A Dtransliteration_Ignore.cxx150 sal_Unicode currentChar; in folding() local
154 currentChar = *src ++; in folding()
158 if (previousChar == m->previousChar && currentChar == m->currentChar ) { in folding()
167 *dst++ = currentChar; in folding()
178 previousChar = currentChar; in folding()
H A DignoreIandEfollowedByYa_ja_JP.cxx99 sal_Unicode currentChar; in folding() local
106 currentChar = *src ++; in folding()
109 if (currentChar == 0x30E3 || // KATAKANA LETTER SMALL YA in folding()
110 currentChar == 0x30E4) { // KATAKANA LETTER YA in folding()
127 previousChar = currentChar; in folding()
/trunk/main/i18nutil/source/utility/
H A Dwidthfolding.cxx142 sal_Unicode currentChar; in compose_ja_voiced_sound_marks() local
146 currentChar = *src ++; in compose_ja_voiced_sound_marks()
153 int j = currentChar - 0x3099; // 0x3099, 0x309a, 0x309b, 0x309c ? in compose_ja_voiced_sound_marks()
185 previousChar = currentChar; in compose_ja_voiced_sound_marks()
/trunk/main/i18npool/source/inputchecker/
H A Dinputsequencechecker_hi.cxx123 sal_Unicode currentChar = Text[nStartPos]; in checkInputSequence() local
125 sal_uInt16 ch2 = getCharType(currentChar); in checkInputSequence()
/trunk/main/i18npool/inc/
H A Dtransliteration_Ignore.hxx33 sal_Unicode currentChar; member
H A DbreakiteratorImpl.hxx111 static sal_Int16 SAL_CALL getScriptClass(sal_uInt32 currentChar);
/trunk/main/sc/source/core/tool/
H A Dinterpr1.cxx7798 bool SAL_CALL lcl_getScriptClass(sal_uInt32 currentChar) in lcl_getScriptClass() argument
7801 if( (currentChar == 0x005c || currentChar == 0x20ac) && in lcl_getScriptClass()
7806 UBlockCode block = (UBlockCode)ublock_getCode((sal_uInt32)currentChar); in lcl_getScriptClass()