Lines Matching refs:xPropSet
78 … XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStream ); in WriteBytesToStream() local
79 if ( xPropSet == null ) in WriteBytesToStream()
88 xPropSet.setPropertyValue( "MediaType", sMediaType ); in WriteBytesToStream()
89 xPropSet.setPropertyValue( "Compressed", new Boolean( bCompressed ) ); in WriteBytesToStream()
100 int nSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); in WriteBytesToStream()
207 …XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xSubStream ); in WBToSubstrOfEncr() local
208 if ( xPropSet == null ) in WBToSubstrOfEncr()
217 xPropSet.setPropertyValue( "Encrypted", new Boolean( bEncrypted ) ); in WBToSubstrOfEncr()
288 … XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in setStorageTypeAndCheckProps() local
289 if ( xPropSet != null ) in setStorageTypeAndCheckProps()
294 xPropSet.setPropertyValue( "MediaType", sMediaType ); in setStorageTypeAndCheckProps()
297 … boolean bPropIsRoot = AnyConverter.toBoolean( xPropSet.getPropertyValue( "IsRoot" ) ); in setStorageTypeAndCheckProps()
298 int nPropMode = AnyConverter.toInt( xPropSet.getPropertyValue( "OpenMode" ) ); in setStorageTypeAndCheckProps()
332 … XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in checkStorageProperties() local
333 if ( xPropSet != null ) in checkStorageProperties()
338 … String sPropMediaType = AnyConverter.toString( xPropSet.getPropertyValue( "MediaType" ) ); in checkStorageProperties()
339 … boolean bPropIsRoot = AnyConverter.toBoolean( xPropSet.getPropertyValue( "IsRoot" ) ); in checkStorageProperties()
340 int nPropMode = AnyConverter.toInt( xPropSet.getPropertyValue( "OpenMode" ) ); in checkStorageProperties()
430 … XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStream ); in InternalCheckStream() local
431 if ( xPropSet != null ) in InternalCheckStream()
436 … String sPropMediaType = AnyConverter.toString( xPropSet.getPropertyValue( "MediaType" ) ); in InternalCheckStream()
437 int nPropSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); in InternalCheckStream()