Lines Matching refs:nFormat

351 String FilterConfigCache::GetImportFilterName( sal_uInt16 nFormat )  in GetImportFilterName()  argument
353 if( nFormat < aImport.size() ) in GetImportFilterName()
354 return aImport[ nFormat ].sFilterName; in GetImportFilterName()
406 String FilterConfigCache::GetImportFormatName( sal_uInt16 nFormat ) in GetImportFormatName() argument
408 if( nFormat < aImport.size() ) in GetImportFormatName()
409 return aImport[ nFormat ].sUIName; in GetImportFormatName()
413 String FilterConfigCache::GetImportFormatMediaType( sal_uInt16 nFormat ) in GetImportFormatMediaType() argument
415 if( nFormat < aImport.size() ) in GetImportFormatMediaType()
416 return aImport[ nFormat ].sMediaType; in GetImportFormatMediaType()
420 String FilterConfigCache::GetImportFormatShortName( sal_uInt16 nFormat ) in GetImportFormatShortName() argument
422 if( nFormat < aImport.size() ) in GetImportFormatShortName()
423 return aImport[ nFormat ].GetShortName(); in GetImportFormatShortName()
427 String FilterConfigCache::GetImportFormatExtension( sal_uInt16 nFormat, sal_Int32 nEntry ) in GetImportFormatExtension() argument
429 if ( (nFormat < aImport.size()) && (nEntry < aImport[ nFormat ].lExtensionList.getLength()) ) in GetImportFormatExtension()
430 return aImport[ nFormat ].lExtensionList[ nEntry ]; in GetImportFormatExtension()
434 String FilterConfigCache::GetImportFilterType( sal_uInt16 nFormat ) in GetImportFilterType() argument
436 if( nFormat < aImport.size() ) in GetImportFilterType()
437 return aImport[ nFormat ].sType; in GetImportFilterType()
441 String FilterConfigCache::GetImportFilterTypeName( sal_uInt16 nFormat ) in GetImportFilterTypeName() argument
443 if( nFormat < aImport.size() ) in GetImportFilterTypeName()
444 return aImport[ nFormat ].sFilterType; in GetImportFilterTypeName()
448 String FilterConfigCache::GetImportWildcard( sal_uInt16 nFormat, sal_Int32 nEntry ) in GetImportWildcard() argument
450 String aWildcard( GetImportFormatExtension( nFormat, nEntry ) ); in GetImportWildcard()
456 sal_Bool FilterConfigCache::IsImportInternalFilter( sal_uInt16 nFormat ) in IsImportInternalFilter() argument
458 return (nFormat < aImport.size()) && aImport[ nFormat ].bIsInternalFilter; in IsImportInternalFilter()
461 sal_Bool FilterConfigCache::IsImportPixelFormat( sal_uInt16 nFormat ) in IsImportPixelFormat() argument
463 return (nFormat < aImport.size()) && aImport[ nFormat ].bIsPixelFormat; in IsImportPixelFormat()
466 sal_Bool FilterConfigCache::IsImportDialog( sal_uInt16 nFormat ) in IsImportDialog() argument
468 return (nFormat < aImport.size()) && aImport[ nFormat ].bHasDialog; in IsImportDialog()
473 String FilterConfigCache::GetExportFilterName( sal_uInt16 nFormat ) in GetExportFilterName() argument
475 if( nFormat < aExport.size() ) in GetExportFilterName()
476 return aExport[ nFormat ].sFilterName; in GetExportFilterName()
528 String FilterConfigCache::GetExportFormatName( sal_uInt16 nFormat ) in GetExportFormatName() argument
530 if( nFormat < aExport.size() ) in GetExportFormatName()
531 return aExport[ nFormat ].sUIName; in GetExportFormatName()
535 String FilterConfigCache::GetExportFormatMediaType( sal_uInt16 nFormat ) in GetExportFormatMediaType() argument
537 if( nFormat < aExport.size() ) in GetExportFormatMediaType()
538 return aExport[ nFormat ].sMediaType; in GetExportFormatMediaType()
542 String FilterConfigCache::GetExportFormatShortName( sal_uInt16 nFormat ) in GetExportFormatShortName() argument
544 if( nFormat < aExport.size() ) in GetExportFormatShortName()
545 return aExport[ nFormat ].GetShortName(); in GetExportFormatShortName()
549 String FilterConfigCache::GetExportFormatExtension( sal_uInt16 nFormat, sal_Int32 nEntry ) in GetExportFormatExtension() argument
551 if ( (nFormat < aExport.size()) && (nEntry < aExport[ nFormat ].lExtensionList.getLength()) ) in GetExportFormatExtension()
552 return aExport[ nFormat ].lExtensionList[ nEntry ]; in GetExportFormatExtension()
556 String FilterConfigCache::GetExportFilterTypeName( sal_uInt16 nFormat ) in GetExportFilterTypeName() argument
558 if( nFormat < aExport.size() ) in GetExportFilterTypeName()
559 return aExport[ nFormat ].sFilterType; in GetExportFilterTypeName()
563 String FilterConfigCache::GetExportInternalFilterName( sal_uInt16 nFormat ) in GetExportInternalFilterName() argument
565 if( nFormat < aExport.size() ) in GetExportInternalFilterName()
566 return aExport[ nFormat ].sInternalFilterName; in GetExportInternalFilterName()
570 String FilterConfigCache::GetExportWildcard( sal_uInt16 nFormat, sal_Int32 nEntry ) in GetExportWildcard() argument
572 String aWildcard( GetExportFormatExtension( nFormat, nEntry ) ); in GetExportWildcard()
578 sal_Bool FilterConfigCache::IsExportInternalFilter( sal_uInt16 nFormat ) in IsExportInternalFilter() argument
580 return (nFormat < aExport.size()) && aExport[ nFormat ].bIsInternalFilter; in IsExportInternalFilter()
583 sal_Bool FilterConfigCache::IsExportPixelFormat( sal_uInt16 nFormat ) in IsExportPixelFormat() argument
585 return (nFormat < aExport.size()) && aExport[ nFormat ].bIsPixelFormat; in IsExportPixelFormat()
588 sal_Bool FilterConfigCache::IsExportDialog( sal_uInt16 nFormat ) in IsExportDialog() argument
590 return (nFormat < aExport.size()) && aExport[ nFormat ].bHasDialog; in IsExportDialog()