Searched refs:stream (Results 76 - 100 of 923) sorted by relevance

1234567891011>>

/external/skia/src/ports/
H A DSkImageDecoder_CG.cpp29 static CGDataProviderRef SkStreamToDataProvider(SkStream* stream) { argument
31 size_t len = stream->getLength();
33 stream->read(data, len);
38 static CGImageSourceRef SkStreamToCGImageSource(SkStream* stream) { argument
39 CGDataProviderRef data = SkStreamToDataProvider(stream);
47 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode);
52 bool SkImageDecoder_CG::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) { argument
53 CGImageSourceRef imageSrc = SkStreamToCGImageSource(stream);
93 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { argument
99 SkMovie* SkMovie::DecodeStream(SkStream* stream) { argument
106 SkWStream* stream = reinterpret_cast<SkWStream*>(info); local
114 SkStreamToCGDataConsumer(SkWStream* stream) argument
123 SkStreamToImageDestination(SkWStream* stream, CFStringRef type) argument
149 onEncode(SkWStream* stream, const SkBitmap& bm, int quality) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DScenarioData.java240 PrintStream stream = null;
242 stream = new PrintStream(new BufferedOutputStream(new FileOutputStream(outputFile)));
246 if (stream == null) {
247 stream = System.out;
249 stream.print(Utils.HTML_OPEN);
250 stream.print(Utils.HTML_DEFAULT_CSS);
252 stream.print("<title>" + scenarioResults.getName() + "(" + configBox + ")" + "</title></head>\n"); //$NON-NLS-1$
253 stream.print("<h4>Scenario: " + scenarioResults.getName() + " (" + configBox + ")</h4><br>\n"); //$NON-NLS-1$ //$NON-NLS-2$
257 stream.print("<table><tr><td><b>"+failureMessage+"</td></tr></table>\n");
263 stream
337 printTableLine(PrintStream stream, BuildResults buildResults) argument
365 printDifferenceLine(PrintStream stream, ConfigResults configResults) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-trees.rb22 stream = new_stream(t)
25 found = nodes_only_string(stream)
30 found = stream.inspect
65 stream = new_stream(t)
68 found = nodes_only_string(stream)
72 found = stream.inspect
88 stream = CommonTreeNodeStream.new(root)
91 found = nodes_only_string(stream)
95 found = stream.inspect
106 stream
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
45 Stream.junk stream;
49 main_loop the_fpm the_execution_engine stream
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
45 Stream.junk stream;
49 main_loop the_fpm the_execution_engine stream
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
45 Stream.junk stream;
49 main_loop the_fpm the_execution_engine stream
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
45 Stream.junk stream;
49 main_loop the_fpm the_execution_engine stream
/external/e2fsprogs/intl/
H A Dlog.c31 print_escaped (FILE *stream, const char *str) argument
33 putc ('"', stream);
37 fputs ("\\n\"", stream);
40 fputs ("\n\"", stream);
45 putc ('\\', stream);
46 putc (*str, stream);
48 putc ('"', stream);
/external/guava/guava/src/com/google/common/collect/
H A DHashMultiset.java84 private void writeObject(ObjectOutputStream stream) throws IOException { argument
85 stream.defaultWriteObject();
86 Serialization.writeMultiset(this, stream);
90 private void readObject(ObjectInputStream stream) argument
92 stream.defaultReadObject();
93 int distinctElements = Serialization.readCount(stream);
96 Serialization.populateMultiset(this, stream, distinctElements);
H A DLinkedHashMultiset.java92 private void writeObject(ObjectOutputStream stream) throws IOException { argument
93 stream.defaultWriteObject();
94 Serialization.writeMultiset(this, stream);
98 private void readObject(ObjectInputStream stream) argument
100 stream.defaultReadObject();
101 int distinctElements = Serialization.readCount(stream);
104 Serialization.populateMultiset(this, stream, distinctElements);
/external/srtp/srtp/
H A Dsrtp.c84 * This function allocates the stream context, rtp and rtcp ciphers
91 /* allocate srtp stream and set str_ptr */
142 /* allocate ekt data associated with stream */
166 srtp_stream_dealloc(srtp_stream_ctx_t *stream, argument
177 if (!stream_template || stream->rtp_cipher != stream_template->rtp_cipher) {
178 status = cipher_dealloc(stream->rtp_cipher);
184 if (!stream_template || stream->rtp_auth != stream_template->rtp_auth) {
185 status = auth_dealloc(stream->rtp_auth);
191 if (!stream_template || stream->limit != stream_template->limit) {
192 crypto_free(stream
607 srtp_stream_ctx_t *stream; local
850 srtp_stream_ctx_t *stream; local
1161 srtp_stream_ctx_t *stream; local
1177 srtp_stream_ctx_t *stream; local
1309 srtp_stream_ctx_t *stream, *last_stream; local
1331 srtp_stream_uninit_and_dealloc(srtp_stream_ctx_t *stream, srtp_stream_ctx_t *stream_template) argument
1455 srtp_stream_ctx_t *stream; local
1641 srtp_stream_ctx_t *stream; local
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsslstreamadapter.h31 #include "talk/base/stream.h"
37 // After SSL has been started, the stream will only open on successful
52 // Instantiate an SSLStreamAdapter wrapping the given stream,
55 static SSLStreamAdapter* Create(StreamInterface* stream);
57 explicit SSLStreamAdapter(StreamInterface* stream) argument
58 : StreamAdapterInterface(stream), ignore_bad_cert_(false) { }
77 // Use of the stream prior to calling either of these functions will
80 // soon as possible: right away if the underlying wrapped stream is
86 // exposed stream will open after successful negotiation and
101 // stream open
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/arts/
H A DSDL_artsaudio.h35 /* The stream descriptor for the audio device */
36 arts_stream_t stream; member in struct:SDL_PrivateAudioData
52 #define stream (this->hidden->stream) macro
/external/chromium/net/base/
H A Dfile_stream_unittest.cc41 FileStream stream; local
42 int rv = stream.Open(temp_file_path(),
85 FileStream stream; local
87 EXPECT_FALSE(stream.IsOpen());
90 int64 new_offset = stream.Seek(FROM_BEGIN, 5);
94 int64 avail = stream.Available();
99 int rv = stream.Read(buf, arraysize(buf), NULL);
108 FileStream stream; local
111 int rv = stream.Open(temp_file_path(), flags);
114 int64 total_bytes_avail = stream
138 FileStream stream; local
173 FileStream stream; local
203 FileStream stream; local
238 FileStream stream; local
273 FileStream stream; local
296 FileStream stream; local
317 FileStream stream; local
349 FileStream stream; local
381 FileStream stream; local
410 FileStream stream; local
445 FileStream stream; local
484 FileStream stream; local
532 FileStream stream; local
587 FileStream stream; local
649 TestWriteReadCompletionCallback( FileStream* stream, int* total_bytes_written, int* total_bytes_read, std::string* data_read) argument
737 FileStream stream; local
779 TestWriteCloseCompletionCallback(FileStream* stream, int* total_bytes_written) argument
839 FileStream stream; local
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_fread.c18 /* read a bigint from a file stream in ASCII */
19 int mp_fread(mp_int *a, int radix, FILE *stream) argument
27 ch = fgetc(stream);
30 ch = fgetc(stream);
54 ch = fgetc(stream);
/external/freetype/include/freetype/
H A Dftgzip.h5 /* Gzip-compressed stream support. */
57 * Open a new stream to parse gzip-compressed font files. This is
62 * stream ::
63 * The target embedding stream.
66 * The source stream.
72 * The source stream must be opened _before_ calling this function.
74 * Calling the internal function `FT_Stream_Close' on the new stream will
75 * *not* call `FT_Stream_Close' on the source stream. None of the stream
78 * The stream implementatio
[all...]
H A Dftlzw.h5 /* LZW-compressed stream support. */
56 * Open a new stream to parse LZW-compressed font files. This is
61 * stream :: The target embedding stream.
63 * source :: The source stream.
69 * The source stream must be opened _before_ calling this function.
71 * Calling the internal function `FT_Stream_Close' on the new stream will
72 * *not* call `FT_Stream_Close' on the source stream. None of the stream
75 * The stream implementatio
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMismatchedSetException.h37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
H A DANTLRNoViableAltException.h36 + (ANTLRNoViableAltException *) newANTLRNoViableAltException:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
37 - (ANTLRNoViableAltException *) initWithDecision:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMismatchedSetException.h37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
H A DANTLRNoViableAltException.h36 + (ANTLRNoViableAltException *) newANTLRNoViableAltException:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
37 - (ANTLRNoViableAltException *) initWithDecision:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMismatchedSetException.h37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
H A DANTLRNoViableAltException.h36 + (ANTLRNoViableAltException *) newANTLRNoViableAltException:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
37 - (ANTLRNoViableAltException *) initWithDecision:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRMismatchedRangeException.h39 + (id) newException:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
40 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
H A DANTLRMismatchedSetException.h37 + (id) newException:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;

Completed in 435 milliseconds

1234567891011>>