Lines Matching refs:c

853 							sal_Unicode c = rAttrValue[pos];  in ProcessAttrList()  local
854 if( (c >= '0') && (c <= '9') ) in ProcessAttrList()
855 aBuffer.append( c ); in ProcessAttrList()
857 aBuffer.append( (sal_Int32)c ); in ProcessAttrList()
943 sal_Unicode c = rValue[nPos]; in ReplaceInchWithIn() local
944 if( 'i'==c || 'I'==c ) in ReplaceInchWithIn()
946 c = rValue[nPos-1]; in ReplaceInchWithIn()
947 if( (c >= '0' && c <= '9') || '.' == c ) in ReplaceInchWithIn()
949 c = rValue[nPos+1]; in ReplaceInchWithIn()
950 if( 'n'==c || 'N'==c ) in ReplaceInchWithIn()
952 c = rValue[nPos+2]; in ReplaceInchWithIn()
953 if( 'c'==c || 'C'==c ) in ReplaceInchWithIn()
955 c = rValue[nPos+3]; in ReplaceInchWithIn()
956 if( 'h'==c || 'H'==c ) in ReplaceInchWithIn()
1002 sal_Unicode c = rValue[nPos]; in ReplaceInWithInch() local
1003 if( 'i'==c || 'I'==c ) in ReplaceInWithInch()
1005 c = rValue[nPos-1]; in ReplaceInWithInch()
1006 if( (c >= '0' && c <= '9') || '.' == c ) in ReplaceInWithInch()
1008 c = rValue[nPos+1]; in ReplaceInWithInch()
1009 if( 'n'==c || 'N'==c ) in ReplaceInWithInch()
1036 sal_Unicode c = rName[i]; in EncodeStyleName() local
1038 if( c < 0x00ffU ) in EncodeStyleName()
1041 (c >= 0x0041 && c <= 0x005a) || in EncodeStyleName()
1042 (c >= 0x0061 && c <= 0x007a) || in EncodeStyleName()
1043 (c >= 0x00c0 && c <= 0x00d6) || in EncodeStyleName()
1044 (c >= 0x00d8 && c <= 0x00f6) || in EncodeStyleName()
1045 (c >= 0x00f8 && c <= 0x00ff) || in EncodeStyleName()
1046 ( i > 0 && ( (c >= 0x0030 && c <= 0x0039) || in EncodeStyleName()
1047 c == 0x00b7 || c == '-' || c == '.') ); in EncodeStyleName()
1051 if( (c >= 0xf900U && c <= 0xfffeU) || in EncodeStyleName()
1052 (c >= 0x20ddU && c <= 0x20e0U)) in EncodeStyleName()
1056 else if( (c >= 0x02bbU && c <= 0x02c1U) || c == 0x0559 || in EncodeStyleName()
1057 c == 0x06e5 || c == 0x06e6 ) in EncodeStyleName()
1061 else if( c == 0x0387 ) in EncodeStyleName()
1117 aBuffer.append( c ); in EncodeStyleName()
1122 if( c > 0x0fff ) in EncodeStyleName()
1124 aHexTab[ (c >> 12) & 0x0f ] ) ); in EncodeStyleName()
1125 if( c > 0x00ff ) in EncodeStyleName()
1127 aHexTab[ (c >> 8) & 0x0f ] ) ); in EncodeStyleName()
1128 if( c > 0x000f ) in EncodeStyleName()
1130 aHexTab[ (c >> 4) & 0x0f ] ) ); in EncodeStyleName()
1132 aHexTab[ c & 0x0f ] ) ); in EncodeStyleName()
1157 sal_Unicode c = rName[i]; in DecodeStyleName() local
1158 if( '_' == c ) in DecodeStyleName()
1174 if( c >= '0' && c <= '9' ) in DecodeStyleName()
1176 cDigit = c - '0'; in DecodeStyleName()
1178 else if( c >= 'a' && c <= 'f' ) in DecodeStyleName()
1180 cDigit = c - 'a' + 10; in DecodeStyleName()
1182 else if( c >= 'A' && c <= 'F' ) in DecodeStyleName()
1184 cDigit = c - 'A' + 10; in DecodeStyleName()
1196 aBuffer.append( c ); in DecodeStyleName()