Searched defs:read (Results 126 - 150 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Ddata.py71 def read(self): member in class:CoverageData
H A Dhtml.py24 return data_file.read()
72 self.status.read(config.html_dir)
116 source = source_file.read()
244 def read(self, directory): member in class:HtmlStatus
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DBinaryStream.h38 read(&value);
51 read(&value);
62 read<unsigned char>(outArray, count);
126 void read(T *v, size_t num) function in class:gl::BinaryInputStream
143 void read(T *v) function in class:gl::BinaryInputStream
145 read(v, 1);
/external/chromium_org/third_party/cython/src/Cython/
H A DUtils.py196 # and this bulk read/split is much faster.
197 lines = f.read(250).split("\n")
209 c = f.read(1)
212 c = f.read(1)
225 if f.read(1) != u'\uFEFF':
240 # let's assume .read() doesn't change
242 self._read = stream.read
246 def read(self, count=-1): member in class:NormalisedNewlineStream
257 data = self.read(0x1000)
260 data = self.read(
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsystem.h13 /* this file you indicate that you have read the license and */
223 * A function used to seek and read data from a given input stream.
230 * The offset of read in stream (always from start).
233 * The address of the read buffer.
236 * The number of bytes to read from the stream.
239 * The number of bytes effectively read by the stream.
301 * read ::
329 FT_Stream_IoFunc read; member in struct:FT_StreamRec_
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Duparse.c209 /* read one code point */
269 /* read one code point */
294 /* read a range like start or start..end */
311 /* read the start code point */
328 /* read the end code point */
365 const char *read = source; local
372 while(read < source+sLen) {
373 sscanf(read, "%2x", &value);
378 read += 2;
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv_test.cc173 size_t read = 0; local
175 while (read < kWriteSize) {
176 ASSERT_OK(seq_file->Read(kWriteSize - read, &result, scratch));
178 read += result.size();
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppsocket.cc198 int read = cricket_socket_->Recv(data, len); local
199 if (read > 0) {
200 *len_read = (size_t)read;
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglcontext.c478 _eglCheckMakeCurrent(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read) argument
489 if (draw || read)
496 && (draw == NULL || read == NULL))
502 * "If ctx is current to some other thread, or if either draw or read are
518 if (read && read->CurrentContext && read->CurrentContext != ctx) {
519 if (read->CurrentContext->Binding != t ||
520 read->CurrentContext->ClientAPI != ctx->ClientAPI)
526 (read
559 _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read, _EGLContext **old_ctx, _EGLSurface **old_draw, _EGLSurface **old_read) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
H A Ddri_context.c220 struct dri_drawable *read = dri_drawable(driReadPriv); local
240 read->texture_stamp = driReadPriv->lastStamp - 1;
243 ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
H A Ddri_context.c220 struct dri_drawable *read = dri_drawable(driReadPriv); local
240 read->texture_stamp = driReadPriv->lastStamp - 1;
243 ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/sw/
H A Ddri_context.c220 struct dri_drawable *read = dri_drawable(driReadPriv); local
240 read->texture_stamp = driReadPriv->lastStamp - 1;
243 ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglxcurrent.c211 GLXDrawable read, GLXContext gc_user)
234 if (gc == NULL && (draw != None || read != None)) {
235 __glXGenerateError(dpy, (draw != None) ? draw : read,
239 if (gc != NULL && (draw == None || read == None)) {
248 gc->currentDrawable == draw && gc->currentReadable == read) {
269 if (gc->vtable->bind(gc, oldGC, draw, read) != Success) {
279 gc->currentReadable = read;
210 MakeContextCurrent(Display * dpy, GLXDrawable draw, GLXDrawable read, GLXContext gc_user) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkBuffer.h18 The RBuffer is given the buffer to read from, with either a specified size
20 to attempt to read a value from an empty RBuffer (data == null).
44 /** Return the number of bytes that have been read from the beginning
52 /** Return true if the buffer has read to the end of the data pointer.
61 virtual bool read(void* buffer, size_t size) { function in class:SkRBuffer
71 bool readPtr(void** ptr) { return read(ptr, sizeof(void*)); }
72 bool readScalar(SkScalar* x) { return read(x, 4); }
73 bool readU32(uint32_t* x) { return read(x, 4); }
74 bool readS32(int32_t* x) { return read(x, 4); }
75 bool readU16(uint16_t* x) { return read(
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dproxyserver.cc120 // Only read if the buffer is empty.
123 int read; local
126 read = socket->Recv(p, size);
127 buffer->ConsumeWriteBuffer(_max(read, 0));
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialcli.py152 def read(self, size=1): member in class:IronSerial
155 until the requested number of bytes is read."""
157 # must use single byte reads as this is the only way to read
H A Dserialjava.py152 def read(self, size=1): member in class:JavaSerial
155 until the requested number of bytes is read."""
157 read = bytearray()
159 while len(read) < size:
160 x = self._instream.read()
165 read.append(x)
166 return bytes(read)
258 sys.stdio.write('%r\n' % s.read(5))
H A Dserialwin32.py242 def read(self, size=1): member in class:Win32Serial
245 until the requested number of bytes is read."""
262 read = buf.raw[:rc.value]
264 read = bytes()
272 read = buf.raw[:rc.value]
274 read = bytes()
275 return bytes(read)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
H A Dprotocol_socket.py132 return 0 # hmmm, see comment in read()
134 def read(self, size=1): member in class:SocketSerial
137 until the requested number of bytes is read."""
272 sys.stdout.write("read: %s\n" % s.read(5))
/external/deqp/executor/
H A DxeCallQueue.cpp163 void CallReader::read (deUint8* bytes, int numBytes) function in class:xe::CallReader
186 reader.read((deUint8*)&c, sizeof(char));
/external/deqp/framework/delibs/destream/
H A DdeRingbuffer.c195 static deStreamResult consumerStream_read (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* read) argument
201 *read = 0;
204 while (*read < bufSize)
237 writeSize = deMin32(ringbuffer->blockUsage[ringbuffer->outBlock] - ringbuffer->outPos, bufSize - *read);
239 dst = (deUint8*)buf + *read;
244 *read += writeSize;
H A DdeThreadStream.c55 deInt32 read = 0; local
59 readResult = deInStream_read(threadStream->input, buffer, threadStream->bufferSize, &read);
61 while (written < read)
66 deOutStream_write(&(threadStream->producerStream), buffer, read - written, &wrote);
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotConverters.py67 def read(self, reader, font, tableDict): member in class:BaseConverter
96 def read(self, reader, font, tableDict): member in class:Long
102 def read(self, reader, font, tableDict): member in class:Version
128 def read(self, reader, font, tableDict): member in class:Short
134 def read(self, reader, font, tableDict): member in class:UShort
140 def read(self, reader, font, tableDict): member in class:UInt24
151 def read(self, reader, font, tableDict): member in class:Tag
157 def read(self, reader, font, tableDict): member in class:GlyphID
171 def read(self, reader, font, tableDict): member in class:DeciPoints
180 def read(sel member in class:Struct
230 def read(self, reader, font, tableDict): member in class:Table
290 def read(self, reader, font, tableDict): member in class:ValueFormat
300 def read(self, reader, font, tableDict): member in class:ValueRecord
318 def read(self, reader, font, tableDict): member in class:DeltaValue
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotConverters.py67 def read(self, reader, font, tableDict): member in class:BaseConverter
96 def read(self, reader, font, tableDict): member in class:Long
102 def read(self, reader, font, tableDict): member in class:Version
128 def read(self, reader, font, tableDict): member in class:Short
134 def read(self, reader, font, tableDict): member in class:UShort
140 def read(self, reader, font, tableDict): member in class:UInt24
151 def read(self, reader, font, tableDict): member in class:Tag
157 def read(self, reader, font, tableDict): member in class:GlyphID
171 def read(self, reader, font, tableDict): member in class:DeciPoints
180 def read(sel member in class:Struct
230 def read(self, reader, font, tableDict): member in class:Table
290 def read(self, reader, font, tableDict): member in class:ValueFormat
300 def read(self, reader, font, tableDict): member in class:ValueRecord
318 def read(self, reader, font, tableDict): member in class:DeltaValue
[all...]
/external/freetype/include/
H A Dftsystem.h13 /* this file you indicate that you have read the license and */
223 * A function used to seek and read data from a given input stream.
230 * The offset of read in stream (always from start).
233 * The address of the read buffer.
236 * The number of bytes to read from the stream.
239 * The number of bytes effectively read by the stream.
301 * read ::
329 FT_Stream_IoFunc read; member in struct:FT_StreamRec_

Completed in 3898 milliseconds

1234567891011>>