Lines Matching refs:xProperties

376 writeCoreProperties( XmlFilterBase& rSelf, Reference< XDocumentProperties > xProperties )  in writeCoreProperties()  argument
397 … writeElement( pCoreProps, FSNS( XML_dcterms, XML_created ), xProperties->getCreationDate() ); in writeCoreProperties()
398 writeElement( pCoreProps, FSNS( XML_dc, XML_creator ), xProperties->getAuthor() ); in writeCoreProperties()
399 writeElement( pCoreProps, FSNS( XML_dc, XML_description ), xProperties->getDescription() ); in writeCoreProperties()
403 writeElement( pCoreProps, FSNS( XML_cp, XML_keywords ), xProperties->getKeywords() ); in writeCoreProperties()
404 writeElement( pCoreProps, FSNS( XML_dc, XML_language ), xProperties->getLanguage() ); in writeCoreProperties()
405 writeElement( pCoreProps, FSNS( XML_cp, XML_lastModifiedBy ), xProperties->getModifiedBy() ); in writeCoreProperties()
406 writeElement( pCoreProps, FSNS( XML_cp, XML_lastPrinted ), xProperties->getPrintDate() ); in writeCoreProperties()
407 …writeElement( pCoreProps, FSNS( XML_dcterms, XML_modified ), xProperties->getModificationDate()… in writeCoreProperties()
408 … writeElement( pCoreProps, FSNS( XML_cp, XML_revision ), xProperties->getEditingCycles() ); in writeCoreProperties()
409 writeElement( pCoreProps, FSNS( XML_dc, XML_subject ), xProperties->getSubject() ); in writeCoreProperties()
410 writeElement( pCoreProps, FSNS( XML_dc, XML_title ), xProperties->getTitle() ); in writeCoreProperties()
419 writeAppProperties( XmlFilterBase& rSelf, Reference< XDocumentProperties > xProperties ) in writeAppProperties() argument
432 writeElement( pAppProps, XML_Template, xProperties->getTemplateName() ); in writeAppProperties()
445 writeElement( pAppProps, XML_TotalTime, xProperties->getEditingDuration() ); in writeAppProperties()
460 writeElement( pAppProps, XML_Application, xProperties->getGenerator() ); in writeAppProperties()
468 …FilterBase& XmlFilterBase::exportDocumentProperties( Reference< XDocumentProperties > xProperties ) in exportDocumentProperties() argument
470 if( xProperties.is() ) in exportDocumentProperties()
472 writeCoreProperties( *this, xProperties ); in exportDocumentProperties()
473 writeAppProperties( *this, xProperties ); in exportDocumentProperties()
474 … Sequence< ::com::sun::star::beans::NamedValue > aStats = xProperties->getDocumentStatistics(); in exportDocumentProperties()