Searched refs:write (Results 226 - 250 of 1953) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java93 public void write(JmeExporter ex) throws IOException { method in class:CapsuleCollisionShape
94 super.write(ex);
96 capsule.write(radius, "radius", 0.5f);
97 capsule.write(height, "height", 1);
98 capsule.write(axis, "axis", 1);
H A DConeCollisionShape.java49 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);
H A DGImpactCollisionShape.java89 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]);
H A DSimplexCollisionShape.java53 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/jbullet/com/jme3/bullet/joints/
H A DPhysicsJoint.java120 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);
H A DPoint2PointJoint.java90 public void write(JmeExporter ex) throws IOException { method in class:Point2PointJoint
91 super.write(ex);
93 cap.write(getDamping(), "damping", 1.0f);
94 cap.write(getTau(), "tau", 0.3f);
95 cap.write(getImpulseClamp(), "impulseClamp", 0f);
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java112 m_out.write ("<?xml version=\"1.0\" encoding=\"" + m_settings.getOutEncoding () + "\"?>");
126 m_out.write (label.toString ());
263 super.write (IConstants.EOL, 0, IConstants.EOL.length ());
266 public void write (final char [] cbuf, final int off, final int len) throws IOException method in class:ReportGenerator.IndentingWriter
269 super.write (cbuf, off, len);
272 public void write (int c) throws IOException method in class:ReportGenerator.IndentingWriter
275 super.write (c);
278 public void write (final String s, final int off, final int len) throws IOException method in class:ReportGenerator.IndentingWriter
281 super.write (s, off, len);
346 super.write (inden
[all...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DZipOutputStreamTest.java70 zos.write("Hello World".getBytes("UTF-8"));
83 zos.write("Hello World".getBytes());
106 zos.write("Hello World".getBytes());
112 assertEquals("Failed to write correct entry", ze.getName(), ze2.getName());
113 assertEquals("Failed to write correct entry", ze.getCrc(), ze2.getCrc());
144 zos.write(data.getBytes());
149 zos.write(data.getBytes());
165 zos.write(data.getBytes());
170 zos.write(data.getBytes());
176 * @tests java.util.zip.ZipOutputStream#write(byt
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dmock_drt.py216 self._stdout.write('Content-Type: audio/wav\n')
217 self._stdout.write('Content-Transfer-Encoding: base64\n')
219 self._stdout.write('Content-Length: %s\n' % len(output))
220 self._stdout.write(output)
222 self._stdout.write('Content-Type: text/plain\n')
225 self._stdout.write(actual_text)
227 self._stdout.write('#EOF\n')
230 self._stdout.write('\n')
231 self._stdout.write('ActualHash: %s\n' % actual_checksum)
232 self._stdout.write('ExpectedHas
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DRandomAccessFileTest.java55 raf.write(20);
61 raf.write(20);
67 raf.write(20);
93 raf.write("Test".getBytes(), 0, 4);
97 raf.write("Test".getBytes(), 0, 4);
101 raf.write("Test".getBytes(), 0, 4);
156 raf.write("Test".getBytes(), 0, 4);
181 raf.write(fileString.getBytes(), 0, 1000);
193 raf.write(fileString.getBytes());
205 fos.write(fileStrin
[all...]
H A DPipedOutputStreamTest.java92 out.write('b');
142 out.write("HelloWorld".getBytes("UTF-8"), 0, 10);
149 * @tests java.io.PipedOutputStream#write(byte[], int, int)
155 out.write("HelloWorld".getBytes("UTF-8"), 0, 10);
161 * @tests java.io.PipedOutputStream#write(byte[], int, int) Regression for
169 pos.write(new byte[0], -1, -1);
178 out.write(null, -10, 10);
187 pos.write(new byte[0], 0, 0);
192 pos.write(new byte[0], -1, 0);
201 pos.write(nul
[all...]
H A DFilterOutputStreamTest.java46 os.write('t');
55 os.write(fileString.getBytes(), 0, 500);
67 os.write(fileString.getBytes(), 0, 500);
74 * @tests java.io.FilterOutputStream#write(byte[])
79 os.write(fileString.getBytes());
91 * @tests java.io.FilterOutputStream#write(byte[], int, int)
96 os.write(fileString.getBytes(), 0, fileString.length());
108 * @tests java.io.FilterOutputStream#write(int)
113 os.write('t');
H A DFileWriterTest.java50 fos.write("Test String".getBytes());
53 bw.write(" After test string", 0, 18);
59 assertEquals("Failed to write correct chars", " After test string",
70 fileWriter.write(first);
75 fileWriter.write(second);
86 fileWriter.write(first);
91 fileWriter.write(second);
106 fos.write("Test String".getBytes());
114 assertTrue("Failed to write correct chars: " + new String(buf, 0, r),
123 fos.write("Tes
[all...]
/external/qemu/android/tools/
H A Dgen-hw-config.py122 out.write(targetHeader)
124 # write guards to prevent bad compiles
126 out.write("""\
131 out.write("\n")
135 sys.stderr.write("ignoring config item with no type '%s'\n" % item.name)
139 sys.stderr.write("ignoring config item with unknown type '%s': '%s'\n" % \
144 sys.stderr.write("ignoring config item with no default '%s' */" % item.name)
159 out.write("%s(\n %s,\n %s,\n %s,\n %s,\n %s)\n\n" % \
164 out.write("#undef %s\n" % m)
166 out.write("/* en
[all...]
/external/libpng/contrib/gregbook/
H A Dmakevms.com21 $ write sys$output "zlib include not found. Exiting..."
27 $ write sys$output "libpng include not found. Exiting..."
56 $ open/write lopt lib.opt
57 $ write lopt "''pngpath'libpng.olb/lib"
58 $ write lopt "''zpath'libz.olb/lib"
60 $ open/write xopt x11.opt
61 $ write xopt "sys$library:decw$xlibshr.exe/share"
66 $ write sys$output "Compiling PNG book programs ..."
73 $ write sys$output "Building rpng-x..."
79 $ write sy
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DPreInstructionRegisterInfoMethodItem.java199 writer.write('\n');
202 writer.write('#');
204 writer.write('=');
206 writer.write(":merge{");
214 writer.write(',');
219 writer.write("Start:");
221 writer.write("0x");
223 writer.write(':');
229 writer.write('}');
246 writer.write('\
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioNode.java731 public void write(JmeExporter ex) throws IOException { method in class:AudioNode
732 super.write(ex);
734 oc.write(audioKey, "audio_key", null);
735 oc.write(loop, "looping", false);
736 oc.write(volume, "volume", 1);
737 oc.write(pitch, "pitch", 1);
738 oc.write(timeOffset, "time_offset", 0);
739 oc.write(dryFilter, "dry_filter", null);
741 oc.write(velocity, "velocity", null);
742 oc.write(reverbEnable
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemWriter.java86 this.write(hdr.getName());
87 this.write(": ");
88 this.write(hdr.getValue());
117 this.write(buf, 0, index);
126 this.write("-----BEGIN " + type + "-----");
134 this.write("-----END " + type + "-----");
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DSimplexCollisionShape.java53 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/core/com/jme3/asset/
H A DTextureKey.java172 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/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DZipExecTest.java53 zout.write(getResource(resources, "hyts_" + zipClass + ".ser"));
57 man.write(zout);
92 man.write(zoutFoo);
94 zoutFoo.write(getResource(resources, "hyts_Foo.ser"));
99 zoutBar.write(getResource(resources, "hyts_Bar.ser"));
114 man.write(zoutFoo);
116 zoutFoo.write(getResource(resources, "hyts_Foo.ser"));
128 man.write(zoutFoo);
130 zoutFoo.write(getResource(resources, "hyts_Foo.ser"));
156 joutFoo.write(getResourc
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestfile.c92 rwops = SDL_RWFromFile(FBASENAME1,"wb"); /* write only */
94 if (1 != rwops->write(rwops,"1234567890",10,1) ) RWOP_ERR_QUIT(rwops);
95 if (10 != rwops->write(rwops,"1234567890",1,10) ) RWOP_ERR_QUIT(rwops);
96 if (7 != rwops->write(rwops,"1234567",1,7) ) RWOP_ERR_QUIT(rwops);
98 if (0!=rwops->read(rwops,test_buf,1,1)) RWOP_ERR_QUIT(rwops); /* we are in write only mode */
112 if (0!=rwops->write(rwops,test_buf,1,1)) RWOP_ERR_QUIT(rwops); /* readonly mode */
116 rwops = SDL_RWFromFile(FBASENAME1,"wb+"); /* write + read + truncation */
118 if (1 != rwops->write(rwops,"1234567890",10,1) ) RWOP_ERR_QUIT(rwops);
119 if (10 != rwops->write(rwops,"1234567890",1,10) ) RWOP_ERR_QUIT(rwops);
120 if (7 != rwops->write(rwop
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DClassFileWriter.java145 fields.write(output);
148 methods.write(output);
190 fields.write(out);
193 methods.write(out);
198 aw.write(out);
214 * public void write(DataOutputStream out) throws java.io.IOException {
224 * write.
232 public void write(DataOutputStream out) throws IOException; method in interface:ClassFileWriter.AttributeWriter
244 aw.write(dos);
303 void write(OutputStrea method in class:ClassFileWriter.FieldWriter
512 void write(OutputStream out) throws IOException { method in class:ClassFileWriter.MethodWriter
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dprinting.py274 self._buildbot_stream.write("%s\n" % msg)
277 self.write(msg, 'config')
280 self.write(msg, 'expected')
283 self.write(msg, 'timing')
377 self.write(" %s -> unexpected %s" %
420 self._meter.write("%s\n" % (self._current_progress_str))
428 self._meter.write("%s\n" % self._current_progress_str)
480 self._buildbot_stream.write("\n")
484 self._buildbot_stream.write("%s: (%d)\n" % (key, len(tests)))
487 self._buildbot_stream.write("
531 def write(self, msg, option="misc"): member in class:Printer
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DSerializedScriptValue.cpp277 write(CurrentVersion);
297 write(ObjectReferenceTag);
311 write(ObjectTag);
321 write(ArrayTag);
322 write(length);
328 write(TerminatorTag);
358 write(NullTag);
360 write(UndefinedTag);
364 write(ZeroTag);
366 write(OneTa
486 void write(SerializationTag tag) function in class:WebCore::CloneSerializer
491 void write(uint8_t c) function in class:WebCore::CloneSerializer
496 void write(uint32_t i) function in class:WebCore::CloneSerializer
501 void write(double d) function in class:WebCore::CloneSerializer
511 void write(int32_t i) function in class:WebCore::CloneSerializer
516 void write(unsigned long long i) function in class:WebCore::CloneSerializer
521 void write(uint16_t ch) function in class:WebCore::CloneSerializer
547 void write(const Identifier& ident) function in class:WebCore::CloneSerializer
575 void write(const UString& str) function in class:WebCore::CloneSerializer
583 void write(const String& str) function in class:WebCore::CloneSerializer
591 void write(const File* file) function in class:WebCore::CloneSerializer
598 void write(const uint8_t* data, unsigned length) function in class:WebCore::CloneSerializer
[all...]

Completed in 449 milliseconds

1234567891011>>