Home
last modified time | relevance | path

Searched refs:stream (Results 26 – 50 of 237) sorted by relevance

12345678910

/trunk/main/odk/examples/DevelopersGuide/UCB/
H A DDataStreamComposer.java99 XInputStream stream; in setDataStream() local
101 stream = new MyInputStream(); in setDataStream()
106 stream = access.getDataStream(); in setDataStream()
108 return ( setDataStream( stream )); in setDataStream()
119 public boolean setDataStream( XInputStream stream ) in setDataStream() argument
123 XInputStream data = stream; in setDataStream()
/trunk/main/offapi/com/sun/star/mozilla/
H A DXPluginInstance.idl92 /** Notifies the plugin of a new stream to display.
94 @param MIMEDesc [in]: the MIMEtype of the data stream
95 @param theURL [in]: the URL that denotes the stream
97 @param stream [in]: the data stream
105 [in] ::com::sun::star::io::XInputStream stream ,
115 @param MIMEDesc [in]: the MIMEtype of the data stream
/trunk/main/offapi/com/sun/star/embed/
H A DXHierarchicalStorageAccess2.idl44 /** allows to get access to a child encrypted stream with encryption data
53 In case the stream is open in readonly mode the
62 a mode the stream should be open in,
67 stream, the data must be correct, otherwise an
77 the stream is not encrypted
83 in case of io errors during stream opening
/trunk/main/offapi/com/sun/star/sdbc/
H A DXRow.idl220 /** gets the value of a column in the current row as a stream of
222 stream. This method is particularly suitable for retrieving large
227 <b>Note:</b> All the data in the returned stream must be
229 call to a get method implicitly closes the stream. Also, a
230 stream may return 0 when the method
246 /** gets the value of a column in the current row as a stream of
248 stream. This method is particularly suitable for retrieving large
253 <b>Note:</b> All the data in the returned stream must be
255 call to a get method implicitly closes the stream. Also, a
256 stream may return 0 when the method
/trunk/main/udkapi/com/sun/star/io/
H A DXPersistObject.idl84 /** writes all the persistent data of the object to the stream.
87 @param OutStream the stream, the data shall be written to. The stream
96 /** reads all the persistent data of the object from the stream.
98 other XPersistObjects are read from the stream, the implementation uses a factory
102 @param InStream the stream, the data shall be read from.
H A DXInputStreamProvider.idl36 /** Interface for providing an input stream.
38 <p>Every time createInputStream() is called a new input stream
45 /** Creates a new input stream, every time providing
49 a new input stream
H A DXObjectOutputStream.idl42 /** stores XPersistObject implementations into the stream
45 uses this interface to write its internal state into a stream.
52 /** writes an object to the stream.
53 @param Object the object, which shall serialize itself into the stream.
H A DPipe.idl42 /** the implementation of an output stream and an input stream.
45 read again from the input stream. Often two different threads access
49 input stream at the cost of an additional buffer.
H A DObjectInputStream.idl50 /** is a stream which allows reading the data of persistent objects.
77 <li>-set the stream position behind the object data</li>
82 /** allows to read the data from the stream.
92 /** allows to set marks within the stream. The implementation
H A DXInputStream.idl46 /** This is the basic interface to read data from a stream.
110 @param aData contains the data read from the stream.
112 stream during the call.
152 /** closes the stream.
154 <p>Users must close the stream explicitly when no further
/trunk/main/offapi/com/sun/star/xml/crypto/sax/
H A DXSAXEventKeeper.idl43 * This interface is used to manipulate element marks in a SAX event stream.
46 * used to collect a particular element from the SAX event stream; the other
47 * is blocker, which is used to block the SAX event stream.
53 * stream.
67 * Adds a new blocker on the next element in the SAX event stream.
84 * Checks whether the SAX event stream is blocking.
/trunk/main/graphite/
H A Dgraphite-2.3.1.patch811 @param psstrmIn - input stream
840 @param psstrmIn - input stream
849 @param psstrmIn - input stream
858 @param psstrmIn - input stream
866 @param psstrmIn - input stream
867 @param psstrmOut - output stream
884 @param psstrmIn - input stream
885 @param psstrmOut - output stream
926 in the stream.
1231 the input stream.
[all …]
/trunk/main/tools/
H A DLibrary_tl.mk110 tools/source/stream/cachestr \
111 tools/source/stream/stream \
112 tools/source/stream/strmsys \
113 tools/source/stream/vcompat \
/trunk/main/offapi/com/sun/star/rdf/
H A DXDocumentMetadataAccess.idl121 a metadata reference, comprising the stream name and the XML ID
177 the name of the stream in the ODF storage where the graph will
191 if a stream with the given FileName already exists
213 the name of the stream in the ODF storage where the graph will
227 if the given stream is <NULL/>,
235 if a stream with the given FileName already exists
294 the name of the stream in the ODF storage
300 if a stream with the given FileName already exists
315 the name of the stream in the ODF storage
332 loads the stream named "manifest.rdf" from the storage, and then
/trunk/main/shell/source/win32/shlxthandler/thumbviewer/
H A Dthumbviewer.cxx305 IStream* stream = new StreamOnZipBuffer(img_data); in CThumbviewer() local
306 signet_ = new Gdiplus::Bitmap(stream, TRUE); in CThumbviewer()
307 stream->Release(); in CThumbviewer()
373 IStream* stream = new StreamOnZipBuffer(thumbnail); in Extract() local
375 Gdiplus::Bitmap thumbnail_png(stream, TRUE); in Extract()
379 stream->Release(); in Extract()
463 stream->Release(); in Extract()
/trunk/main/stax/
H A Dmakefile.mk58 …C) javax$/xml$/stream$/*.java && jar -cf stax-1.2.0.jar javax$/xml$/stream$/*.class javax$/xml$/st…
/trunk/main/offapi/com/sun/star/packages/
H A DPackageStream.idl49 /**This service represents a stream contained within a Package. Instances of
68 the XInputStream returned is a Reference to the stream of the whole Package,
73 setInputStream - provides a stream to the data contained in the PackageStream
75 is called more than once, it will replace the existing stream.
83 2. MediaType, a string describing the MIME type of the stream.
/trunk/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java328 public Drain(InputStream stream) { in Drain() argument
330 this.stream = stream; in Drain()
335 while (stream.read() != -1) {} in run()
339 private final InputStream stream; field in Loader.Drain
/trunk/main/vcl/source/gdi/
H A Dimpimagetree.cxx71 css::uno::Reference< css::io::XInputStream > const & stream) in wrapStream()
77 OSL_ASSERT(stream.is()); in wrapStream()
82 sal_Int32 n = stream->readBytes(data, size); in wrapStream()
93 css::uno::Reference< css::io::XInputStream > const & stream, in loadFromStream()
96 std::auto_ptr< SvStream > s(wrapStream(stream)); in loadFromStream()
/trunk/main/offapi/com/sun/star/configuration/backend/xml/
H A DLayerWriter.idl46 can be used to parse a stream of configuration layer xml.
50 is written to a stream as OOR Update XML.
68 /** provides access to the target stream.
74 /** allows initializing target stream.
H A DSchemaParser.idl45 /** represents a configuration schema that is stored in a stream in
48 <p> The configuration schema xml from a given stream is parsed and fed to a
67 /** provides access to the source xml stream.
73 /** allows initializing the source stream.
H A DLayerParser.idl46 represents a configuration data layer that is stored in a stream in
49 <p> The configuration layer xml from a given stream is parsed and fed to a
72 /** provides access to the source xml stream.
78 /** allows initializing the source stream.
/trunk/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/
H A DParser.java27 import javax.xml.stream.Location;
28 import javax.xml.stream.XMLInputFactory;
29 import javax.xml.stream.XMLStreamException;
30 import javax.xml.stream.XMLStreamReader;
/trunk/main/offapi/com/sun/star/form/component/
H A DDatabaseImageControl.idl51 …but as binary stream (see <member scope="com::sun::star::sdb">XColumn::getBinaryStream</member>).<…
75 model is bound to is examined for a binary data stream. This stream is set as source
85 a new data stream, which is displayed by the control (which is a consumer for this stream).<br/>
/trunk/main/udkapi/com/sun/star/connection/
H A DXConnection.idl51 The number of bytes to be read from the stream.
54 in case an error occurred during reading from the stream.
61 /** writes the given bytesequence to the stream.
65 in case an error occurred during writing to the stream.

Completed in 62 milliseconds

12345678910