HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 301 - 325 of 1637) sorted by null

<<11121314151617181920>>

  /external/chromium_org/net/websockets/
websocket_test_util.cc 66 MockRead read; member in struct:net::WebSocketDeterministicMockClientSocketFactoryMaker::Detail
91 detail_->read = MockRead(SYNCHRONOUS, 1, detail_->return_to_read.c_str());
93 new DeterministicSocketData(&detail_->read, 1, &detail_->write, 1));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
zipfileset_unittest.py 47 def read(self, filename): member in class:FakeZip
51 self._filesystem.write_text_file(self._filesystem.join(path, filename), self.read(filename))
78 self.assertEqual('contents', self._zip.read('some-file'))
  /external/chromium_org/third_party/icu/source/tools/toolutil/
uparse.c 208 /* read one code point */
267 /* read one code point */
292 /* read a range like start or start..end */
309 /* read the start code point */
326 /* read the end code point */
363 const char *read = source; local
370 while(read < source+sLen) {
371 sscanf(read, "%2x", &value);
376 read += 2;
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv_test.cc 101 // Read sequentially.
103 ASSERT_OK(seq_file->Read(5, &result, scratch)); // Read "hello".
106 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Read "world".
108 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Try reading past EOF.
111 ASSERT_OK(seq_file->Read(1000, &result, scratch));
117 ASSERT_OK(rand_file->Read(6, 5, &result, scratch)); // Read "world".
119 ASSERT_OK(rand_file->Read(0, 5, &result, scratch)); // Read "hello"
173 size_t read = 0; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
bytebuffer_unittest.cc 111 std::string read; local
112 EXPECT_TRUE(buffer.ReadString(&read, 3));
113 EXPECT_EQ("ABC", read);
117 read.clear();
118 EXPECT_TRUE(buffer.ReadString(&read, 3));
119 EXPECT_EQ("ABC", read);
126 read.clear();
127 EXPECT_TRUE(buffer.ReadString(&read, 3));
128 EXPECT_EQ("DEF", read);
140 // Write and read uint8
    [all...]
proxyserver.cc 102 Read(int_socket_.get(), &out_buffer_);
121 Read(ext_socket_.get(), &in_buffer_);
136 void ProxyBinding::Read(AsyncSocket* socket, FifoBuffer* buffer) {
137 // Only read if the buffer is empty.
140 int read; local
143 read = socket->Recv(p, size);
144 buffer->ConsumeWriteBuffer(_max(read, 0));
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppsocket.cc 196 bool XmppSocket::Read(char * data, size_t len, size_t* len_read) {
198 int read = cricket_socket_->Recv(data, len); local
199 if (read > 0) {
200 *len_read = (size_t)read;
204 talk_base::StreamResult result = stream_->Read(data, len, len_read, NULL);
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 17 virtual size_t read(void* buffer, size_t size) SK_OVERRIDE;
37 // Amount that has been buffered by calls to read. Will always be less than
46 // Read up to size bytes from already buffered data, and copy to
56 // Read up to size bytes directly from the stream and into dst if non-
107 // Some data has already been copied to fBuffer. Read up to the
130 const size_t buffered = fStream->read(buffer, bytesToBuffer);
136 // Copy the buffer to the destination buffer and update the amount read.
149 const size_t bytesReadDirectly = fStream->read(dst, size);
152 // If we have read past the end of the buffer, rewinding is no longer
161 size_t FrontBufferedStream::read(void* voidDst, size_t size) function in class:FrontBufferedStream
    [all...]
  /external/e2fsprogs/include/nonunix/
unistd.h 22 #define read _read macro
  /external/icu4c/tools/toolutil/
uparse.c 209 /* 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/javasqlite/src/main/java/SQLite/
Blob.java 19 * Read position, file pointer.
95 * Read single byte from blob.
96 * @return byte read
99 public int read() throws IOException { method in class:BlobR
101 int n = blob.read(b, 0, pos, b.length);
110 * Read byte array from blob.
112 * @return number of bytes read
115 public int read(byte b[]) throws IOException { method in class:BlobR
116 int n = blob.read(b, 0, pos, b.length);
125 * Read slice of byte array from blob
132 public int read(byte b[], int off, int len) throws IOException { method in class:BlobR
306 native int read(byte[] b, int off, int pos, int len) throws IOException; method in class:Blob
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
BlenderTrack.java 121 public void read(JmeImporter im) throws IOException { method in class:BlenderTrack
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CollisionShape.java 116 public void read(JmeImporter im) throws IOException { method in class:CollisionShape
CompoundCollisionShape.java 142 public void read(JmeImporter im) throws IOException { method in class:CompoundCollisionShape
143 super.read(im);
HeightfieldCollisionShape.java 132 public void read(JmeImporter im) throws IOException { method in class:HeightfieldCollisionShape
133 super.read(im);
HullCollisionShape.java 43 public void read(JmeImporter im) throws IOException { method in class:HullCollisionShape
44 super.read(im);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Animation.java 196 public void read(JmeImporter im) throws IOException { method in class:Animation
Pose.java 119 public void read(JmeImporter i) throws IOException { method in class:Pose
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
KeyFrame.java 70 public void read(JmeImporter im) throws IOException { method in class:KeyFrame
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
PositionTrack.java 116 public void read(JmeImporter im) throws IOException { method in class:PositionTrack
117 super.read(im);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterBoxShape.java 113 public void read(JmeImporter im) throws IOException { method in class:EmitterBoxShape
EmitterSphereShape.java 112 public void read(JmeImporter im) throws IOException { method in class:EmitterSphereShape
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
PointLight.java 146 public void read(JmeImporter im) throws IOException { method in class:PointLight
147 super.read(im);
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParamTexture.java 61 public void read(JmeImporter im) throws IOException { method in class:MatParamTexture
62 super.read(im);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Rectangle.java 178 public void read(JmeImporter e) throws IOException { method in class:Rectangle

Completed in 1118 milliseconds

<<11121314151617181920>>