Lines Matching refs:aAny
638 uno::Any aAny; in ~SvXMLExport() local
639 aAny <<= nProgressMax; in ~SvXMLExport()
640 mxExportInfo->setPropertyValue(sProgressMax, aAny); in ~SvXMLExport()
641 aAny <<= nProgressCurrent; in ~SvXMLExport()
642 mxExportInfo->setPropertyValue(sProgressCurrent, aAny); in ~SvXMLExport()
654 uno::Any aAny; in ~SvXMLExport() local
655 aAny <<= aWasUsed; in ~SvXMLExport()
656 mxExportInfo->setPropertyValue(sWrittenNumberFormats, aAny); in ~SvXMLExport()
702 uno::Any aAny = mxExportInfo->getPropertyValue(sUsePrettyPrinting); in setSourceDocument() local
705 if (::cppu::any2bool(aAny)) in setSourceDocument()
721 uno::Any aAny = mxExportInfo->getPropertyValue(sWrittenNumberFormats); in setSourceDocument() local
723 if(aAny >>= aWasUsed) in setSourceDocument()
834 uno::Any aAny = mxExportInfo->getPropertyValue(sPropName); in initialize() local
835 aAny >>= msOrigFileName; in initialize()
843 uno::Any aAny = mxExportInfo->getPropertyValue(sPropName); in initialize() local
844 aAny >>= sRelPath; in initialize()
850 uno::Any aAny = mxExportInfo->getPropertyValue(sPropName); in initialize() local
851 aAny >>= sName; in initialize()
868 uno::Any aAny = mxExportInfo->getPropertyValue( sOutlineStyleAsNormalListStyle ); in initialize() local
869 aAny >>= (mpImpl->mbOutlineStyleAsNormalListStyle); in initialize()
882 uno::Any aAny = mxExportInfo->getPropertyValue( sExportTextNumberElement ); in initialize() local
883 aAny >>= (mpImpl->mbExportTextNumberElement); in initialize()
1393 Any aAny; in exportDoc() local
1394 aAny <<= GetXMLToken( eClass ); in exportDoc()
1396 OUString(RTL_CONSTASCII_USTRINGPARAM("Class")), aAny ); in exportDoc()
1908 uno::Any aAny; in GetViewSettingsAndViews() local
1914 aAny = xIndexAccess->getByIndex(i); in GetViewSettingsAndViews()
1916 if( aAny >>= aProps ) in GetViewSettingsAndViews()
2067 Any aAny = xNA->getByName( rEmbeddedObjectURL ); in AddEmbeddedObjectAsBase64() local
2069 aAny >>= xIn; in AddEmbeddedObjectAsBase64()
2107 uno::Any aAny; in GetProgressBarHelper() local
2111 aAny = mxExportInfo->getPropertyValue(sProgressRange); in GetProgressBarHelper()
2112 if (aAny >>= nProgressRange) in GetProgressBarHelper()
2114 aAny = mxExportInfo->getPropertyValue(sProgressMax); in GetProgressBarHelper()
2115 if (aAny >>= nProgressMax) in GetProgressBarHelper()
2117 aAny = mxExportInfo->getPropertyValue(sProgressCurrent); in GetProgressBarHelper()
2118 if (aAny >>= nProgressCurrent) in GetProgressBarHelper()
2123 uno::Any aAny = mxExportInfo->getPropertyValue(sRepeat); in GetProgressBarHelper() local
2124 if (aAny.getValueType() == getBooleanCppuType()) in GetProgressBarHelper()
2125 mpProgressBarHelper->SetRepeat(::cppu::any2bool(aAny)); in GetProgressBarHelper()