Home
last modified time | relevance | path

Searched refs:rChar (Results 1 – 14 of 14) sorted by relevance

/trunk/main/svgio/source/svgreader/
H A Dsvgtools.cxx300 …void skip_char(const rtl::OUString& rCandidate, const sal_Unicode& rChar, sal_Int32& nPos, const s… in skip_char() argument
302 while(nPos < nLen && rChar == rCandidate[nPos]) in skip_char()
628 sal_Int32 read_hex(const sal_Unicode& rChar) in read_hex() argument
630 if(rChar >= sal_Unicode('0') && rChar <=sal_Unicode('9')) in read_hex()
632 return sal_Int32(rChar - sal_Unicode('0')); in read_hex()
634 else if(rChar >= sal_Unicode('A') && rChar <=sal_Unicode('F')) in read_hex()
636 return 10 + sal_Int32(rChar - sal_Unicode('A')); in read_hex()
638 else if(rChar >= sal_Unicode('a') && rChar <=sal_Unicode('f')) in read_hex()
640 return 10 + sal_Int32(rChar - sal_Unicode('a')); in read_hex()
/trunk/main/unotools/source/misc/
H A Dfontcvt.cxx1063 String ConvertChar(sal_Unicode &rChar);
1251 String StarSymbolToMSMultiFontImpl::ConvertChar(sal_Unicode &rChar) in ConvertChar() argument
1256 maMagicMap.find(rChar); in ConvertChar()
1262 rChar = rEntry.cIndex; in ConvertChar()
/trunk/main/automation/source/server/
H A Dsvcommstream.cxx34 ICommStream& SvCommStream::operator>>( comm_BOOL& rChar ) { *pStream >> rChar; return *this; } in operator >>() argument
/trunk/main/sw/source/core/unocore/
H A Dunochart.cxx811 sal_Char &rChar = bDtaSrcIsColumns ? aMap[ii][oi] : aMap[oi][ii]; in Impl_createDataSource() local
814 if (rChar == 'x' && bFirstIsLabel && aLabelIdx[oi] == -1) in Impl_createDataSource()
817 rChar = 'L'; // setting a different char for labels here in Impl_createDataSource()
823 if (rChar == 'x' && aDataStartIdx[oi] == -1) in Impl_createDataSource()
1257 sal_Char &rChar = aMap[i][k]; in detectArguments() local
1258 if (rChar == '\0') // check for overlapping values and/or labels in detectArguments()
1259 rChar = 'L'; in detectArguments()
1279 sal_Char &rChar = aMap[i][k]; in detectArguments() local
1280 if (rChar == '\0') // check for overlapping values and/or labels in detectArguments()
1281 rChar = 'x'; in detectArguments()
/trunk/main/tools/inc/tools/
H A Dstream.hxx357 SvStream& operator>>( signed char& rChar );
358 SvStream& operator>>( char& rChar );
359 SvStream& operator>>( unsigned char& rChar );
/trunk/main/svgio/inc/svgio/svgreader/
H A Dsvgtools.hxx194 …void skip_char(const rtl::OUString& rCandidate, const sal_Unicode& rChar, sal_Int32& nPos, const s…
205 sal_Int32 read_hex(const sal_Unicode& rChar);
/trunk/main/sd/source/filter/eppt/
H A Deppt.cxx2383 const PPTExCharLevel& rChar = mpCharSheet[ nInstance ]->maCharLevel[ nLevel ]; in IsHardAttribute() local
2411 case CharAttr_Font : return ( rChar.mnFont != nValue ); in IsHardAttribute()
2412 case CharAttr_AsianOrComplexFont : return ( rChar.mnAsianOrComplexFont != nValue ); in IsHardAttribute()
2414 case CharAttr_FontHeight : return ( rChar.mnFontHeight != nValue ); in IsHardAttribute()
2415 case CharAttr_FontColor : return ( rChar.mnFontColor != nValue ); in IsHardAttribute()
2416 case CharAttr_Escapement : return ( rChar.mnEscapement != nValue ); in IsHardAttribute()
2422 if ( rChar.mnFlags & nFlag ) in IsHardAttribute()
/trunk/main/sc/source/filter/xml/
H A Dxmlexternaltabi.cxx425 void ScXMLExternalRefCellTextContext::Characters(const OUString& rChar) in Characters() argument
427 maCellStrBuf.append(rChar); in Characters()
H A Dxmlexternaltabi.hxx161 virtual void Characters(const ::rtl::OUString& rChar);
/trunk/main/automation/source/inc/
H A Dicommstream.hxx46 virtual ICommStream& operator>>( comm_BOOL& rChar )=0;
H A Dsvcommstream.hxx41 ICommStream& operator>>( comm_BOOL& rChar );
/trunk/main/unotools/inc/unotools/
H A Dfontcvt.hxx55 virtual String ConvertChar(sal_Unicode &rChar) = 0;
/trunk/main/svtools/source/contnr/
H A Dfileview.cxx214 void DoQuickSearch( const xub_Unicode& rChar );
1117 void ViewTabListBox_Impl::DoQuickSearch( const xub_Unicode& rChar ) in DoQuickSearch() argument
1127 maQuickSearchText += OUString( String( rChar ) ).toAsciiLowerCase(); in DoQuickSearch()
1132 ( aLastText == OUString( String( rChar ) ) ) ) in DoQuickSearch()
/trunk/main/vcl/unx/generic/fontmanager/
H A Dfontmanager.cxx444 CharacterMetric& rChar = m_pMetrics->m_aMetrics[ nPage*256 + i ]; in queryMetricPage() local
445 rChar.width = pMetrics[ i ].adv; in queryMetricPage()
446 rChar.height = m_aGlobalMetricX.height; in queryMetricPage()
463 CharacterMetric& rChar = m_pMetrics->m_aMetrics[ nPage*256 + i + ( 1 << 16 ) ]; in queryMetricPage() local
464 rChar.width = m_aGlobalMetricY.width; in queryMetricPage()
465 rChar.height = pMetrics[ i ].adv; in queryMetricPage()

Completed in 130 milliseconds