Searched refs:write (Results 201 - 225 of 1953) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/public/
H A DWebFileWriter.h45 // Only one write or one truncate operation can be in progress at a time.
47 virtual void write(long long position, const WebURL& blobURL) = 0;
50 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
51 // Do not call cancel when there is no write or truncate in progress.
/external/webkit/Source/WebKit2/Scripts/
H A Dgenerate-message-receiver.py37 sys.stdout.write(webkit2.messages.generate_message_handler(input_file))
H A Dgenerate-messages-header.py37 sys.stdout.write(webkit2.messages.generate_messages_header(input_file))
/external/webkit/Tools/QueueStatusServer/handlers/
H A Dshowresults.py41 self.response.out.write(status.results_file)
H A Dsvnrevision.py40 self.response.out.write(svn_revisions[0].to_xml())
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Durlfetcher_mock.py42 f.write(self.fetch(url))
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmetered_stream.py49 It can be used directly as a stream, by calling write(), but provides
53 preceding update() (write() also will overwrite update()). So, calling
60 instead the call is equivalent to write(), although the text is
79 stream: output stream to write to
86 def write(self, txt): member in class:MeteredStream
93 self._stream.write(txt)
131 """Actually write the message to the stream."""
140 self._stream.write("\b" * len(self._last_update) +
143 self._stream.write(str)
/external/chromium/net/tools/testserver/
H A Dtestserver.py58 debug_output.write(str + "\n")
343 self.wfile.write('<html><head><title>%s</title></head></html>' %
360 self.wfile.write('<html><head><title>%s</title></head></html>' %
377 self.wfile.write('<html><head><title>%s</title></head></html>' %
394 self.wfile.write('<html><head><title>%s</title></head></html>' %
411 self.wfile.write('<html><head><title>%s</title></head></html>' %
428 self.wfile.write('<html><head><title>%s</title></head></html>' %
445 self.wfile.write('<html><head><title>%s</title></head></html>' %
462 self.wfile.write('<html><head><title>%s</title></head></html>' %
479 self.wfile.write('<htm
1314 def write(self, text) : member in class:FileMultiplexer
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dexternal_metrics_unittest.cc28 num_bytes = write(fd, &l, sizeof(l));
29 num_bytes = write(fd, name, strlen(name) + 1);
30 num_bytes = write(fd, value, strlen(value) + 1);
111 EXPECT_EQ(static_cast<int>(sizeof(i)), write(fd, &i, sizeof(i)));
112 EXPECT_EQ(i, write(fd, b, i));
122 EXPECT_EQ(static_cast<int>(sizeof(i)), write(fd, &i, sizeof(i)));
123 EXPECT_EQ(i, write(fd, b, i));
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java165 @Override public synchronized void write(int b) throws IOException { method in class:FileBackedOutputStream
167 out.write(b);
170 @Override public synchronized void write(byte[] b) throws IOException { method in class:FileBackedOutputStream
171 write(b, 0, b.length);
174 @Override public synchronized void write(byte[] b, int off, int len) method in class:FileBackedOutputStream
177 out.write(b, off, len);
201 transfer.write(memory.getBuffer(), 0, memory.getCount());
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java201 public void write(int v) throws IOException { method in class:BlobW
204 pos += blob.write(b, 0, pos, 1);
212 public void write(byte[] b) throws IOException { method in class:BlobW
214 pos += blob.write(b, 0, pos, b.length);
225 public void write(byte[] b, int off, int len) throws IOException { method in class:BlobW
233 pos += blob.write(b, off, pos, len);
287 * Internal blob write method.
295 native int write(byte[] b, int off, int pos, int len) throws IOException; method in class:Blob
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationsWriter.java96 output.write(num);
268 output.write(tag);
298 output.write('e');
320 output.write('c');
330 output.write('@');
344 output.write('[');
351 output.write(buf);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DSpotLight.java193 public void write(JmeExporter ex) throws IOException { method in class:SpotLight
194 super.write(ex);
196 oc.write(direction, "direction", new Vector3f());
197 oc.write(position, "position", new Vector3f());
198 oc.write(spotInnerAngle, "spotInnerAngle", FastMath.QUARTER_PI / 8);
199 oc.write(spotOuterAngle, "spotOuterAngle", FastMath.QUARTER_PI / 6);
200 oc.write(spotRange, "spotRange", 100);
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java87 this.outstream.write(this.buffer.buffer(), 0, len);
98 public void write(final byte[] b, int off, int len) throws IOException { method in class:AbstractSessionOutputBuffer
104 // write it directly to the output stream
108 // write directly to the out stream
109 this.outstream.write(b, off, len);
123 public void write(final byte[] b) throws IOException { method in class:AbstractSessionOutputBuffer
127 write(b, 0, b.length);
130 public void write(int b) throws IOException { method in class:AbstractSessionOutputBuffer
142 write(s.getBytes(this.charset));
144 write(CRL
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DFileBackedOutputStreamTest.java49 write(out, data, 0, 100, true);
88 write(out, data, 0, chunk1, singleByte);
97 write(out, data, chunk1, chunk2, singleByte);
114 private static void write( method in class:FileBackedOutputStreamTest
119 out.write(b[i]);
122 out.write(b, off, len);
134 out.write(data);
139 out.write(42);
145 // Verify that write had no effect
155 out.write(dat
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DHeightfieldCollisionShape.java119 public void write(JmeExporter ex) throws IOException { method in class:HeightfieldCollisionShape
120 super.write(ex);
122 capsule.write(heightStickWidth, "heightStickWidth", 0);
123 capsule.write(heightStickLength, "heightStickLength", 0);
124 capsule.write(heightScale, "heightScale", 0);
125 capsule.write(minHeight, "minHeight", 0);
126 capsule.write(maxHeight, "maxHeight", 0);
127 capsule.write(upAxis, "upAxis", 1);
128 capsule.write(heightfieldData, "heightfieldData", new float[0]);
129 capsule.write(flipQuadEdge
[all...]
H A DCapsuleCollisionShape.java90 public void write(JmeExporter ex) throws IOException { method in class:CapsuleCollisionShape
91 super.write(ex);
93 capsule.write(radius, "radius", 0.5f);
94 capsule.write(height, "height", 1);
95 capsule.write(axis, "axis", 1);
H A DConeCollisionShape.java47 public void write(JmeExporter ex) throws IOException { method in class:ConeCollisionShape
48 super.write(ex);
50 capsule.write(radius, "radius", 0.5f);
51 capsule.write(height, "height", 0.5f);
52 capsule.write(axis, "axis", 0.5f);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechniqueDef.java366 public void write(JmeExporter ex) throws IOException{ method in class:TechniqueDef
368 oc.write(name, "name", null);
369 oc.write(vertName, "vertName", null);
370 oc.write(fragName, "fragName", null);
371 oc.write(shaderLang, "shaderLang", null);
372 oc.write(presetDefines, "presetDefines", null);
373 oc.write(lightMode, "lightMode", LightMode.Disable);
374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable);
375 oc.write(renderState, "renderState", null);
376 oc.write(usesShader
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DHeightfieldCollisionShape.java106 public void write(JmeExporter ex) throws IOException { method in class:HeightfieldCollisionShape
107 super.write(ex);
109 capsule.write(heightStickWidth, "heightStickWidth", 0);
110 capsule.write(heightStickLength, "heightStickLength", 0);
111 capsule.write(heightScale, "heightScale", 0);
112 capsule.write(minHeight, "minHeight", 0);
113 capsule.write(maxHeight, "maxHeight", 0);
114 capsule.write(upAxis, "upAxis", 1);
115 capsule.write(heightfieldData, "heightfieldData", new float[0]);
116 capsule.write(flipQuadEdge
[all...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DCheckedOutputStreamTest.java59 chkOut.write(byteArray[4]);
66 chkOut.write(byteArray, 5, 4);
82 * @tests java.util.zip.CheckedOutputStream#write(int)
92 chkOut.write(element);
106 * @tests java.util.zip.CheckedOutputStream#write(byte[], int, int)
115 chkOut.write(byteArray, 4, 5);
121 chkOut.write(byteArray, 4, 6);
133 fail("Index for write is out of bounds");
H A DDeflaterOutputStreamTest.java105 dos.write(byteArray);
122 dos.write(outPutBuf);
169 dos.write(byteArray);
190 dos.write(byteArray);
214 // Test to write to a closed DeflaterOutputStream
216 dos.write(5);
221 // Test to write to a FileOutputStream that should have been closed
225 fos.write(("testing").getBytes());
244 dos.write(byteArray);
250 dos.write(
[all...]
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java281 out.write(filebuffer, 0, len);
302 barray.write(filebuffer, 0, len);
307 out.write(classfile);
353 out.write(classfile);
360 out.write("HTTP/1.0 200 OK".getBytes());
361 out.write(endofline);
362 out.write("Content-Length: ".getBytes());
363 out.write(Long.toString(dataLength).getBytes());
364 out.write(endofline);
366 out.write("Conten
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DPhysicsJoint.java123 public void write(JmeExporter ex) throws IOException { method in class:PhysicsJoint
125 capsule.write(nodeA, "nodeA", null);
126 capsule.write(nodeB, "nodeB", null);
127 capsule.write(pivotA, "pivotA", null);
128 capsule.write(pivotB, "pivotB", null);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DPose.java86 // write modified vertex
111 public void write(JmeExporter e) throws IOException { method in class:Pose
113 out.write(name, "name", "");
114 out.write(targetMeshIndex, "meshIndex", -1);
115 out.write(offsets, "offsets", null);
116 out.write(indices, "indices", null);

Completed in 1301 milliseconds

1234567891011>>