Lines Matching refs:pArgs

392     static CommandLineArgs* pArgs = 0;  in GetCommandLineArgs()  local
393 if ( !pArgs ) in GetCommandLineArgs()
396 if ( !pArgs ) in GetCommandLineArgs()
397 pArgs = new CommandLineArgs; in GetCommandLineArgs()
400 return pArgs; in GetCommandLineArgs()
1750 CommandLineArgs* pArgs = GetCommandLineArgs(); in Exception() local
1755 …( !pArgs->IsNoRestore() ) && // some use cases of office must work without reco… in Exception()
1756 ( !pArgs->IsHeadless() ) && in Exception()
1757 ( !pArgs->IsServer() ) && in Exception()
2598 void Desktop::PreloadModuleData( CommandLineArgs* pArgs ) in PreloadModuleData() argument
2611 if ( pArgs->IsWriter() ) in PreloadModuleData()
2623 if ( pArgs->IsCalc() ) in PreloadModuleData()
2635 if ( pArgs->IsDraw() ) in PreloadModuleData()
2647 if ( pArgs->IsImpress() ) in PreloadModuleData()
2949 CommandLineArgs* pArgs = GetCommandLineArgs(); in OpenClients() local
2954 if (!pArgs->IsQuickstart()) { in OpenClients()
2957 if (pArgs->IsHelpWriter()) { in OpenClients()
2960 } else if (pArgs->IsHelpCalc()) { in OpenClients()
2963 } else if (pArgs->IsHelpDraw()) { in OpenClients()
2966 } else if (pArgs->IsHelpImpress()) { in OpenClients()
2969 } else if (pArgs->IsHelpBase()) { in OpenClients()
2972 } else if (pArgs->IsHelpBasic()) { in OpenClients()
2975 } else if (pArgs->IsHelpMath()) { in OpenClients()
3024 if ( pArgs->IsWriter() || in OpenClients()
3025 pArgs->IsCalc() || in OpenClients()
3026 pArgs->IsDraw() || in OpenClients()
3027 pArgs->IsImpress() ) in OpenClients()
3029 PreloadModuleData( pArgs ); in OpenClients()
3044 ( !pArgs->IsNoRestore() ) && in OpenClients()
3045 ( !pArgs->IsHeadless() ) && in OpenClients()
3046 ( !pArgs->IsServer() ) in OpenClients()
3162 if ( !pArgs->IsServer() ) in OpenClients()
3164 ProcessDocumentsRequest aRequest(pArgs->getCwdUrl()); in OpenClients()
3167 pArgs->GetOpenList( aRequest.aOpenList ); in OpenClients()
3168 pArgs->GetViewList( aRequest.aViewList ); in OpenClients()
3169 pArgs->GetStartList( aRequest.aStartList ); in OpenClients()
3170 pArgs->GetPrintList( aRequest.aPrintList ); in OpenClients()
3171 pArgs->GetPrintToList( aRequest.aPrintToList ); in OpenClients()
3172 pArgs->GetPrinterName( aRequest.aPrinterName ); in OpenClients()
3173 pArgs->GetForceOpenList( aRequest.aForceOpenList ); in OpenClients()
3174 pArgs->GetForceNewList( aRequest.aForceNewList ); in OpenClients()
3186 if ( pArgs->HasModuleParam() ) in OpenClients()
3191 if ( pArgs->IsWriter() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SWRITER ) ) in OpenClients()
3193 else if ( pArgs->IsCalc() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SCALC ) ) in OpenClients()
3195 … else if ( pArgs->IsImpress() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SIMPRESS ) ) in OpenClients()
3197 else if ( pArgs->IsDraw() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SDRAW ) ) in OpenClients()
3229 if ( xList->hasElements() || pArgs->IsServer() ) in OpenClients()
3232 …if ( pArgs->IsQuickstart() || pArgs->IsInvisible() || pArgs->IsBean() || Application::AnyInput( IN… in OpenClients()
3248 CommandLineArgs* pArgs = GetCommandLineArgs(); in OpenDefault() local
3249 if ( pArgs->IsNoDefault() ) return; in OpenDefault()
3250 if ( pArgs->HasModuleParam() ) in OpenDefault()
3253 if ( pArgs->IsWriter() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SWRITER ) ) in OpenDefault()
3255 else if ( pArgs->IsCalc() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SCALC ) ) in OpenDefault()
3257 else if ( pArgs->IsImpress() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SIMPRESS ) ) in OpenDefault()
3259 else if ( pArgs->IsBase() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SDATABASE ) ) in OpenDefault()
3261 else if ( pArgs->IsDraw() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SDRAW ) ) in OpenDefault()
3263 else if ( pArgs->IsMath() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SMATH ) ) in OpenDefault()
3265 else if ( pArgs->IsGlobal() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SWRITER ) ) in OpenDefault()
3267 else if ( pArgs->IsWeb() && aOpt.IsModuleInstalled( SvtModuleOptions::E_SWRITER ) ) in OpenDefault()
3288 ProcessDocumentsRequest aRequest(pArgs->getCwdUrl()); in OpenDefault()