HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 376 - 400 of 9695) sorted by null

<<11121314151617181920>>

  /external/replicaisland/src/com/replica/replicaisland/
SoundSystem.java 83 int stream = -1; local
85 stream = mSoundPool.play(sound.soundId, 1.0f, 1.0f, priority, loop ? -1 : 0, 1.0f);
87 addLoopingStream(stream);
91 return stream;
95 int stream = -1; local
97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate);
99 addLoopingStream(stream);
103 return stream;
106 public final void stop(int stream) {
107 mSoundPool.stop(stream);
    [all...]
  /build/libs/host/
list.java 9 ByteArrayOutputStream stream = new ByteArrayOutputStream(100); local
12 writer = new OutputStreamWriter(stream, "utf-8");
25 byte[] array = stream.toByteArray();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
main.m 11 ANTLRStringStream *stream = [[ANTLRStringStream alloc] initWithStringNoCopy:string];
12 SimpleCLexer *lexer = [[SimpleCLexer alloc] initWithCharStream:stream];
24 [stream release];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
main.m 11 ANTLRStringStream *stream = [ANTLRStringStream newANTLRStringStream:input];
12 Fuzzy *lex = [Fuzzy newFuzzyWithCharStream:stream];
22 [stream release];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
main.m 12 ANTLRStringStream *stream = [ANTLRStringStream newANTLRStringStream:string];
13 TLexer *lexer = [TLexer newTLexerWithCharStream:stream];
24 [stream release];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
main.m 11 ANTLRStringStream *stream = [[ANTLRStringStream alloc] initWithStringNoCopy:string];
12 SymbolTableLexer *lexer = [[SymbolTableLexer alloc] initWithCharStream:stream];
24 [stream release];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
main.m 11 ANTLRStringStream *stream = [ANTLRStringStream newANTLRStringStream:@"23 42"];
12 TreeRewriteLexer *lexer = [TreeRewriteLexer newTreeRewriteLexerWithCharStream:stream];
28 [stream release];
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DigestCalculator.java 9 * a stream of output.
22 * Returns a stream that will accept data for the purpose of calculating
31 * Return the digest calculated on what has been written to the calculator's output stream.
  /external/chromium_org/base/debug/
stack_trace.cc 35 std::stringstream stream; local
36 OutputToStream(&stream);
37 return stream.str();
  /external/chromium_org/content/public/browser/
stream_handle.h 18 // Gets the URL the stream can be read from.
21 // Gets the original URL being redirected to this Stream.
24 // Get the MIME type associated with this Stream.
  /external/chromium_org/content/renderer/media/
media_stream_client.h 18 // Define an interface for media stream client to get some information about
19 // the media stream.
22 // Check if the |url| is derived from a media stream object.
  /external/chromium_org/net/spdy/
spdy_stream_test_util.cc 19 const base::WeakPtr<SpdyStream>& stream) : stream_(stream) {
43 const base::WeakPtr<SpdyStream>& stream)
44 : stream_(stream),
104 const base::WeakPtr<SpdyStream>& stream)
105 : StreamDelegateBase(stream) {}
111 const base::WeakPtr<SpdyStream>& stream,
113 : StreamDelegateBase(stream),
125 stream()->SendData(buf.get(), buf->size(), MORE_DATA_TO_SEND);
131 const base::WeakPtr<SpdyStream>& stream,
    [all...]
  /external/chromium_org/third_party/skia/src/utils/ios/
SkStream_NSData.mm 10 NSData* NSData_dataWithStream(SkStream* stream) {
11 size_t length = stream->getLength();
13 size_t bytes = stream->read(src, length);
  /external/freetype/src/base/
ftrfork.c 51 FT_Stream stream,
65 error = FT_Stream_Seek( stream, rfork_offset );
69 error = FT_Stream_Read( stream, (FT_Byte *)head, 16 );
91 error = FT_Stream_Seek( stream, map_pos );
97 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 );
126 error = FT_Stream_Seek( stream, map_pos + type_list );
150 FT_Stream stream,
166 error = FT_Stream_Seek( stream, map_offset );
192 error = FT_Stream_Seek( stream, rpos );
258 FT_Stream stream,
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SpdyTransport.java 31 private SpdyStream stream; field in class:SpdyTransport
41 return stream.getOutputStream();
45 if (stream != null) {
56 stream = spdyConnection.newStream(requestHeaders.toNameValueBlock(), hasRequestBody,
58 stream.setReadTimeout(httpEngine.client.getReadTimeout());
66 stream.getOutputStream().close();
70 List<String> nameValueBlock = stream.getResponseHeaders();
80 return new UnknownLengthHttpInputStream(stream.getInputStream(), cacheRequest, httpEngine);
86 if (stream != null) {
87 stream.closeLater(SpdyStream.RST_CANCEL)
    [all...]
  /external/skia/src/utils/ios/
SkStream_NSData.mm 10 NSData* NSData_dataWithStream(SkStream* stream) {
11 size_t length = stream->getLength();
13 size_t bytes = stream->read(src, length);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
crc.h 26 * This function returns a 32 bit CRC checksum of a bit stream
29 * - encoded : payload bit stream
30 * - no_of_word8s : number of 8-bit words in the bit stream
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLDSAPublicKey.java 165 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
166 stream.defaultReadObject();
168 final BigInteger g = (BigInteger) stream.readObject();
169 final BigInteger p = (BigInteger) stream.readObject();
170 final BigInteger q = (BigInteger) stream.readObject();
171 final BigInteger y = (BigInteger) stream.readObject();
181 private void writeObject(ObjectOutputStream stream) throws IOException {
185 stream.defaultWriteObject();
188 stream.writeObject(params.getG());
189 stream.writeObject(params.getP())
    [all...]
  /libcore/luni/src/main/java/java/lang/
Process.java 78 * Returns an input stream that is connected to the error stream
81 * @return the input stream to read from the error stream associated with
87 * Returns an input stream that is connected to the standard output stream
90 * @return the input stream to read from the output stream associated with
96 * Returns an output stream that is connected to the standard input stream
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdio_ext.h 33 /* The library protects all uses of the stream functions, except for
46 the given stream. */
50 /* Return non-zero value iff the stream FP is opened readonly, or if the
51 last operation on the stream was a read operation. */
54 /* Return non-zero value iff the stream FP is opened write-only or
55 append-only, or if the last operation on the stream was a write
60 /* Return non-zero value iff stream FP is not opened write-only or
64 /* Return non-zero value iff stream FP is not opened read-only. */
68 /* Return non-zero value iff the stream FP is line-buffered. */
72 /* Discard all pending buffered I/O on the stream FP. *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
stdio_ext.h 33 /* The library protects all uses of the stream functions, except for
46 the given stream. */
50 /* Return non-zero value iff the stream FP is opened readonly, or if the
51 last operation on the stream was a read operation. */
54 /* Return non-zero value iff the stream FP is opened write-only or
55 append-only, or if the last operation on the stream was a write
60 /* Return non-zero value iff stream FP is not opened write-only or
64 /* Return non-zero value iff stream FP is not opened read-only. */
68 /* Return non-zero value iff the stream FP is line-buffered. */
72 /* Discard all pending buffered I/O on the stream FP. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
stdio_ext.h 33 /* The library protects all uses of the stream functions, except for
46 the given stream. */
50 /* Return non-zero value iff the stream FP is opened readonly, or if the
51 last operation on the stream was a read operation. */
54 /* Return non-zero value iff the stream FP is opened write-only or
55 append-only, or if the last operation on the stream was a write
60 /* Return non-zero value iff stream FP is not opened write-only or
64 /* Return non-zero value iff stream FP is not opened read-only. */
68 /* Return non-zero value iff the stream FP is line-buffered. */
72 /* Discard all pending buffered I/O on the stream FP. *
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_geturl_test.cc 19 // The identifier for the self url stream.
22 // The identifier for the fetched url stream.
35 // The identifier for the bogus url stream.
38 // The maximum chunk size of stream data.
125 NPError PluginGetURLTest::NewStream(NPMIMEType type, NPStream* stream,
127 if (stream == NULL) {
128 SetError("NewStream got null stream");
133 return PluginTest::NewStream(type, stream, seekable, stype);
140 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
170 stream->notifyData)
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 102 char* EncoderBase::encode_aux(char* stream, unsigned aux,
112 return stream;
127 ModRM& modrm = *(ModRM*)stream;
133 stream = encodeModRM(stream, opnds, memidx, odesc, prex);
143 ++stream;
163 ModRM& modrm = *(ModRM*)stream;
167 stream = encodeModRM(stream, opnds, idx, odesc, prex);
177 ++stream;
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t005lexer.py 24 stream = antlr3.StringStream('fofoofooo')
25 lexer = self.getLexer(stream)
50 stream = antlr3.StringStream('2')
51 lexer = self.getLexer(stream)
63 stream = antlr3.StringStream('f')
64 lexer = self.getLexer(stream)

Completed in 201 milliseconds

<<11121314151617181920>>