Lines Matching refs:rCC
724 CharClass &rCC = lcl_GetCharClass(); in IsUpper() local
725 rCC.setLocale( CreateLocale( nLanguage ) ); in IsUpper()
726 sal_Int32 nFlags = rCC.getStringType( rText, nPos, nLen ); in IsUpper()
736 CharClass &rCC = lcl_GetCharClass(); in IsLower() local
737 rCC.setLocale( CreateLocale( nLanguage ) ); in IsLower()
738 sal_Int32 nFlags = rCC.getStringType( rText, nPos, nLen ); in IsLower()
748 CharClass &rCC = lcl_GetCharClass(); in ToLower() local
749 rCC.setLocale( CreateLocale( nLanguage ) ); in ToLower()
750 return rCC.lower( rText ); in ToLower()
758 CharClass &rCC = lcl_GetCharClass(); in ToUpper() local
759 rCC.setLocale( CreateLocale( nLanguage ) ); in ToUpper()
760 return rCC.upper( rText ); in ToUpper()
768 CharClass &rCC = lcl_GetCharClass(); in ToTitle() local
769 rCC.setLocale( CreateLocale( nLanguage ) ); in ToTitle()
770 return rCC.toTitle( rText, 0, rText.Len() ); in ToTitle()
778 CharClass &rCC = lcl_GetCharClass(); in ToLower() local
779 rCC.setLocale( CreateLocale( nLanguage ) ); in ToLower()
780 return rCC.lower( cChar ).GetChar(0); in ToLower()
788 CharClass &rCC = lcl_GetCharClass(); in ToUpper() local
789 rCC.setLocale( CreateLocale( nLanguage ) ); in ToUpper()
790 return rCC.upper( cChar ).GetChar(0); in ToUpper()