Lines Matching refs:xPropSet

82 		XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStream );  in WriteBytesToStream()  local
83 if ( xPropSet == null ) in WriteBytesToStream()
92 xPropSet.setPropertyValue( "MediaType", sMediaType ); in WriteBytesToStream()
93 xPropSet.setPropertyValue( "Compressed", new Boolean( bCompressed ) ); in WriteBytesToStream()
104 int nSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); in WriteBytesToStream()
172 …XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xSubStream ); in WriteBytesToSubstreamDefaultCompressed() local
173 if ( xPropSet == null ) in WriteBytesToSubstreamDefaultCompressed()
183 xPropSet.setPropertyValue( "MediaType", sMediaType ); in WriteBytesToSubstreamDefaultCompressed()
194 int nSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); in WriteBytesToSubstreamDefaultCompressed()
309 …XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xSubStream ); in WBToSubstrOfEncr() local
310 if ( xPropSet == null ) in WBToSubstrOfEncr()
319 xPropSet.setPropertyValue( "UseCommonStoragePasswordEncryption", new Boolean( bEncrypted ) ); in WBToSubstrOfEncr()
499 …XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xSubStream ); in WBToSubstrOfEncrH() local
500 if ( xPropSet == null ) in WBToSubstrOfEncrH()
509 xPropSet.setPropertyValue( "UseCommonStoragePasswordEncryption", new Boolean( bEncrypted ) ); in WBToSubstrOfEncrH()
678 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in setStorageTypeAndCheckProps() local
679 if ( xPropSet != null ) in setStorageTypeAndCheckProps()
684 xPropSet.setPropertyValue( "MediaType", sMediaType ); in setStorageTypeAndCheckProps()
687 boolean bPropIsRoot = AnyConverter.toBoolean( xPropSet.getPropertyValue( "IsRoot" ) ); in setStorageTypeAndCheckProps()
688 int nPropMode = AnyConverter.toInt( xPropSet.getPropertyValue( "OpenMode" ) ); in setStorageTypeAndCheckProps()
723 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in checkStorageProperties() local
724 if ( xPropSet != null ) in checkStorageProperties()
729 String sPropMediaType = AnyConverter.toString( xPropSet.getPropertyValue( "MediaType" ) ); in checkStorageProperties()
730 boolean bPropIsRoot = AnyConverter.toBoolean( xPropSet.getPropertyValue( "IsRoot" ) ); in checkStorageProperties()
731 int nPropMode = AnyConverter.toInt( xPropSet.getPropertyValue( "OpenMode" ) ); in checkStorageProperties()
824 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStream ); in InternalCheckStream() local
825 if ( xPropSet != null ) in InternalCheckStream()
830 String sPropMediaType = AnyConverter.toString( xPropSet.getPropertyValue( "MediaType" ) ); in InternalCheckStream()
831 int nPropSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); in InternalCheckStream()
832 … boolean bPropCompress = AnyConverter.toBoolean( xPropSet.getPropertyValue( "Compressed" ) ); in InternalCheckStream()