Searched defs:stream (Results 126 - 150 of 753) sorted by relevance

1234567891011>>

/external/marisa-trie/lib/marisa/
H A Dreader.cc23 Reader::Reader(std::istream *stream) argument
24 : file_(NULL), fd_(-1), stream_(stream), needs_fclose_(false) {}
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dreader.cc23 Reader::Reader(std::istream *stream) argument
24 : file_(NULL), fd_(-1), stream_(stream), needs_fclose_(false) {}
/external/nanopb-c/examples/network_server/
H A Dclient.c26 bool printfile_callback(pb_istream_t *stream, const pb_field_t *field, void **arg) argument
30 if (!pb_decode(stream, FileInfo_fields, &fileinfo))
H A Dserver.c26 bool listdir_callback(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) argument
38 if (!pb_encode_tag_for_field(stream, field))
41 if (!pb_encode_submessage(stream, FileInfo_fields, &fileinfo))
/external/openfst/src/include/fst/
H A Dlog.h44 std::ostream &stream() { return std::cerr; } function in class:LogMessage
50 #define LOG(type) LogMessage(#type).stream()
/external/pdfium/third_party/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = 0;
43 stream->read = 0;
44 stream->close = 0;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/pdfium/third_party/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 );
212 FT_Stream stream local
[all...]
/external/pdfium/third_party/freetype/src/type1/
H A Dt1parse.c70 read_pfb_tag( FT_Stream stream, argument
98 check_type1_format( FT_Stream stream, argument
110 error = read_pfb_tag( stream, &tag, &dummy );
124 if ( ft_memcmp( stream->cursor, header_string, header_length ) != 0 )
137 FT_Stream stream,
148 parser->stream = stream;
158 error = check_type1_format( stream, "%!PS-AdobeFont", 14 );
164 error = check_type1_format( stream, "%!FontType", 10 );
181 /* in the case of a memory-based stream
264 FT_Stream stream = parser->stream; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledWorld.java52 public TiledWorld(InputStream stream) { argument
55 parseInput(stream);
73 protected boolean parseInput(InputStream stream) { argument
75 AssetManager.AssetInputStream byteStream = (AssetManager.AssetInputStream) stream;
/external/skia/src/codec/
H A DSkCodec.cpp33 SkCodec* SkCodec::NewFromStream(SkStream* stream) { argument
34 if (!stream) {
38 SkAutoTDelete<SkStream> streamDeleter(stream);
43 const bool correctFormat = proc.IsFormat(stream);
44 if (!stream->rewind()) {
72 SkCodec::SkCodec(const SkImageInfo& info, SkStream* stream) argument
74 , fStream(stream)
H A DSkJpegDecoderMgr.cpp79 JpegDecoderMgr::JpegDecoderMgr(SkStream* stream) argument
80 : fSrcMgr(stream)
/external/skia/src/core/
H A DSkFontDescriptor.cpp27 static void read_string(SkStream* stream, SkString* string) { argument
28 const uint32_t length = SkToU32(stream->readPackedUInt());
31 stream->read(string->writable_str(), length);
36 static void skip_string(SkStream* stream) { argument
37 const uint32_t length = SkToU32(stream->readPackedUInt());
39 stream->skip(length);
43 static void write_string(SkWStream* stream, const SkString& string, argument
46 stream->writePackedUInt(id);
47 stream->writePackedUInt(string.size());
48 stream
52 read_uint(SkStream* stream) argument
56 write_uint(SkWStream* stream, size_t n, uint32_t id) argument
61 SkFontDescriptor(SkStream* stream) argument
96 serialize(SkWStream* stream) argument
[all...]
/external/skia/src/xml/
H A DSkXMLPullParser.cpp25 SkXMLPullParser::SkXMLPullParser(SkStream* stream) : fStream(NULL) argument
30 this->setStream(stream);
38 SkStream* SkXMLPullParser::setStream(SkStream* stream) argument
40 if (fStream && !stream)
43 SkRefCnt_SafeAssign(fStream, stream);
/external/skia/tests/
H A DJpegTest.cpp459 SkMemoryStream* stream = SkNEW_ARGS(SkMemoryStream, (goodJpegImage, len)); local
464 SkDecodingImageGenerator::Create(stream, opts), &bitmap);
/external/squashfs-tools/squashfs-tools/
H A Dgzip_wrapper.h71 z_stream stream; member in struct:gzip_stream
/external/v8/src/arm64/
H A Ddisasm-arm64.h80 explicit PrintDisassembler(FILE* stream) : stream_(stream) { } argument
/external/vboot_reference/firmware/stub/
H A Dvboot_api_stub_stream.c5 * Stub implementations of stream APIs.
17 /* Internal struct to simulate a stream for sector-based disks */
30 uint64_t lba_count, VbExStream_t *stream)
35 *stream = NULL;
44 *stream = (void *)s;
49 VbError_t VbExStreamRead(VbExStream_t stream, uint32_t bytes, void *buffer) argument
51 struct disk_stream *s = (struct disk_stream *)stream;
77 void VbExStreamClose(VbExStream_t stream) argument
79 struct disk_stream *s = (struct disk_stream *)stream;
29 VbExStreamOpen(VbExDiskHandle_t handle, uint64_t lba_start, uint64_t lba_count, VbExStream_t *stream) argument
/external/vixl/src/vixl/a64/
H A Ddisasm-a64.h167 explicit PrintDisassembler(FILE* stream) : stream_(stream) { } argument
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestTreeNodeStream.java35 /** Test the tree node stream. */
38 /** Build new stream; let's us override to test other streams. */
43 public String toTokenTypeString(TreeNodeStream stream) { argument
44 return ((CommonTreeNodeStream)stream).toTokenTypeString();
50 TreeNodeStream stream = newStream(t);
52 String found = toNodesOnlyString(stream);
56 found = toTokenTypeString(stream);
67 TreeNodeStream stream = newStream(t);
69 String found = toNodesOnlyString(stream);
73 found = toTokenTypeString(stream);
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStoreSpi.java108 public void engineStore(OutputStream stream, char[] password) argument
110 if (!(stream instanceof ByteArrayOutputStream)) {
111 throw new IOException("Incorrect stream");
113 if (((ByteArrayOutputStream) stream).size() == 0) {
114 throw new IOException("Incorrect stream size ");
120 public void engineLoad(InputStream stream, char[] password) argument
/external/clang/test/Analysis/
H A Dstream.c11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
82 void pr8081(FILE *stream, long offset, int whence) { argument
83 fseek(stream, offset, whence);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp96 template<class T> class stream;
97 template<> class stream<char> { /* ... */ }; class
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECPublicKey.java153 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { argument
154 stream.defaultReadObject();
156 byte[] encoded = (byte[]) stream.readObject();
163 private void writeObject(ObjectOutputStream stream) throws IOException { argument
168 stream.defaultWriteObject();
169 stream.writeObject(getEncoded());
H A DOpenSSLRSAPublicKey.java170 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { argument
171 stream.defaultReadObject();
185 private void writeObject(ObjectOutputStream stream) throws IOException { argument
187 stream.defaultWriteObject();
/external/conscrypt/src/platform/java/org/conscrypt/
H A DTrustedCertificateKeyStoreSpi.java119 public void engineStore(OutputStream stream, char[] password) { argument
124 public void engineLoad(InputStream stream, char[] password) { argument
125 if (stream != null) {

Completed in 3786 milliseconds

1234567891011>>