Lines Matching refs:c

47 sal_uInt16 MnemonicGenerator::ImplGetMnemonicIndex( sal_Unicode c )  in ImplGetMnemonicIndex()  argument
60 if ( (c >= aImplMnemonicRangeTab[i*2]) && in ImplGetMnemonicIndex()
61 (c <= aImplMnemonicRangeTab[i*2+1]) ) in ImplGetMnemonicIndex()
62 return nMnemonicIndex+c-aImplMnemonicRangeTab[i*2]; in ImplGetMnemonicIndex()
115 sal_Unicode c = aKey.GetChar( nIndex ); in RegisterMnemonic() local
117 sal_uInt16 nMnemonicIndex = ImplGetMnemonicIndex( c ); in RegisterMnemonic()
173 sal_Unicode c; in CreateMnemonic() local
178 c = aKey.GetChar( nIndex ); in CreateMnemonic()
179 if ( ((c >= 0x3000) && (c <= 0xD7FF)) || // cjk in CreateMnemonic()
180 ((c >= 0xFF61) && (c <= 0xFFDC)) ) // halfwidth forms in CreateMnemonic()
185 if( ImplGetMnemonicIndex( c ) != MNEMONIC_INDEX_NOTFOUND ) in CreateMnemonic()
195 sal_Unicode c; in CreateMnemonic() local
202 c = aKey.GetChar( nIndex ); in CreateMnemonic()
206 if ( ((c >= 0x3000) && (c <= 0xD7FF)) || // cjk in CreateMnemonic()
207 ((c >= 0xFF61) && (c <= 0xFFDC)) ) // halfwidth forms in CreateMnemonic()
209 else if ( ((c >= 0x0030) && (c <= 0x0039)) || // digits in CreateMnemonic()
210 ((c >= 0x0041) && (c <= 0x005A)) || // latin capitals in CreateMnemonic()
211 ((c >= 0x0061) && (c <= 0x007A)) || // latin small in CreateMnemonic()
212 ((c >= 0x0370) && (c <= 0x037F)) || // greek numeral signs in CreateMnemonic()
213 ((c >= 0x0400) && (c <= 0x04FF)) ) // cyrillic in CreateMnemonic()
217 nMnemonicIndex = ImplGetMnemonicIndex( c ); in CreateMnemonic()
233 c = aKey.GetChar( nIndex ); in CreateMnemonic()
234 if ( c == ' ' ) in CreateMnemonic()
251 c = aKey.GetChar( nIndex ); in CreateMnemonic()
252 nMnemonicIndex = ImplGetMnemonicIndex( c ); in CreateMnemonic()
287 for ( c = MNEMONIC_RANGE_2_START; c <= MNEMONIC_RANGE_2_END; c++ ) in CreateMnemonic()
289 nMnemonicIndex = ImplGetMnemonicIndex( c ); in CreateMnemonic()
297 aStr += c; in CreateMnemonic()
394 sal_Unicode c = aStr.GetChar(i+1); in EraseAllMnemonicChars() local
397 c >= MNEMONIC_RANGE_2_START && c <= MNEMONIC_RANGE_2_END ) in EraseAllMnemonicChars()