Lines Matching refs:aLine

121     ByteString aLine;  in getStreamBuffer()  local
126 aLine = "printer="; in getStreamBuffer()
127 aLine += ByteString( String( m_aPrinterName ), RTL_TEXTENCODING_UTF8 ); in getStreamBuffer()
128 aStream.WriteLine( aLine ); in getStreamBuffer()
130 aLine = "orientation="; in getStreamBuffer()
131 aLine += m_eOrientation == orientation::Landscape ? "Landscape" : "Portrait"; in getStreamBuffer()
132 aStream.WriteLine( aLine ); in getStreamBuffer()
134 aLine = "copies="; in getStreamBuffer()
135 aLine += ByteString::CreateFromInt32( m_nCopies ); in getStreamBuffer()
136 aStream.WriteLine( aLine ); in getStreamBuffer()
138 aLine = "margindajustment="; in getStreamBuffer()
139 aLine += ByteString::CreateFromInt32( m_nLeftMarginAdjust ); in getStreamBuffer()
140 aLine += ','; in getStreamBuffer()
141 aLine += ByteString::CreateFromInt32( m_nRightMarginAdjust ); in getStreamBuffer()
142 aLine += ','; in getStreamBuffer()
143 aLine += ByteString::CreateFromInt32( m_nTopMarginAdjust ); in getStreamBuffer()
144 aLine += ','; in getStreamBuffer()
145 aLine += ByteString::CreateFromInt32( m_nBottomMarginAdjust ); in getStreamBuffer()
146 aStream.WriteLine( aLine ); in getStreamBuffer()
148 aLine = "colordepth="; in getStreamBuffer()
149 aLine += ByteString::CreateFromInt32( m_nColorDepth ); in getStreamBuffer()
150 aStream.WriteLine( aLine ); in getStreamBuffer()
152 aLine = "pslevel="; in getStreamBuffer()
153 aLine += ByteString::CreateFromInt32( m_nPSLevel ); in getStreamBuffer()
154 aStream.WriteLine( aLine ); in getStreamBuffer()
156 aLine = "pdfdevice="; in getStreamBuffer()
157 aLine += ByteString::CreateFromInt32( m_nPDFDevice ); in getStreamBuffer()
158 aStream.WriteLine( aLine ); in getStreamBuffer()
160 aLine = "colordevice="; in getStreamBuffer()
161 aLine += ByteString::CreateFromInt32( m_nColorDevice ); in getStreamBuffer()
162 aStream.WriteLine( aLine ); in getStreamBuffer()
180 ByteString aLine; in constructFromStreamBuffer() local
193 aStream.ReadLine( aLine ); in constructFromStreamBuffer()
194 if( aLine.CompareTo( "JobData", 7 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
196 else if( aLine.CompareTo( "printer=", 8 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
199 rJobData.m_aPrinterName = String( aLine.Copy( 8 ), RTL_TEXTENCODING_UTF8 ); in constructFromStreamBuffer()
201 else if( aLine.CompareTo( "orientation=", 12 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
204 …rJobData.m_eOrientation = aLine.Copy( 12 ).EqualsIgnoreCaseAscii( "landscape" ) ? orientation::Lan… in constructFromStreamBuffer()
206 else if( aLine.CompareTo( "copies=", 7 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
209 rJobData.m_nCopies = aLine.Copy( 7 ).ToInt32(); in constructFromStreamBuffer()
211 else if( aLine.CompareTo( "margindajustment=",17 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
214 ByteString aValues( aLine.Copy( 17 ) ); in constructFromStreamBuffer()
220 else if( aLine.CompareTo( "colordepth=", 11 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
223 rJobData.m_nColorDepth = aLine.Copy( 11 ).ToInt32(); in constructFromStreamBuffer()
225 else if( aLine.CompareTo( "colordevice=", 12 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
228 rJobData.m_nColorDevice = aLine.Copy( 12 ).ToInt32(); in constructFromStreamBuffer()
230 else if( aLine.CompareTo( "pslevel=", 8 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
233 rJobData.m_nPSLevel = aLine.Copy( 8 ).ToInt32(); in constructFromStreamBuffer()
235 else if( aLine.CompareTo( "pdfdevice=", 10 ) == COMPARE_EQUAL ) in constructFromStreamBuffer()
238 rJobData.m_nPDFDevice = aLine.Copy( 10 ).ToInt32(); in constructFromStreamBuffer()
240 else if( aLine.Equals( "PPDContexData" ) ) in constructFromStreamBuffer()