Lines Matching refs:rJobData

177 bool JobData::constructFromStreamBuffer( void* pData, int bytes, JobData& rJobData )  in constructFromStreamBuffer()  argument
199 rJobData.m_aPrinterName = String( aLine.Copy( 8 ), RTL_TEXTENCODING_UTF8 ); in constructFromStreamBuffer()
204rJobData.m_eOrientation = aLine.Copy( 12 ).EqualsIgnoreCaseAscii( "landscape" ) ? orientation::Lan… in constructFromStreamBuffer()
209 rJobData.m_nCopies = aLine.Copy( 7 ).ToInt32(); in constructFromStreamBuffer()
215 rJobData.m_nLeftMarginAdjust = aValues.GetToken( 0, ',' ).ToInt32(); in constructFromStreamBuffer()
216 rJobData.m_nRightMarginAdjust = aValues.GetToken( 1, ',' ).ToInt32(); in constructFromStreamBuffer()
217 rJobData.m_nTopMarginAdjust = aValues.GetToken( 2, ',' ).ToInt32(); in constructFromStreamBuffer()
218 rJobData.m_nBottomMarginAdjust = aValues.GetToken( 3, ',' ).ToInt32(); in constructFromStreamBuffer()
223 rJobData.m_nColorDepth = aLine.Copy( 11 ).ToInt32(); in constructFromStreamBuffer()
228 rJobData.m_nColorDevice = aLine.Copy( 12 ).ToInt32(); in constructFromStreamBuffer()
233 rJobData.m_nPSLevel = aLine.Copy( 8 ).ToInt32(); in constructFromStreamBuffer()
238 rJobData.m_nPDFDevice = aLine.Copy( 10 ).ToInt32(); in constructFromStreamBuffer()
245 const PrinterInfo& rInfo = rManager.getPrinterInfo( rJobData.m_aPrinterName ); in constructFromStreamBuffer()
246 rJobData.m_pParser = PPDParser::getParser( rInfo.m_aDriverName ); in constructFromStreamBuffer()
247 if( rJobData.m_pParser ) in constructFromStreamBuffer()
249 rJobData.m_aContext.setParser( rJobData.m_pParser ); in constructFromStreamBuffer()
253 rJobData.m_aContext.rebuildFromStreamBuffer( pRemain, nBytes ); in constructFromStreamBuffer()