Lines Matching refs:pFontData

2249 inline const ImplPdfBuiltinFontData* GetPdfFontData( const ImplFontData* pFontData )  in GetPdfFontData()  argument
2252 if( pFontData && pFontData->CheckMagic( ImplPdfBuiltinFontData::PDF_FONT_MAGIC ) ) in GetPdfFontData()
2253 pFD = static_cast<const ImplPdfBuiltinFontData*>( pFontData ); in GetPdfFontData()
3133 const unsigned char* pFontData = NULL; in emitSystemFont() local
3137 …if( (pFontData = (const unsigned char*)m_pReferenceDevice->mpGraphics->GetEmbedFontData( pFont, nE… in emitSystemFont()
3139 m_pReferenceDevice->mpGraphics->FreeEmbedFontData( pFontData, nFontLen ); in emitSystemFont()
3305 const unsigned char* pFontData = NULL; in emitEmbeddedFont() local
3310 …if( (pFontData = (const unsigned char*)m_pReferenceDevice->mpGraphics->GetEmbedFontData( pFont, nE… in emitEmbeddedFont()
3319 while( pFontData[nIndex] == 0x80 && nIndex < nFontLen-1 ) in emitEmbeddedFont()
3322 if( pFontData[nIndex+1] == 0x03 ) in emitEmbeddedFont()
3325 ((sal_Int32)pFontData[nIndex+2]) | in emitEmbeddedFont()
3326 ((sal_Int32)pFontData[nIndex+3]) << 8 | in emitEmbeddedFont()
3327 ((sal_Int32)pFontData[nIndex+4]) << 16 | in emitEmbeddedFont()
3328 ((sal_Int32)pFontData[nIndex+5]) << 24; in emitEmbeddedFont()
3341 ( pFontData[nIndex] != 'e' || in emitEmbeddedFont()
3342 pFontData[nIndex+1] != 'e' || in emitEmbeddedFont()
3343 pFontData[nIndex+2] != 'x' || in emitEmbeddedFont()
3344 pFontData[nIndex+3] != 'e' || in emitEmbeddedFont()
3345 pFontData[nIndex+4] != 'c' in emitEmbeddedFont()
3372 if( pFontData[nIndex] == '0' ) in emitEmbeddedFont()
3375 pFontData[nIndex] != '\r' && in emitEmbeddedFont()
3376 pFontData[nIndex] != '\t' && in emitEmbeddedFont()
3377 pFontData[nIndex] != '\n' && in emitEmbeddedFont()
3378 pFontData[nIndex] != ' ' ) in emitEmbeddedFont()
3406 while( pFontData[nIndex] == '\r' || pFontData[nIndex] == '\n' ) in emitEmbeddedFont()
3427 ( pFontData[nBeginBinaryIndex] == '\r' || in emitEmbeddedFont()
3428 pFontData[nBeginBinaryIndex] == '\n' || in emitEmbeddedFont()
3447 …( ( pFontData[ nBeginBinaryIndex+nIndex ] >= '0' && pFontData[ nBeginBinaryIndex+nIndex ] <= '9' )… in emitEmbeddedFont()
3448 …( pFontData[ nBeginBinaryIndex+nIndex ] >= 'a' && pFontData[ nBeginBinaryIndex+nIndex ] <= 'f' ) || in emitEmbeddedFont()
3449 … ( pFontData[ nBeginBinaryIndex+nIndex ] >= 'A' && pFontData[ nBeginBinaryIndex+nIndex ] <= 'F' ) in emitEmbeddedFont()
3478 if( ( pFontData[ nIndex ] >= '0' && pFontData[ nIndex ] <= '9' ) || in emitEmbeddedFont()
3479 ( pFontData[ nIndex ] >= 'a' && pFontData[ nIndex ] <= 'f' ) || in emitEmbeddedFont()
3480 ( pFontData[ nIndex ] >= 'A' && pFontData[ nIndex ] <= 'F' ) ) in emitEmbeddedFont()
3524 if( ! writeBuffer( pFontData, nEndAsciiIndex+1 ) ) in emitEmbeddedFont()
3535 if( ! writeBuffer( pFontData+nIndex, (*it)-nIndex ) ) in emitEmbeddedFont()
3541 if( ! writeBuffer( pFontData+nIndex, nEndAsciiIndex-nIndex+1 ) ) in emitEmbeddedFont()
3550 … if( ! writeBuffer( pFontData+nBeginBinaryIndex, nFontLen-nBeginBinaryIndex ) ) in emitEmbeddedFont()
3558 … if( ! writeBuffer( pFontData+nBeginBinaryIndex, (*it) - nBeginBinaryIndex ) ) in emitEmbeddedFont()
3568 if( ! writeBuffer( pFontData+nIndex, nSectionLen ) ) in emitEmbeddedFont()
3594 if( pFontData[ nIndex ] >= '0' && pFontData[ nIndex ] <= '9' ) in emitEmbeddedFont()
3595 cNibble = pFontData[nIndex] - '0'; in emitEmbeddedFont()
3596 else if( pFontData[ nIndex ] >= 'a' && pFontData[ nIndex ] <= 'f' ) in emitEmbeddedFont()
3597 cNibble = pFontData[nIndex] - 'a' + 10; in emitEmbeddedFont()
3598 else if( pFontData[ nIndex ] >= 'A' && pFontData[ nIndex ] <= 'F' ) in emitEmbeddedFont()
3599 cNibble = pFontData[nIndex] - 'A' + 10; in emitEmbeddedFont()
3612 if( ! writeBuffer( pFontData+nIndex, nFontLen-nIndex ) ) in emitEmbeddedFont()
3620 if( ! writeBuffer( pFontData+nIndex, nNextSectionIndex - nIndex ) ) in emitEmbeddedFont()
3631 if( ! writeBuffer( pFontData+nIndex, nSectionLen ) ) in emitEmbeddedFont()
3821 if( pFontData ) in emitEmbeddedFont()
3822 m_pReferenceDevice->mpGraphics->FreeEmbedFontData( pFontData, nFontLen ); in emitEmbeddedFont()