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

<<11121314151617181920>>

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 58 cos.write(data);
67 * write(int b) method testing. Tests that method writes correct values to
75 cos.write(data[i]);
85 * write(byte[] b) method testing. Tests that method writes correct values
92 cos.write(data);
101 * write(byte[] b, int off, int len) method testing.
108 cos.write(data, i, 1);
118 * @tests write(byte[] b, int off, int len)
123 new CipherOutputStream(new BufferedOutputStream((OutputStream) null), new NullCipher()).write(new byte[] {0}, 1, Integer.MAX_VALUE);
129 * @tests write(byte[] b, int off, int len
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 98 this.out.write(this.cache, 0, this.cachePosition);
114 this.out.write(this.cache, 0, this.cachePosition);
115 this.out.write(bufferToAppend, off, len);
121 // Write the final chunk.
140 public void write(int b) throws IOException { method in class:ChunkedOutputStream
142 throw new IOException("Attempted write to closed stream.");
155 public void write(byte b[]) throws IOException { method in class:ChunkedOutputStream
156 write(b, 0, b.length); method
159 public void write(byte src[], int off, int len) throws IOException { method in class:ChunkedOutputStream
161 throw new IOException("Attempted write to closed stream.")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTraceWriter.java 48 /** The real writer to immediately write to.
94 * @param out the Writer to write to (possibly null)
163 * Write a single character. The character to be written is contained in
173 public void write(final int c) throws IOException method in class:SerializerTraceWriter
177 m_writer.write(c);
205 * Write a portion of an array of characters.
209 * @param length Number of characters to write
215 public void write(final char chars[], final int start, final int length) method in class:SerializerTraceWriter
220 m_writer.write(chars, start, length);
265 * Write a string
271 public void write(final String s) throws IOException method in class:SerializerTraceWriter
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 33 write((byte)(size | 0x80)); method
37 write((byte)(length >> i)); method
42 write((byte)length); method
46 void write(int b) method in class:ASN1OutputStream
49 os.write(b);
52 void write(byte[] bytes) method in class:ASN1OutputStream
55 os.write(bytes);
58 void write(byte[] bytes, int off, int len) method in class:ASN1OutputStream
61 os.write(bytes, off, len);
69 write(tag)
102 write(stack, pos, stack.length - pos); method
181 public void write(int b) method in class:ASN1OutputStream.ImplicitOutputStream
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherOutputStream.java 55 bo.write(out_buffer, 0, BUFF_SIZE);
66 bo.write(out_buffer, 0, BUFF_SIZE);
80 bo.write(out_buffer, 0, out_buffer_pos);
110 public void write(byte[] src, int off, int len) throws IOException method in class:CipherOutputStream
129 public void write(int b) throws IOException method in class:CipherOutputStream
142 throw new IOException("Cannot write plain since crypto buffer is not aligned.");
151 throw new IOException("Cannot write plain since crypto buffer is not aligned.");
  /external/guava/guava-tests/test/com/google/common/io/
FileBackedOutputStreamTest.java 49 write(out, data, 0, 100, true); method
86 // Write just enough to not trip the threshold
88 write(out, data, 0, chunk1, singleByte); method
95 // Write data to go over the threshold
97 write(out, data, chunk1, chunk2, singleByte); method
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)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ByteStream.java 40 public void write(byte[] data) { method in class:ByteStream
41 write(data, 0, data.length); method
44 public void write(byte[] data, int off, int len) { method in class:ByteStream
50 public void write(int b) { method in class:ByteStream
158 public void write(int pos, int value) { method in class:ByteStream
181 out.write(buf, 0, count);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 108 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]);
MeshCollisionShape.java 105 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/
HingeJoint.java 140 public void write(JmeExporter ex) throws IOException { method in class:HingeJoint
141 super.write(ex);
143 capsule.write(axisA, "axisA", new Vector3f());
144 capsule.write(axisB, "axisB", new Vector3f());
146 capsule.write(angularOnly, "angularOnly", false);
148 capsule.write(getLowerLimit(), "lowerLimit", 1e30f);
149 capsule.write(getUpperLimit(), "upperLimit", -1e30f);
151 capsule.write(biasFactor, "biasFactor", 0.3f);
152 capsule.write(relaxationFactor, "relaxationFactor", 1f);
153 capsule.write(limitSoftness, "limitSoftness", 0.9f)
    [all...]
PhysicsJoint.java 123 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/
PoseTrack.java 84 public void write(JmeExporter e) throws IOException { method in class:PoseTrack.PoseFrame
86 out.write(poses, "poses", null);
87 out.write(weights, "weights", null);
172 public void write(JmeExporter e) throws IOException { method in class:PoseTrack
174 out.write(targetMeshIndex, "meshIndex", 0);
175 out.write(frames, "frames", null);
176 out.write(times, "times", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetKey.java 192 public void write(JmeExporter ex) throws IOException { method in class:AssetKey
194 oc.write(name, "name", null);
TextureKey.java 172 public void write(JmeExporter ex) throws IOException { method in class:TextureKey
173 super.write(ex);
175 oc.write(flipY, "flip_y", false);
176 oc.write(generateMips, "generate_mips", false);
177 oc.write(asCube, "as_cubemap", false);
178 oc.write(anisotropy, "anisotropy", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AnimationTrack.java 161 public void write(JmeExporter ex) throws IOException { method in class:AnimationTrack
162 super.write(ex);
164 oc.write(modelName, "modelName", "");
165 oc.write(animationName, "animationName", "");
RotationTrack.java 112 public void write(JmeExporter ex) throws IOException { method in class:RotationTrack
113 super.write(ex);
115 oc.write(spatialName, "spatialName", "");
116 oc.write(endRotation, "endRotation", null);
ScaleTrack.java 107 public void write(JmeExporter ex) throws IOException { method in class:ScaleTrack
108 super.write(ex);
110 oc.write(spatialName, "spatialName", "");
111 oc.write(endScale, "endScale", null);
SoundTrack.java 168 public void write(JmeExporter ex) throws IOException { method in class:SoundTrack
169 super.write(ex);
171 oc.write(path, "path", "");
172 oc.write(stream, "stream", false);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
DefaultParticleInfluencer.java 49 public void write(JmeExporter ex) throws IOException { method in class:DefaultParticleInfluencer
51 oc.write(startVelocity, "startVelocity", Vector3f.ZERO);
52 oc.write(velocityVariation, "variation", 0.2f);
NewtonianParticleInfluencer.java 126 public void write(JmeExporter ex) throws IOException { method in class:NewtonianParticleInfluencer
127 super.write(ex);
129 oc.write(normalVelocity, "normalVelocity", 0.0f);
130 oc.write(surfaceTangentFactor, "surfaceTangentFactor", 0.0f);
131 oc.write(surfaceTangentRotation, "surfaceTangentRotation", 0.0f);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
Light.java 182 public void write(JmeExporter ex) throws IOException { method in class:Light
184 oc.write(color, "color", null);
185 oc.write(enabled, "enabled", true);
186 oc.write(name, "name", null);
SpotLight.java 193 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/jmonkeyengine/engine/src/core/com/jme3/math/
Ring.java 204 public void write(JmeExporter e) throws IOException { method in class:Ring
206 capsule.write(center, "center", Vector3f.ZERO);
207 capsule.write(up, "up", Vector3f.UNIT_Z);
208 capsule.write(innerRadius, "innerRadius", 0f);
209 capsule.write(outerRadius, "outerRadius", 1f);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
LodControl.java 185 public void write(JmeExporter ex) throws IOException{ method in class:LodControl
186 super.write(ex);
188 oc.write(trisPerPixel, "trisPerPixel", 1f);
189 oc.write(distTolerance, "distTolerance", 1f);
190 oc.write(numLevels, "numLevels", 0);
191 oc.write(numTris, "numTris", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
AbstractBox.java 202 public void write(JmeExporter e) throws IOException { method in class:AbstractBox
203 super.write(e);
205 capsule.write(xExtent, "xExtent", 0);
206 capsule.write(yExtent, "yExtent", 0);
207 capsule.write(zExtent, "zExtent", 0);
208 capsule.write(center, "center", Vector3f.ZERO);

Completed in 205 milliseconds

<<11121314151617181920>>