Searched refs:Read (Results 1 - 25 of 1395) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/delphi/
H A DZLib.pas91 function Read(var Buffer; Count: Longint): Longint; override; function
120 function Read(var Buffer; Count: Longint): Longint; override; function
439 function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
498 function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
507 FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs154 public override int Read(byte[] buffer, int offset, int count) method in class:DotZLib.GZipStream
/external/zlib/src/
H A Dmake_vms.com478 $! Read list of core library sources from makefile.in and create options
/external/webrtc/src/
H A Dcommon_types.h33 virtual int Read(void *buf,int len) = 0;
/external/webrtc/src/system_wrappers/interface/
H A Dfile_wrapper.h64 virtual int Read(void* buf, int length) = 0;
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc190 int FileWrapperImpl::Read(void* buf, int length) function in class:webrtc::FileWrapperImpl
H A Dfile_impl.h40 virtual int Read(void* buf, int length);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp394 QSocketNotifier::Read, this);
/external/valgrind/main/callgrind/
H A Dsim.c130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType; enumerator in enum:__anon32388
350 * type (Read/Write), the line gets dirty on a write.
427 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
439 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
556 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
569 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar.stderr.exp964 Read the file README_MISSING_SYSCALL_OR_IOCTL.
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp4071 Read the file README_MISSING_SYSCALL_OR_IOCTL.
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dsymshift.pl90 (Read perl source for more explanations)
/external/srec/tools/grxmlcompile/
H A Dfst-io.h152 Fst<Arc> *fst = Fst<Arc>::Read(istrm, opts);
H A Dgrxmlcompile.cpp861 c_fst = fst::StdVectorFst::Read( cfstFilename);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconst-fst.h68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
161 ConstFstImpl<A> *ConstFstImpl<A>::Read(istream &strm, function in class:fst::ConstFstImpl
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
277 // Read a ConstFst from an input stream; return NULL on error
278 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ConstFst
279 ConstFstImpl<A>* impl = ConstFstImpl<A>::Read(strm, opts);
283 // Read
284 static ConstFst<A> *Read(const string &filename) { function in class:fst::ConstFst
[all...]
H A Dencode.h147 bool Read(istream &strm, const string &source) { function in class:fst::EncodeTable
153 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source;
160 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
167 tuple->weight.Read(strm);
172 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
291 static EncodeMapper<A> *Read(istream &strm, function in class:fst::EncodeMapper
294 bool r = table->Read(strm, source);
298 static EncodeMapper<A> *Read(const string& filename, EncodeType type) { function in class:fst::EncodeMapper
304 return Read(strm, filename, type);
H A Dexpanded-fst.h37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ExpandedFst
44 if (!hdr.Read(strm, opts.source))
49 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
56 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
65 // Read an ExpandedFst from a file; return NULL on error.
66 static ExpandedFst<A> *Read(const string &filename) { function in class:fst::ExpandedFst
69 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
72 return Read(strm, FstReadOptions(filename));
H A Dfloat-weight.h46 istream &Read(istream &strm) { function in class:fst::FloatWeight
H A Dfst.cpp52 bool FstHeader::Read(istream &strm, const string &source) { function in class:fst::FstHeader
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
H A Dfst.h96 bool Read(istream &strm, const string &source);
147 // Read an Fst from an input stream; returns NULL on error
149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::Fst
155 if (!hdr.Read(strm, opts.source))
163 LOG(ERROR) << "Fst::Read: Unknown FST type \"" << hdr.FstType()
171 // Read an Fst from a file; return NULL on error
172 static Fst<A> *Read(const string &filename) { function in class:fst::Fst
175 LOG(ERROR) << "Fst::Read: Can't open file: " << filename;
178 return Read(strm, FstReadOptions(filename));
455 // Read
[all...]
H A Dmutable-fst.h70 // Read an MutableFst from an input stream; return NULL on error.
71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::MutableFst
77 if (!hdr.Read(strm, opts.source))
82 LOG(ERROR) << "MutableFst::Read: Not an MutableFst: " << ropts.source;
89 LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << hdr.FstType()
98 // Read an MutableFst from a file; returns NULL on error.
99 static MutableFst<A> *Read(const string &filename) { function in class:fst::MutableFst
102 LOG(ERROR) << "MutableFst::Read: Can't open file: " << filename;
105 return Read(strm, FstReadOptions(filename));
H A Dproduct-weight.h54 istream &Read(istream &strm) { function in class:fst::ProductWeight
55 value1_.Read(strm);
56 return value2_.Read(strm);
H A Dregister.h138 const FstReadOptions &opts) = &F::Read;
H A Dstring-weight.h104 istream &Read(istream &strm);
226 inline istream &StringWeight<L, S>::Read(istream &strm) { function in class:fst::StringWeight
H A Dsymbol-table.cpp102 SymbolTableImpl* SymbolTableImpl::Read(istream &strm, function in class:fst::SymbolTableImpl
107 LOG(ERROR) << "SymbolTable::Read: read failed";
124 LOG(ERROR) << "SymbolTable::Read: read failed";

Completed in 255 milliseconds

1234567891011>>