Searched refs:write (Results 251 - 275 of 1953) sorted by relevance

<<11121314151617181920>>

/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DMockSocketChannel.java61 public int write(ByteBuffer arg0) throws IOException { method in class:MockSocketChannel
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { method in class:MockSocketChannel
/external/apache-harmony/support/src/test/java/tests/support/
H A DStreams.java40 out.write(buffer, 0, count);
53 out.write(buffer, 0, count);
/external/arduino/hardware/arduino/cores/arduino/
H A DPrint.cpp16 License along with this library; if not, write to the Free Software
33 void Print::write(const char *str) function in class:Print
36 write(*str++);
40 void Print::write(const uint8_t *buffer, size_t size) function in class:Print
43 write(*buffer++);
49 write(s[i]);
55 write(str);
81 write(n);
95 if (base == 0) write(n);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java39 public void write(OutputStream zOut) method in class:CMSProcessableByteArray
42 zOut.write(bytes);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java32 output.write(buf, off, i);
45 output.write(i);
/external/chromium/net/tools/testserver/
H A Dbackoff_server.py24 self.wfile.write('QUITTING')
34 self.wfile.write('OK')
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DGImpactCollisionShape.java108 public void write(JmeExporter ex) throws IOException { method in class:GImpactCollisionShape
109 super.write(ex);
111 // capsule.write(worldScale, "worldScale", new Vector3f(1, 1, 1));
112 capsule.write(numVertices, "numVertices", 0);
113 capsule.write(numTriangles, "numTriangles", 0);
114 capsule.write(vertexStride, "vertexStride", 0);
115 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
117 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
118 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
H A DMeshCollisionShape.java105 public void write(JmeExporter ex) throws IOException { method in class:MeshCollisionShape
106 super.write(ex);
108 capsule.write(numVertices, "numVertices", 0);
109 capsule.write(numTriangles, "numTriangles", 0);
110 capsule.write(vertexStride, "vertexStride", 0);
111 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
113 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
114 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DConeJoint.java102 public void write(JmeExporter ex) throws IOException { method in class:ConeJoint
103 super.write(ex);
105 capsule.write(rotA, "rotA", new Matrix3f());
106 capsule.write(rotB, "rotB", new Matrix3f());
108 capsule.write(angularOnly, "angularOnly", false);
109 capsule.write(swingSpan1, "swingSpan1", 1e30f);
110 capsule.write(swingSpan2, "swingSpan2", 1e30f);
111 capsule.write(twistSpan, "twistSpan", 1e30f);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DLightScatteringFilter.java221 public void write(JmeExporter ex) throws IOException { method in class:LightScatteringFilter
222 super.write(ex);
224 oc.write(lightPosition, "lightPosition", Vector3f.ZERO);
225 oc.write(nbSamples, "nbSamples", 50);
226 oc.write(blurStart, "blurStart", 0.02f);
227 oc.write(blurWidth, "blurWidth", 0.9f);
228 oc.write(lightDensity, "lightDensity", 1.4f);
229 oc.write(adaptative, "adaptative", true);
H A DRadialBlurFilter.java142 public void write(JmeExporter ex) throws IOException { method in class:RadialBlurFilter
143 super.write(ex);
145 oc.write(sampleDist, "sampleDist", 1.0f);
146 oc.write(sampleStrength, "sampleStrength", 2.2f);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DWaterFilter.java302 public void write(JmeExporter ex) throws IOException { method in class:WaterFilter
303 super.write(ex);
306 oc.write(speed, "speed", 1f);
307 oc.write(lightDirection, "lightDirection", new Vector3f(0, -1, 0));
308 oc.write(lightColor, "lightColor", ColorRGBA.White);
309 oc.write(waterHeight, "waterHeight", 0.0f);
310 oc.write(waterColor, "waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f));
311 oc.write(deepWaterColor, "deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.145f, 1.0f));
313 oc.write(colorExtinction, "colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f));
314 oc.write(waterTransparenc
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DConeJoint.java99 public void write(JmeExporter ex) throws IOException { method in class:ConeJoint
100 super.write(ex);
102 capsule.write(rotA, "rotA", new Matrix3f());
103 capsule.write(rotB, "rotB", new Matrix3f());
105 capsule.write(angularOnly, "angularOnly", false);
106 capsule.write(swingSpan1, "swingSpan1", 1e30f);
107 capsule.write(swingSpan2, "swingSpan2", 1e30f);
108 capsule.write(twistSpan, "twistSpan", 1e30f);
/external/okhttp/src/main/java/libcore/net/http/
H A DRetryableOutputStream.java54 @Override public synchronized void write(byte[] buffer, int offset, int count) method in class:RetryableOutputStream
61 content.write(buffer, offset, count);
/external/proguard/src/proguard/classfile/editor/
H A DInstructionWriter.java18 * with this program; if not, write to the Free Software Foundation, Inc.,
68 // Try to write out the instruction.
70 simpleInstruction.write(codeAttribute, offset);
78 // Try to write out the instruction.
79 constantInstruction.write(codeAttribute, offset);
94 constantInstruction.write(codeAttribute, offset);
103 // Try to write out the instruction.
104 variableInstruction.write(codeAttribute, offset);
119 variableInstruction.write(codeAttribute, offset);
128 // Try to write ou
[all...]
/external/sepolicy/
H A Dtee.te12 allow tee tee_data_file:dir { getattr write add_name };
/external/valgrind/main/memcheck/tests/
H A Dexitprog.stderr.exp1 Invalid write of size 1
H A Dfwrite.stderr.exp1 Syscall param write(buf) points to uninitialised byte(s)
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileWriterChromium.cpp57 void AsyncFileWriterChromium::write(long long position, Blob* data) function in class:WebCore::AsyncFileWriterChromium
60 m_writer->write(position, WebKit::WebURL(data->url()));
/external/webkit/Tools/QueueStatusServer/handlers/
H A Dupdatesvnrevision.py38 self.response.out.write(template.render("templates/updatesvnrevision.html", None))
53 self.response.out.write(svn_revision.key().id())
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp18 constexpr Tape(const Tape &old, bool write) : argument
19 l(old.l), val(write), r(old.r) {}
29 constexpr Tape update(const Tape &old, bool write) { return Tape(old, write); } argument
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimation.java188 public void write(JmeExporter ex) throws IOException { method in class:Animation
190 out.write(name, "name", null);
191 out.write(length, "length", 0f);
192 out.write(tracks, "tracks", null);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DPointLight.java138 public void write(JmeExporter ex) throws IOException { method in class:PointLight
139 super.write(ex);
141 oc.write(position, "position", null);
142 oc.write(radius, "radius", 0f);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMatParamTexture.java53 public void write(JmeExporter ex) throws IOException { method in class:MatParamTexture
54 super.write(ex);
56 oc.write(unit, "texture_unit", -1);
57 oc.write(texture, "texture", null);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderKey.java111 public void write(JmeExporter ex) throws IOException{ method in class:ShaderKey
112 super.write(ex);
114 oc.write(fragName, "fragment_name", null);
115 oc.write(language, "language", null);

Completed in 460 milliseconds

<<11121314151617181920>>