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

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
DefineList.java 46 public void write(JmeExporter ex) throws IOException{ method in class:DefineList
59 oc.write(keys, "keys", null);
60 oc.write(vals, "vals", null);
63 oc.write(compiled, "compiled", null);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 89 public void write(JmeExporter ex) throws IOException { method in class:GImpactCollisionShape
90 super.write(ex);
92 capsule.write(worldScale, "worldScale", new Vector3f(1, 1, 1));
93 capsule.write(numVertices, "numVertices", 0);
94 capsule.write(numTriangles, "numTriangles", 0);
95 capsule.write(vertexStride, "vertexStride", 0);
96 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
98 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
99 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
HeightfieldCollisionShape.java 106 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(flipQuadEdges, "flipQuadEdges", false)
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
HingeJoint.java 108 public void write(JmeExporter ex) throws IOException { method in class:HingeJoint
109 super.write(ex);
111 capsule.write(axisA, "axisA", new Vector3f());
112 capsule.write(axisB, "axisB", new Vector3f());
114 capsule.write(angularOnly, "angularOnly", false);
116 capsule.write(((HingeConstraint) constraint).getLowerLimit(), "lowerLimit", 1e30f);
117 capsule.write(((HingeConstraint) constraint).getUpperLimit(), "upperLimit", -1e30f);
119 capsule.write(biasFactor, "biasFactor", 0.3f);
120 capsule.write(relaxationFactor, "relaxationFactor", 1f);
121 capsule.write(limitSoftness, "limitSoftness", 0.9f)
    [all...]
PhysicsJoint.java 120 public void write(JmeExporter ex) throws IOException { method in class:PhysicsJoint
122 capsule.write(nodeA, "nodeA", null);
123 capsule.write(nodeB, "nodeB", null);
124 capsule.write(pivotA, "pivotA", null);
125 capsule.write(pivotB, "pivotB", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
DistanceLodCalculator.java 116 public void write(JmeExporter ex) throws IOException { method in class:DistanceLodCalculator
118 oc.write(size, "patchSize", 32);
119 oc.write(lodMultiplier, "lodMultiplier", 32);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
ChainedData.java 203 public void write(Appendable out, int indent) throws IOException { method in class:ChainedData
205 d.write(out, indent);
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 46 * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException { method in class:XMLWriter
92 m_out.write(s);
96 * Write <em>unescaped</em> text into the XML file, followed by
97 * a newline. To write escaped text, use the {@link #content(String)
    [all...]
  /libcore/luni/src/main/java/java/io/
BufferedWriter.java 139 out.write(buf, 0, pos);
158 * if an error occurs attempting to write to this writer.
161 write(System.lineSeparator());
171 * the array containing characters to write.
175 * the maximum number of characters to write.
184 public void write(char[] buffer, int offset, int count) throws IOException { method in class:BufferedWriter
192 out.write(buffer, offset, count);
204 out.write(this.buf, 0, this.buf.length);
210 out.write(buffer, offset, available);
227 * the character to write
232 public void write(int oneChar) throws IOException { method in class:BufferedWriter
264 public void write(String str, int offset, int count) throws IOException { method in class:BufferedWriter
    [all...]
DataOutputStream.java 83 * the buffer to write to the target stream.
85 * the index of the first byte in {@code buffer} to write.
87 * the number of bytes from the {@code buffer} to write.
94 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:DataOutputStream
98 out.write(buffer, offset, count);
107 * the byte to write to the target stream.
113 public void write(int oneByte) throws IOException { method in class:DataOutputStream
114 out.write(oneByte);
122 * the boolean value to write to the target stream.
128 out.write(val ? 1 : 0)
    [all...]
PrintStream.java 420 * {@code write(int)}.
426 * @see #write(int)
440 write(str.getBytes());
442 write(str.getBytes(encoding));
516 * then written to the target stream with {@code write(int)}.
522 * @see #write(int)
554 * the index of the first byte in {@code buffer} to write.
556 * the number of bytes in {@code buffer} to write.
563 public void write(byte[] buffer, int offset, int length) { method in class:PrintStream
571 out.write(buffer, offset, length)
594 public synchronized void write(int oneByte) { method in class:PrintStream
    [all...]
PrintWriter.java 444 * The bytes are then written to the target with {@code write(int)}.
450 * @see #write(int)
453 write(str != null ? str : String.valueOf((Object) null));
542 * then written to the target with {@code write(int)}. Finally, this writer
575 * the non-null array containing characters to write.
578 public void write(char[] buf) { method in class:PrintWriter
579 write(buf, 0, buf.length); method
590 * the buffer to write to the target.
592 * the index of the first character in {@code buffer} to write.
594 * the number of characters in {@code buffer} to write
600 public void write(char[] buf, int offset, int count) { method in class:PrintWriter
615 public void write(int oneChar) { method in class:PrintWriter
640 public void write(String str) { method in class:PrintWriter
659 public void write(String str, int offset, int count) { method in class:PrintWriter
722 write(output, 0, output.length()); method
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 109 * Compress the data in the input buffer and write it to the underlying
118 out.write(buf, 0, byteCount);
155 out.write(buf, 0, byteCount);
160 @Override public void write(int i) throws IOException { method in class:DeflaterOutputStream
170 @Override public void write(byte[] buffer, int offset, int byteCount) throws IOException { method in class:DeflaterOutputStream
172 throw new IOException("attempt to write after finish");
194 out.write(buf, 0, byteCount);
InflaterOutputStream.java 26 * An {@code OutputStream} filter to decompress data. Callers write
113 write(); method
126 public void write(int b) throws IOException, ZipException { method in class:InflaterOutputStream
127 write(new byte[] { (byte) b }, 0, 1); method
141 public void write(byte[] bytes, int offset, int byteCount) throws IOException, ZipException { method in class:InflaterOutputStream
145 write(); method
148 private void write() throws IOException, ZipException { method in class:InflaterOutputStream
152 out.write(buf, 0, inflated);
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterWriterTest.java 48 public void write(char[] buffer, int offset, int count) throws IOException { method in class:OldFilterWriterTest.MockWriter
52 public void write(int oneChar) throws IOException { method in class:OldFilterWriterTest.MockWriter
56 public void write(String str, int offset, int count) throws IOException { method in class:OldFilterWriterTest.MockWriter
91 fw.write(0);
92 assertTrue("write(int) has not been called.", called);
97 fw.write(buffer, 0, 5);
98 assertTrue("write(char[], int, int) has not been called.", called);
108 fw.write(buffer, 0, -1);
115 fw.write(buffer, -1, 1);
122 fw.write(buffer, 10, 1)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 40 outFile.write(zipData, 0, zipData.length);
102 out.write(input, 0, input.length);
128 out.write(input, 0, input.length);
150 contents.write(buf, 0, len);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ByteArrayOutputStream.java 134 * Write the bytes to byte array.
135 * @param b the bytes to write
137 * @param len The number of bytes to write
140 public void write(byte[] b, int off, int len) { method in class:ByteArrayOutputStream
168 * Write a byte to byte array.
169 * @param b the byte to write
172 public synchronized void write(int b) { method in class:ByteArrayOutputStream
193 public synchronized int write(InputStream in) throws IOException { method in class:ByteArrayOutputStream
245 * @param out the output stream to write to
254 out.write(buf, 0, c);
    [all...]
LockableFileWriter.java 66 * @param fileName the file to write to, not null
77 * @param fileName file to write to, not null
89 * @param fileName the file to write to, not null
103 * @param file the file to write to, not null
114 * @param file the file to write to, not null
126 * @param file the file to write to, not null
139 * @param file the file to write to, not null
151 * @param file the file to write to, not null
188 * Tests that we can write to the lock directory.
191 * @throws IOException if we cannot write to the lock directory
281 public void write(int idx) throws IOException { method in class:LockableFileWriter
290 public void write(char[] chr) throws IOException { method in class:LockableFileWriter
301 public void write(char[] chr, int st, int end) throws IOException { method in class:LockableFileWriter
310 public void write(String str) throws IOException { method in class:LockableFileWriter
321 public void write(String str, int st, int end) throws IOException { method in class:LockableFileWriter
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
64 * read-write mode.
68 * @throws IOException on write error
84 protected void write(ByteBuffer data) throws IOException { method in class:Fat16RootDirectory
85 this.device.write(deviceOffset, data);
Sector.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
80 public final void write() throws IOException { method in class:Sector
85 device.write(offset, buffer);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
65 bos.write(buffer, 0, read);
134 public void write(long devOffset, ByteBuffer src) throws IOException { method in class:RamDisk
154 * {@link #write(long, java.nio.ByteBuffer) method}, but read-only.
  /bionic/libc/tools/
bionic_utils.py 175 def write(self,msg): member in class:StringOutput
177 D2("write '%s'" % msg)
  /cts/libs/deviceutil/src/android/provider/cts/
FileCopyHelper.java 80 target.write(buffer, 0, len);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10t.java 90 write(out, opcodeUnit(insn, (offset & 0xff))); method
Form11n.java 101 write(out, method

Completed in 1103 milliseconds

<<11121314151617181920>>