Lines Matching refs:aCommand
69 String aCommand; in getSystemPdfCommands() local
80 aCommand = String( ByteString( pBuffer ), aEncoding ); in getSystemPdfCommands()
81 if( ( ( aCommand.GetChar( 0 ) == '/' ) in getSystemPdfCommands()
82 || ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '/' ) in getSystemPdfCommands()
83 …|| ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '.' && aCommand.GetChar( 2 ) == '/' … in getSystemPdfCommands()
85 && aCommand.GetChar( nLen-2 ) == 'g' in getSystemPdfCommands()
86 && aCommand.GetChar( nLen-1 ) == 's' ) in getSystemPdfCommands()
88 aCommand.AppendAscii( " -q -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=\"(OUTFILE)\" -" ); in getSystemPdfCommands()
89 aSysCommands.push_back( aCommand ); in getSystemPdfCommands()
103 aCommand = String( ByteString( pBuffer ), aEncoding ); in getSystemPdfCommands()
104 if( ( ( aCommand.GetChar( 0 ) == '/' ) in getSystemPdfCommands()
105 || ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '/' ) in getSystemPdfCommands()
106 …|| ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '.' && aCommand.GetChar( 2 ) == '/' … in getSystemPdfCommands()
108 && aCommand.Copy( nLen - 8 ).EqualsAscii( "/distill" ) ) in getSystemPdfCommands()
110 aCommand.AppendAscii( " (TMP) ; mv `echo (TMP) | sed s/\\.ps\\$/.pdf/` \"(OUTFILE)\"" ); in getSystemPdfCommands()
111 aSysCommands.push_back( aCommand ); in getSystemPdfCommands()
132 String aCommand( rConfig.ReadKey( ByteString::CreateFromInt32( nKeys ), RTL_TEXTENCODING_UTF8 ) ); in getStoredCommands() local
133 if( aCommand.Len() ) in getStoredCommands()
135 for( it = rCommands.begin(); it != rCommands.end() && *it != aCommand; ++it ) in getStoredCommands()
138 rCommands.push_back( aCommand ); in getStoredCommands()
323 String aCommand,aQuickCommand; in save() local
389 aCommand = m_aCommandsCB.GetText(); in save()
391 for( it = pList->begin(); it != pList->end() && *it != aCommand; ++it ) in save()
394 pList->push_back( aCommand ); in save()
396 if( aCommand != String( m_pParent->m_aJobData.m_aCommand ) || in save()
408 m_pParent->m_aJobData.m_aCommand = aCommand; in save()