/libcore/luni/src/main/java/java/io/ |
ObjectOutput.java | 50 * the buffer to write. 54 public void write(byte[] buffer) throws IOException; method in interface:ObjectOutput 62 * the buffer to write. 64 * the index of the first byte in {@code buffer} to write. 66 * the number of bytes from {@code buffer} to write to the target 71 public void write(byte[] buffer, int offset, int count) throws IOException; method in interface:ObjectOutput 79 * the byte to write. 83 public void write(int value) throws IOException; method in interface:ObjectOutput 89 * the object to write.
|
FilterWriter.java | 81 * the buffer to write. 83 * the index of the first character in {@code buffer} to write. 85 * the number of characters in {@code buffer} to write. 90 public void write(char[] buffer, int offset, int count) throws IOException { method in class:FilterWriter 92 out.write(buffer, offset, count); 101 * the char to write to the target writer. 106 public void write(int oneChar) throws IOException { method in class:FilterWriter 108 out.write(oneChar); 120 * the index of the first character in {@code str} to write. 122 * the number of chars in {@code str} to write 127 public void write(String str, int offset, int count) throws IOException { method in class:FilterWriter [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
BoxCollisionShape.java | 67 public void write(JmeExporter ex) throws IOException { method in class:BoxCollisionShape 68 super.write(ex); 70 capsule.write(halfExtents, "halfExtents", new Vector3f(1, 1, 1));
|
ConeCollisionShape.java | 47 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);
|
CylinderCollisionShape.java | 84 public void write(JmeExporter ex) throws IOException { method in class:CylinderCollisionShape 85 super.write(ex); 87 capsule.write(halfExtents, "halfExtents", new Vector3f(0.5f, 0.5f, 0.5f)); 88 capsule.write(axis, "axis", 1);
|
PlaneCollisionShape.java | 41 public void write(JmeExporter ex) throws IOException { method in class:PlaneCollisionShape 42 super.write(ex); 44 capsule.write(plane, "collisionPlane", new Plane());
|
SimplexCollisionShape.java | 53 public void write(JmeExporter ex) throws IOException { method in class:SimplexCollisionShape 54 super.write(ex); 56 capsule.write(vector1, "simplexPoint1", null); 57 capsule.write(vector2, "simplexPoint2", null); 58 capsule.write(vector3, "simplexPoint3", null); 59 capsule.write(vector4, "simplexPoint4", null);
|
SphereCollisionShape.java | 66 public void write(JmeExporter ex) throws IOException { method in class:SphereCollisionShape 67 super.write(ex); 69 capsule.write(radius, "radius", 0.5f);
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/ |
ChildCollisionShape.java | 33 public void write(JmeExporter ex) throws IOException { method in class:ChildCollisionShape 35 capsule.write(location, "location", new Vector3f()); 36 capsule.write(rotation, "rotation", new Matrix3f()); 37 capsule.write(shape, "shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
AudioKey.java | 122 public void write(JmeExporter ex) throws IOException{ method in class:AudioKey 123 super.write(ex); 125 oc.write(stream, "do_stream", false); 126 oc.write(streamCache, "use_stream_cache", false);
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
Kerning.java | 63 public void write(JmeExporter ex) throws IOException { method in class:Kerning 65 oc.write(second, "second", 0); 66 oc.write(amount, "amount", 0);
|
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/ |
ColorOverlayFilter.java | 99 public void write(JmeExporter ex) throws IOException { method in class:ColorOverlayFilter 100 super.write(ex); 102 oc.write(color, "color", ColorRGBA.White);
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
BoxCollisionShape.java | 67 public void write(JmeExporter ex) throws IOException { method in class:BoxCollisionShape 68 super.write(ex); 70 capsule.write(halfExtents, "halfExtents", new Vector3f(1, 1, 1));
|
PlaneCollisionShape.java | 40 public void write(JmeExporter ex) throws IOException { method in class:PlaneCollisionShape 41 super.write(ex); 43 capsule.write(plane, "collisionPlane", new Plane());
|
SphereCollisionShape.java | 66 public void write(JmeExporter ex) throws IOException { method in class:SphereCollisionShape 67 super.write(ex); 69 capsule.write(radius, "radius", 0.5f);
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/ |
LodDistanceCalculatorFactory.java | 68 public void write(JmeExporter ex) throws IOException { method in class:LodDistanceCalculatorFactory 70 c.write(lodThreshold, "lodThreshold", null); 71 c.write(lodThresholdSize, "lodThresholdSize", 2);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
RetryableOutputStream.java | 57 @Override public synchronized void write(byte[] buffer, int offset, int count) method in class:RetryableOutputStream 64 content.write(buffer, offset, count);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
CountOutputStream.java | 41 * @see java.io.OutputStream#write(byte[], int, int) 43 public void write(byte[] buf, int off, int len) throws IOException method in class:CountOutputStream 45 out.write(buf, off, len); 52 * @see java.io.OutputStream#write(byte[]) 54 public void write(byte[] buf) throws IOException method in class:CountOutputStream 56 out.write(buf); 63 * @see java.io.OutputStream#write(int) 65 public void write(int b) throws IOException method in class:CountOutputStream 67 out.write(b);
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothOutputStream.java | 53 public void write(int oneByte) throws IOException { method in class:BluetoothOutputStream 56 mSocket.write(b, 0, 1); 68 * the number of bytes from {@code buffer} to write to this 78 public void write(byte[] b, int offset, int count) throws IOException { method in class:BluetoothOutputStream 85 mSocket.write(b, offset, count);
|
/libcore/luni/src/main/java/java/security/ |
DigestOutputStream.java | 81 public void write(int b) throws IOException { method in class:DigestOutputStream 86 // write the byte 87 out.write(b); 95 * the buffer to write to. 97 * the index of the first byte in {@code b} to write. 99 * the number of bytes in {@code b} to write. 104 public void write(byte[] b, int off, int len) throws IOException { method in class:DigestOutputStream 109 // write len bytes 110 out.write(b, off, len);
|
/libcore/luni/src/main/java/java/util/zip/ |
CheckedOutputStream.java | 67 public void write(int val) throws IOException { method in class:CheckedOutputStream 68 out.write(val); 82 * number of bytes to write to the output stream. 87 public void write(byte[] buf, int off, int nbytes) throws IOException { method in class:CheckedOutputStream 88 out.write(buf, off, nbytes);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
CountingOutputStream.java | 39 * @param out the OutputStream to write to
50 * @param b the bytes to write, not null
52 * @see java.io.OutputStream#write(byte[])
54 public void write(byte[] b) throws IOException {
method in class:CountingOutputStream 56 super.write(b);
63 * @param b the bytes to write, not null
65 * @param len the maximum number of bytes to write
67 * @see java.io.OutputStream#write(byte[], int, int)
69 public void write(byte[] b, int off, int len) throws IOException {
method in class:CountingOutputStream 71 super.write(b, off, len); 82 public void write(int b) throws IOException { method in class:CountingOutputStream [all...] |
ProxyOutputStream.java | 45 * Invokes the delegate's <code>write(int)</code> method.
46 * @param idx the byte to write
49 public void write(int idx) throws IOException {
method in class:ProxyOutputStream 50 out.write(idx);
54 * Invokes the delegate's <code>write(byte[])</code> method.
55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException {
method in class:ProxyOutputStream 59 out.write(bts);
63 * Invokes the delegate's <code>write(byte[])</code> method.
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { method in class:ProxyOutputStream [all...] |
ProxyWriter.java | 28 * methods being called, such as write(char[]) to write(char[], int, int)
29 * and write(String) to write(String, int, int).
47 * Invokes the delegate's <code>write(int)</code> method.
48 * @param idx the character to write
51 public void write(int idx) throws IOException {
method in class:ProxyWriter 52 out.write(idx);
56 * Invokes the delegate's <code>write(char[])</code> method.
57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { method in class:ProxyWriter 71 public void write(char[] chr, int st, int end) throws IOException { method in class:ProxyWriter 80 public void write(String str) throws IOException { method in class:ProxyWriter 91 public void write(String str, int st, int end) throws IOException { method in class:ProxyWriter [all...] |
/external/proguard/src/proguard/classfile/editor/ |
InstructionWriter.java | 18 * 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); 91 // Write out a dummy constant instruction for now. 94 constantInstruction.write(codeAttribute, offset); 103 // Try to write out the instruction. 104 variableInstruction.write(codeAttribute, offset); 116 // Write out a dummy variable instruction for now [all...] |