Searched defs:stream (Results 101 - 125 of 1084) sorted by relevance

1234567891011>>

/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java72 private void readObject(java.io.ObjectInputStream stream) argument
74 stream.defaultReadObject();
75 Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, ArgumentsMatcher>) stream
91 private void writeObject(java.io.ObjectOutputStream stream) argument
93 stream.defaultWriteObject();
100 stream.writeObject(map);
/external/freetype/src/base/
H A Dftsystem.c152 /* system-specific stream handle from a given FreeType stream object */
153 #define STREAM_FILE( stream ) ( (FT_FILE*)stream->descriptor.pointer )
162 /* The function to close a stream. */
165 /* stream :: A pointer to the stream object. */
168 ft_ansi_stream_close( FT_Stream stream )
170 ft_fclose( STREAM_FILE( stream ) );
172 stream
201 ft_ansi_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) argument
[all...]
/external/freetype/src/sfnt/
H A Dttmtx.c49 /* stream :: The input stream. */
58 FT_Stream stream,
80 error = face->goto_table( face, tag, stream, &table_size );
103 /* stream :: The input stream. */
112 FT_Stream stream,
150 error = face->goto_table( face, TTAG_vhea, stream, 0 );
158 error = face->goto_table( face, TTAG_hhea, stream, 0 );
209 FT_Stream stream local
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DEnumBiMap.java114 private void writeObject(ObjectOutputStream stream) throws IOException { argument
115 stream.defaultWriteObject();
116 stream.writeObject(keyType);
117 stream.writeObject(valueType);
118 Serialization.writeMap(this, stream);
123 private void readObject(ObjectInputStream stream) argument
125 stream.defaultReadObject();
126 keyType = (Class<K>) stream.readObject();
127 valueType = (Class<V>) stream.readObject();
131 Serialization.populateMap(this, stream);
[all...]
H A DEnumHashBiMap.java100 private void writeObject(ObjectOutputStream stream) throws IOException { argument
101 stream.defaultWriteObject();
102 stream.writeObject(keyType);
103 Serialization.writeMap(this, stream);
108 private void readObject(ObjectInputStream stream) argument
110 stream.defaultReadObject();
111 keyType = (Class<K>) stream.readObject();
114 Serialization.populateMap(this, stream);
H A DEnumMultiset.java67 private void writeObject(ObjectOutputStream stream) throws IOException { argument
68 stream.defaultWriteObject();
69 stream.writeObject(type);
70 Serialization.writeMultiset(this, stream);
79 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { argument
80 stream.defaultReadObject();
82 Class<E> localType = (Class<E>) stream.readObject();
85 Serialization.populateMultiset(this, stream);
H A DHashMultimap.java123 private void writeObject(ObjectOutputStream stream) throws IOException { argument
124 stream.defaultWriteObject();
125 stream.writeInt(expectedValuesPerKey);
126 Serialization.writeMultimap(this, stream);
130 private void readObject(ObjectInputStream stream) argument
132 stream.defaultReadObject();
133 expectedValuesPerKey = stream.readInt();
134 int distinctKeys = Serialization.readCount(stream);
137 Serialization.populateMultimap(this, stream, distinctKeys);
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 DImmutableAsList.java61 private void readObject(ObjectInputStream stream) argument
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/javassist/src/main/javassist/bytecode/analysis/
H A DFramePrinter.java38 private final PrintStream stream; field in class:FramePrinter
43 public FramePrinter(PrintStream stream) { argument
44 this.stream = stream;
50 public static void print(CtClass clazz, PrintStream stream) { argument
51 (new FramePrinter(stream)).print(clazz);
78 stream.println("\n" + getMethodString(method));
103 stream.println(pos + ": " + InstructionPrinter.instructionString(iterator, pos, pool));
108 stream.println("--DEAD CODE--");
120 stream
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioKey.java43 * <code>AudioKey</code> is extending AssetKey by holding stream flag.
49 private boolean stream; field in class:AudioKey
56 * @param stream If true, the audio will be streamed from harddrive,
58 * @param streamCache If stream is true, then this specifies if
59 * the stream cache is used. When enabled, the audio stream will
63 public AudioKey(String name, boolean stream, boolean streamCache){ argument
64 this(name, stream);
72 * @param stream If true, the audio will be streamed from harddrive,
75 public AudioKey(String name, boolean stream){ argument
[all...]
/external/libsepol/src/
H A Ddebug.c49 FILE *stream = NULL; local
55 stream = stderr;
59 stream = stdout;
63 fprintf(stream, "%s.%s: ",
68 vfprintf(stream, fmt, ap);
71 fprintf(stream, "\n");
/external/libvorbis/doc/
H A Da1-encapsulation-ogg.tex4 \section{Embedding Vorbis into an Ogg stream} \label{vorbis:over:ogg}
33 The Ogg stream may be chained, i.e., contain multiple, contigous logical streams (links).
36 The Ogg stream must be unmultiplexed (only one stream, a Vorbis audio stream, per link)
42 Vorbis with other media types into a multi-stream Ogg file. At the
46 existing alone within a degenerate Ogg stream. A compliant 'Vorbis
48 specific support of Vorbis within a degenrate Ogg stream (naturally,
67 Ogg encapsulation of a Vorbis packet stream is straightforward.
73 uniquely identifies a stream a
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DInStreamWithCRC.h26 void SetStream(ISequentialInStream *stream) { _stream = stream; } argument
54 void SetStream(IInStream *stream) { _stream = stream; } argument
H A DOutStreamWithCRC.h23 void SetStream(ISequentialOutStream *stream) { _stream = stream; } argument
/external/lzma/CPP/7zip/Common/
H A DInBuffer.cpp36 void CInBuffer::SetStream(ISequentialInStream *stream) argument
38 _stream = stream;
H A DLockedStream.h15 void Init(IInStream *stream) argument
16 { _stream = stream; }
H A DOffsetStream.cpp8 HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset) argument
11 _stream = stream;
H A DOutBuffer.cpp28 void COutBuffer::SetStream(ISequentialOutStream *stream) argument
30 _stream = stream;
H A DStreamUtils.cpp9 HRESULT ReadStream(ISequentialInStream *stream, void *data, size_t *processedSize) argument
17 HRESULT res = stream->Read(data, curSize, &processedSizeLoc);
28 HRESULT ReadStream_FALSE(ISequentialInStream *stream, void *data, size_t size) argument
31 RINOK(ReadStream(stream, data, &processedSize));
35 HRESULT ReadStream_FAIL(ISequentialInStream *stream, void *data, size_t size) argument
38 RINOK(ReadStream(stream, data, &processedSize));
42 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, size_t size) argument
48 HRESULT res = stream->Write(data, curSize, &processedSizeLoc);
/external/marisa-trie/tests/
H A Dvector-test.cc246 std::stringstream stream; local
247 bv.write(stream);
254 bv.read(stream);
/external/marisa-trie/v0_1_5/tests/
H A Dvector-test.cc250 std::stringstream stream; local
251 bv.write(stream);
258 bv.read(stream);
/external/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc76 stringstream stream; local
83 EXPECT_TRUE(message.SerializeToOstream(&stream));
91 // GCC gives some sort of error if we try to just do stream.str() == str1.
92 string temp = stream.str();
154 stringstream stream(data);
155 EXPECT_TRUE(message.ParseFromIstream(&stream));
156 EXPECT_TRUE(stream.eof());
164 io::ArrayInputStream stream(data_with_junk.data(), data_with_junk.size());
166 EXPECT_TRUE(message.ParseFromBoundedZeroCopyStream(&stream, data.size()));
173 io::ArrayInputStream stream(dat
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/pulse/
H A DSDL_pulseaudio.h38 pa_stream *stream; member in struct:SDL_PrivateAudioData
68 #define stream (this->hidden->stream) macro

Completed in 637 milliseconds

1234567891011>>