Home
last modified time | relevance | path

Searched refs:Read (Results 1 – 25 of 203) sorted by relevance

123456789

/external/webkit/V8Binding/v8/src/
Dusage-analyzer.cc96 void Read(Expression* x);
149 Read(node->condition()); in VisitIfStatement()
168 Read(node->expression()); in VisitReturnStatement()
173 Read(node->expression()); in VisitWithEnterStatement()
183 Read(node->tag()); in VisitSwitchStatement()
189 Read(clause->label()); in VisitSwitchStatement()
200 Read(node->cond()); in VisitLoopStatement()
211 Read(node->enumerable()); in VisitForInStatement()
249 Read(node->condition()); in VisitConditional()
251 Read(node->then_expression()); in VisitConditional()
[all …]
/external/zlib/contrib/ada/
Dread.adb19 procedure Read is subprogram
64 procedure Read argument
71 procedure Read is new ZLib.Read argument
72 (Read,
81 procedure Read argument
98 end Read;
139 Read (Filter, Buffer, Last);
156 end Read;
Dzlib-streams.adb130 procedure Read subprogram
136 procedure Read argument
144 procedure Read subprogram
148 Ada.Streams.Read (Stream.Back.all, Item, Last);
149 end Read;
151 procedure Read is new ZLib.Read subprogram
152 (Read => Read,
158 Read (Stream.Reader, Item, Last);
159 end Read;
Dtest.adb135 Read (Left, Left_Buffer, Left_Last);
136 Read (Right, Right_Buffer, Right_Last);
170 Read (Source, Buffer, Last);
185 Read (File_In, Item, Last);
/external/webkit/V8Binding/v8/test/cctest/
Dtest-utils.cc60 static v8::internal::byte* Read(v8::internal::byte* p, Mode m, int x) { in Read() function
98 p = Read(p, m, x - 7); in ReadMany()
99 p = Read(p, m, x - 1); in ReadMany()
100 p = Read(p, m, x); in ReadMany()
101 p = Read(p, m, x + 1); in ReadMany()
102 p = Read(p, m, x + 2); in ReadMany()
103 p = Read(p, m, -x - 5); in ReadMany()
104 p = Read(p, m, -x - 1); in ReadMany()
105 p = Read(p, m, -x); in ReadMany()
106 p = Read(p, m, -x + 1); in ReadMany()
[all …]
/external/opencore/fileformats/mp3/parser/src/
Dmp3fileio.cpp80 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read64()
100 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read32()
120 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read32read32()
142 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read24()
160 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read16()
180 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read16read16()
200 int32 retVal = (int32)(fp->Read((void*) & data, 1, 1)); in read8()
222 int32 retVal = (int32)(fp->Read((void*)bytes, 1, N)); in read8read8()
237 bytesRead = fp->Read(data, 1, length); in readByteData()
/external/opencore/oscl/oscl/oscllib/src/
Doscl_library_list.cpp99 while (1 == configFile.Read(buf, 1, 1)) in Populate()
110 while (1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
124 while (i < BUFFER_SIZE && 1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
149 while (1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
163 … while (!(commaFound && quoteFound) && 1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
194 …while (1 == configFile.Read(buf, 1, 1) && buf[0] != QUOTE && buf[0] != NEWLINE && i < (BUFFER_SIZE… in Populate()
217 while (1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
246 while (1 == configFile.Read(buf, 1, 1) && buf[0] != NEWLINE) in Populate()
/external/opencore/nodes/pvprotocolenginenode/download_protocols/common/src/
Dpvdl_config_file.cpp338 if (iTotalFixedHeaderSize != iFile->Read(iTmpBuf, 1, iTotalFixedHeaderSize)) in LoadConfig()
403 if (aSelectedTrackIDsSize != iFile->Read(iTmpBuf, 1, aSelectedTrackIDsSize)) in LoadConfig()
422 if (aUrlLen != iFile->Read(aTmpBuf, 1, aUrlLen)) in LoadConfig()
448 if (aHostNameLen != iFile->Read(aTmpBuf, 1, aHostNameLen)) in LoadConfig()
458 if (aPlayerVersionLen != iFile->Read(aTmpBuf, 1, aPlayerVersionLen)) in LoadConfig()
468 if (aUserAgentLen != iFile->Read(aTmpBuf, 1, aUserAgentLen)) in LoadConfig()
478 if (aUserNetworkLen != iFile->Read(aTmpBuf, 1, aUserNetworkLen)) in LoadConfig()
488 if (aDeviceInfoLen != iFile->Read(aTmpBuf, 1, aDeviceInfoLen)) in LoadConfig()
499 if (aUserIdLen != iFile->Read(aTmpBuf, 1, aUserIdLen)) in LoadConfig()
509 if (aUserAuthLen != iFile->Read(aTmpBuf, 1, aUserAuthLen)) in LoadConfig()
[all …]
/external/opencore/oscl/oscl/osclutil/src/
Doscl_bin_stream.h302 void Read(int8 & data);
304 void Read(uint8 & data);
306 void Read(int16 & data);
308 void Read(uint16 & data);
310 void Read(int32 & data);
312 void Read(uint32 & data);
/external/skia/include/xml/
DSkBML_XMLParser.h29 static void Read(SkStream& s, SkXMLWriter& writer);
32 static void Read(SkStream& s, SkWStream& output);
35 static void Read(SkStream& s, SkXMLParser& output);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dexpanded-fst.h38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { in Read() function
44 if (!hdr.Read(strm, opts.source)) in Read()
66 static ExpandedFst<A> *Read(const string &filename) { in Read() function
72 return Read(strm, FstReadOptions(filename)); in Read()
Dmutable-fst.h71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { in Read() function
77 if (!hdr.Read(strm, opts.source)) in Read()
99 static MutableFst<A> *Read(const string &filename) { in Read() function
105 return Read(strm, FstReadOptions(filename)); in Read()
Dfst.h96 bool Read(istream &strm, const string &source);
149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { in Read() function
155 if (!hdr.Read(strm, opts.source)) in Read()
172 static Fst<A> *Read(const string &filename) { in Read() function
178 return Read(strm, FstReadOptions(filename)); in Read()
462 else if (!hdr->Read(strm, opts.source)) in ReadHeaderAndSymbols()
482 isymbols_ = SymbolTable::Read(strm, opts.source); in ReadHeaderAndSymbols()
484 osymbols_ =SymbolTable::Read(strm, opts.source); in ReadHeaderAndSymbols()
Dsymbol-table.h63 static SymbolTableImpl* Read(istream &strm, const string& source);
236 static SymbolTable* Read(istream &strm, const string& source) { in Read() function
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source); in Read()
245 static SymbolTable* Read(const string& filename) { in Read() function
251 return Read(strm, filename); in Read()
Dconst-fst.h68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
161 ConstFstImpl<A> *ConstFstImpl<A>::Read(istream &strm, in Read() function
276 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { in Read() function
277 ConstFstImpl<A>* impl = ConstFstImpl<A>::Read(strm, opts); in Read()
282 static ConstFst<A> *Read(const string &filename) { in Read() function
288 return Read(strm, FstReadOptions(filename)); in Read()
Dencode.h148 bool Read(istream &strm, const string &source) { in Read() function
168 tuple->weight.Read(strm); in Read()
290 static EncodeMapper<A> *Read(istream &strm, in Read() function
293 bool r = table->Read(strm, source); in Read()
297 static EncodeMapper<A> *Read(const string& filename, EncodeType type) { in Read() function
303 return Read(strm, filename, type); in Read()
Dproduct-weight.h54 istream &Read(istream &strm) { in Read() function
55 value1_.Read(strm); in Read()
56 return value2_.Read(strm); in Read()
/external/skia/src/xml/
DSkBML_XMLParser.cpp172 void BML_XMLParser::Read(SkStream& s, SkXMLWriter& writer) in Read() function in BML_XMLParser
179 void BML_XMLParser::Read(SkStream& s, SkWStream& output) in Read() function in BML_XMLParser
182 Read(s, writer); in Read()
185 void BML_XMLParser::Read(SkStream& s, SkXMLParser& output) in Read() function in BML_XMLParser
188 Read(s, writer); in Read()
/external/opencore/fileformats/avi/parser/src/
Dpv_avifile_parser_utils.cpp77 if (aFp->Read(temp, 1, sz) != sz) in read32()
100 if (aFp->Read(&temp, 1, 1) != 1) in read8()
119 if (aFp->Read(temp, 1, sz) != sz) in read16()
/external/webkit/WebKit/win/
DCOMPropertyBag.h51 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT*, IErrorLog*);
55 …virtual HRESULT STDMETHODCALLTYPE Read(ULONG cProperties, PROPBAG2*, IErrorLog*, VARIANT* pvarValu…
134 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Read(LPCOLESTR pszPropName,… in Read() function
161 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Read(ULONG cProperties, PRO… in Read() function
171 phrError[i] = Read(pPropBag[i].pstrName, &pvarValue[i], pErrorLog); in Read()
/external/webkit/WebKitTools/DumpRenderTree/win/
DPolicyDelegate.cpp106 if (SUCCEEDED(actionInformation->Read(WebActionNavigationTypeKey, &var, 0))) { in decidePolicyForNavigationAction()
138 if (SUCCEEDED(actionInformation->Read(WebActionElementKey, &actionElementVar, 0))) { in decidePolicyForNavigationAction()
141 if (SUCCEEDED(actionElement->Read(WebElementDOMNodeKey, &originatingNodeVar, 0))) { in decidePolicyForNavigationAction()
/external/opencore/fileformats/mp4/parser/utils/mp4recognizer/src/
Datomutils.cpp45 retVal = (int32) fp->_pvfile.Read((void*)bytes, 1, N); in read64()
79 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read32()
102 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read32read32()
127 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read24()
148 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read16()
171 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read16read16()
194 retVal = (int32)(fp->_pvfile.Read((void*) & data, 1, 1)); in read8()
214 retVal = (int32)(fp->_pvfile.Read((void*)bytes, 1, N)); in read8read8()
319 bytesRead = fp->_pvfile.Read(data, 1, length); in readByteData()
338 wordsRead = (int32)(fp->_pvfile.Read((void*)data, 2, length)); in readUnicodeData()
/external/opencore/fileformats/common/parser/src/
Dpvfile.cpp77 OSCL_EXPORT_REF uint32 PVFile::Read(OsclAny *buffer, in Read() function in PVFile
82 return iFile->Read(buffer, size, numelements); in Read()
84 return iFilePtr->Read(buffer, size, numelements); in Read()
88 iDataStreamAccess->Read(iDataStreamSession, in Read()
/external/skia/src/views/
DSkOSSound.cpp25 long Read(char* pData, long nLength);
98 long CWaveFile::Read(char* pData, long nLength) in Read() function in CWaveFile
293 wave->waveFile.Read(wave->whdr.lpData, wave->whdr.dwBufferLength); in StartWave()
/external/opencore/pvmi/media_io/pvmi_mio_fileinput/src/
Dpvmi_mio_fileinput.cpp892 iInputFile.Read((OsclAny*)fileData, sizeof(uint8), fileSize); in DoInit()
1018 iInputFile.Read((OsclAny*)fileData, sizeof(uint8), fileSize); in DoInit()
1033 iLogFile.Read(&numSamplesInTrack, sizeof(char), 4); in DoInit()
1037 iLogFile.Read(&bitrate, sizeof(char), 4); //present in the log file in DoInit()
1041 iLogFile.Read(&timescale, sizeof(char), 4); in DoInit()
1046 iLogFile.Read(&isTrackDuration, sizeof(char), 1); in DoInit()
1049 iLogFile.Read(&trackDuration, sizeof(char), 4); in DoInit()
1059 iLogFile.Read(&SampleSizeArray[ii], sizeof(char), 4); //size of the ith frame in DoInit()
1070 iLogFile.Read(&TextTimeStampArray[ii], sizeof(char), 4); in DoInit()
1151 iInputFile.Read((OsclAny*)fileData, sizeof(uint8), fileSize); in DoInit()
[all …]

123456789