HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 101 - 125 of 1945) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterPointShape.java 87 public void write(JmeExporter ex) throws IOException { method in class:EmitterPointShape
89 oc.write(point, "point", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
DirectionalLight.java 91 public void write(JmeExporter ex) throws IOException { method in class:DirectionalLight
92 super.write(ex);
94 oc.write(direction, "direction", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderVariable.java 57 public void write(JmeExporter ex) throws IOException{ method in class:ShaderVariable
59 oc.write(name, "name", null);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
ConeCollisionShape.java 49 public void write(JmeExporter ex) throws IOException { method in class:ConeCollisionShape
50 super.write(ex);
52 capsule.write(radius, "radius", 0.5f);
53 capsule.write(height, "height", 0.5f);
54 capsule.write(axis, "axis", 0.5f);
CylinderCollisionShape.java 86 public void write(JmeExporter ex) throws IOException { method in class:CylinderCollisionShape
87 super.write(ex);
89 capsule.write(halfExtents, "halfExtents", new Vector3f(0.5f, 0.5f, 0.5f));
90 capsule.write(axis, "axis", 1);
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);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
GuiTrack.java 107 public void write(JmeExporter ex) throws IOException { method in class:GuiTrack
108 super.write(ex);
110 oc.write(screen, "screen", "");
  /frameworks/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 83 public synchronized void write(byte[] buffer, int offset, int len) { method in class:PoolingByteArrayOutputStream
85 super.write(buffer, offset, len);
89 public synchronized void write(int oneByte) { method in class:PoolingByteArrayOutputStream
91 super.write(oneByte);
  /libcore/luni/src/main/java/java/io/
BufferedOutputStream.java 107 * the number of bytes from {@code buffer} to write to this
114 * if an error occurs attempting to write to this stream.
121 public synchronized void write(byte[] buffer, int offset, int length) throws IOException { method in class:BufferedOutputStream
131 out.write(buffer, offset, length);
168 * if an error occurs attempting to write to this stream.
171 public synchronized void write(int oneByte) throws IOException { method in class:BufferedOutputStream
174 out.write(buf, 0, count);
185 out.write(buf, 0, count);
PipedOutputStream.java 122 * Separate threads should be used to write to a {@code PipedOutputStream}
127 * the buffer to write.
129 * the index of the first byte in {@code buffer} to write.
131 * the number of bytes from {@code buffer} to write to this
138 * waiting for space to write data. This case is not currently
146 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:PipedOutputStream
147 super.write(buffer, offset, count);
155 * Separate threads should be used to write to a {@code PipedOutputStream}
160 * the byte to write.
163 * waiting for space to write data. This case is not currentl
171 public void write(int oneByte) throws IOException { method in class:PipedOutputStream
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamTest.java 36 public void write(int oneByte) throws IOException { method in class:OldOutputStreamTest.BasicOutputStream
59 bos.write(shortByteArray);
73 bos.write(longByteArray);
84 bos.write(shortByteArray, 6, 5);
98 bos.write(longByteArray, 5, 20);
103 bos.write(longByteArray, -1, 10);
112 bos.write(longByteArray, 10, -1);
121 bos.write(longByteArray, 20, 10);
  /libcore/luni/src/main/java/libcore/io/
Streams.java 46 * Implements OutputStream.write(int) in terms of OutputStream.write(byte[], int, int).
47 * OutputStream assumes that you implement OutputStream.write(int) and provides default
53 out.write(buffer);
109 bytes.write(buffer, 0, count);
123 writer.write(buffer, 0, count);
184 out.write(buffer, 0, c);
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 65 public void write(byte[] b, int off, int len) throws IOException { method in class:LoggingSessionOutputBuffer
66 this.out.write(b, off, len);
72 public void write(int b) throws IOException { method in class:LoggingSessionOutputBuffer
73 this.out.write(b);
79 public void write(byte[] b) throws IOException { method in class:LoggingSessionOutputBuffer
80 this.out.write(b);
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthOutputStream.java 57 * write operations will be ignored.
72 * the stream. Subsequent write operations will be ignored.
104 public void write(byte[] b, int off, int len) throws IOException { method in class:ContentLengthOutputStream
106 throw new IOException("Attempted write to closed stream.");
113 this.out.write(b, off, len);
118 public void write(byte[] b) throws IOException { method in class:ContentLengthOutputStream
119 write(b, 0, b.length); method
122 public void write(int b) throws IOException { method in class:ContentLengthOutputStream
124 throw new IOException("Attempted write to closed stream.");
127 this.out.write(b)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherOutputStream.java 50 public void write( method in class:CipherOutputStream
62 out.write(buf, 0, len);
67 out.write(streamCipher.returnByte((byte)b));
75 * The <code>write</code> method of
76 * <code>CipherOutputStream</code> calls the <code>write</code>
82 * @see #write(byte[], int, int)
84 public void write( method in class:CipherOutputStream
88 write(b, 0, b.length); method
97 * @param len the number of bytes to write.
100 public void write( method in class:CipherOutputStream
    [all...]
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 24 * NOTE: copy-on-write not supported
127 out.write (m_buf, 0, m_pos);
241 public final void write (final int b) method in class:ByteArrayOStream
265 public final void write (final byte [] buf, final int offset, final int length) method in class:ByteArrayOStream
  /external/ganymed-ssh2/examples/
SingleThreadStdoutStderr.java 112 System.out.write(buffer, 0, len);
119 System.err.write(buffer, 0, len);
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataOutputStream.java 55 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:LittleEndianDataOutputStream
57 out.write(b, off, len);
71 * {@link #writeChars(String s)} or another write method instead.
131 out.write(0xFF & v);
132 out.write(0xFF & (v >> 8));
133 out.write(0xFF & (v >> 16));
134 out.write(0xFF & (v >> 24));
146 write(bytes, 0, bytes.length); method
157 out.write(0xFF & v);
158 out.write(0xFF & (v >> 8))
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CollisionShape.java 110 public void write(JmeExporter ex) throws IOException { method in class:CollisionShape
112 capsule.write(scale, "scale", new Vector3f(1, 1, 1));
113 capsule.write(getMargin(), "margin", 0.0f);
HeightfieldCollisionShape.java 119 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(flipQuadEdges, "flipQuadEdges", false);
    [all...]
HullCollisionShape.java 35 public void write(JmeExporter ex) throws IOException { method in class:HullCollisionShape
36 super.write(ex);
39 capsule.write(points, "points", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Animation.java 188 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);
Pose.java 86 // 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);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
KeyFrame.java 64 public void write(JmeExporter ex) throws IOException { method in class:KeyFrame
67 oc.write(index, "index", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
PositionTrack.java 108 public void write(JmeExporter ex) throws IOException { method in class:PositionTrack
109 super.write(ex);
111 oc.write(spatialName, "spatialName", "");
112 oc.write(endPosition, "endPosition", null);

Completed in 253 milliseconds

1 2 3 45 6 7 8 91011>>