Lines Matching refs:aBuf
1749 OStringBuffer aBuf( POSTSCRIPT_BUFSIZE ); in drawEPS() local
1752 aBuf.append( "aa" ); in drawEPS()
1767 aBuf.append( "\n\n/b4_Inc_state_salWin save def\n" in drawEPS()
1805 aBuf.append( "\nnewpath\n" ); in drawEPS()
1806 aBuf.append( pRect->left ); in drawEPS()
1807 aBuf.append( " " ); in drawEPS()
1808 aBuf.append( pRect->top ); in drawEPS()
1809 aBuf.append( " moveto\n" ); in drawEPS()
1810 aBuf.append( pRect->right ); in drawEPS()
1811 aBuf.append( " " ); in drawEPS()
1812 aBuf.append( pRect->top ); in drawEPS()
1813 aBuf.append( " lineto\n" ); in drawEPS()
1814 aBuf.append( pRect->right ); in drawEPS()
1815 aBuf.append( " " ); in drawEPS()
1816 aBuf.append( pRect->bottom ); in drawEPS()
1817 aBuf.append( " lineto\n" ); in drawEPS()
1818 aBuf.append( pRect->left ); in drawEPS()
1819 aBuf.append( " " ); in drawEPS()
1820 aBuf.append( pRect->bottom ); in drawEPS()
1821 aBuf.append( " lineto\n" in drawEPS()
1829 *((sal_uInt16*)aBuf.getStr()) = (sal_uInt16)( aBuf.getLength() - 2 ); in drawEPS()
1830 Escape ( getHDC(), nEscape, aBuf.getLength(), (LPTSTR)aBuf.getStr(), 0 ); in drawEPS()
1838 aBuf.setLength( 2 ); in drawEPS()
1839 aBuf.append( "\n\n[" ); in drawEPS()
1840 aBuf.append( dM11 ); in drawEPS()
1841 aBuf.append( " 0 0 " ); in drawEPS()
1842 aBuf.append( dM22 ); in drawEPS()
1843 aBuf.append( ' ' ); in drawEPS()
1844 aBuf.append( nX - ( dM11 * nBoundingBox[0] ) ); in drawEPS()
1845 aBuf.append( ' ' ); in drawEPS()
1846 aBuf.append( nY - ( dM22 * nBoundingBox[3] ) ); in drawEPS()
1847 aBuf.append( "] concat\n" in drawEPS()
1849 *((sal_uInt16*)aBuf.getStr()) = (sal_uInt16)( aBuf.getLength() - 2 ); in drawEPS()
1850 Escape ( getHDC(), nEscape, aBuf.getLength(), (LPTSTR)aBuf.getStr(), 0 ); in drawEPS()
1864 *((sal_uInt16*)aBuf.getStr()) = (sal_uInt16)nDoNow; in drawEPS()
1865 memcpy( (void*)(aBuf.getStr() + 2), (BYTE*)pPtr + nSize - nToDo, nDoNow ); in drawEPS()
1866 sal_uLong nResult = Escape ( getHDC(), nEscape, nDoNow + 2, (LPTSTR)aBuf.getStr(), 0 ); in drawEPS()
1876 aBuf.setLength( 2 ); in drawEPS()
1877 aBuf.append( "%%EndDocument\n" in drawEPS()
1881 *((sal_uInt16*)aBuf.getStr()) = (sal_uInt16)( aBuf.getLength() - 2 ); in drawEPS()
1882 Escape ( getHDC(), nEscape, aBuf.getLength(), (LPTSTR)aBuf.getStr(), 0 ); in drawEPS()