Searched defs:write (Results 126 - 150 of 673) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRectangle.java171 public void write(JmeExporter e) throws IOException { method in class:Rectangle
173 capsule.write(a, "a", Vector3f.ZERO);
174 capsule.write(b, "b", Vector3f.ZERO);
175 capsule.write(c, "c", Vector3f.ZERO);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DDome.java331 public void write(JmeExporter e) throws IOException { method in class:Dome
332 super.write(e);
334 capsule.write(planes, "planes", 0);
335 capsule.write(radialSamples, "radialSamples", 0);
336 capsule.write(radius, "radius", 0);
337 capsule.write(center, "center", Vector3f.ZERO);
H A DTorus.java246 public void write(JmeExporter e) throws IOException { method in class:Torus
247 super.write(e);
249 capsule.write(circleSamples, "circleSamples", 0);
250 capsule.write(radialSamples, "radialSamples", 0);
251 capsule.write(innerRadius, "innerRadius", 0);
252 capsule.write(outerRadius, "outerRadius", 0);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DColorOverlayFilter.java99 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/
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 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/networking/com/jme3/network/base/
H A DConnectorAdapter.java136 public void write( ByteBuffer data ) method in class:ConnectorAdapter
195 private void write( ByteBuffer data ) method in class:ConnectorAdapter.WriterThread
198 connector.write(data);
209 write(data);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DSocketConnector.java139 public void write( ByteBuffer data ) method in class:SocketConnector
144 out.write(data.array(), data.position(), data.remaining());
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpConnector.java133 public void write( ByteBuffer data ) method in class:UdpConnector
/external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
H A DGuiTrack.java107 public void write(JmeExporter ex) throws IOException { method in class:GuiTrack
108 super.write(ex);
110 oc.write(screen, "screen", "");
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DNormalRecalcControl.java93 public void write(JmeExporter ex) throws IOException { method in class:NormalRecalcControl
94 super.write(ex);
96 oc.write(terrain, "terrain", null);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java56 write(nodeName(node) + " {");
63 write("}");
68 write(nodeName(node));
117 private void write(String text) { method in class:SyntaxTreeDumper
/external/mesa3d/src/gallium/winsys/i915/sw/
H A Di915_sw_buffer.c61 boolean write)
59 i915_sw_buffer_map(struct i915_winsys *iws, struct i915_winsys_buffer *buffer, boolean write) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
H A DBitstreamWriter.java21 package com.googlecode.mp4parser.h264.write;
60 os.write(toWrite);
105 os.write(b);
H A DCAVLCWriter.java21 package com.googlecode.mp4parser.h264.write;
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DFaultRecoveringOutputStream.java54 @Override public final void write(byte[] buffer, int offset, int count) throws IOException { method in class:FaultRecoveringOutputStream
60 out.write(buffer, offset, count);
68 replayBuffer.write(buffer, offset, count);
/external/smack/src/org/jivesoftware/smack/util/
H A DObservableWriter.java41 public void write(char cbuf[], int off, int len) throws IOException { method in class:ObservableWriter
42 wrappedWriter.write(cbuf, off, len);
55 public void write(int c) throws IOException { method in class:ObservableWriter
56 wrappedWriter.write(c);
59 public void write(char cbuf[]) throws IOException { method in class:ObservableWriter
60 wrappedWriter.write(cbuf);
65 public void write(String str) throws IOException { method in class:ObservableWriter
66 wrappedWriter.write(str);
70 public void write(String str, int off, int len) throws IOException { method in class:ObservableWriter
71 wrappedWriter.write(st
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstruction.java53 public int write(AnnotatedOutput out, int currentCodeAddress) { method in class:Instruction
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DIndentingWriter.java99 public void write(int c) throws IOException { method in class:IndentingWriter
114 out.write('\n');
124 out.write(prefix);
129 out.write(' ');
135 out.write(c);
147 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
150 write(cbuf[off]);
159 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
162 write(str.charAt(off));
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java87 this.outstream.write(this.buffer.buffer(), 0, len);
98 public void write(final byte[] b, int off, int len) throws IOException { method in class:AbstractSessionOutputBuffer
104 // write it directly to the output stream
108 // write directly to the out stream
109 this.outstream.write(b, off, len);
123 public void write(final byte[] b) throws IOException { method in class:AbstractSessionOutputBuffer
127 write(b, 0, b.length);
130 public void write(int b) throws IOException { method in class:AbstractSessionOutputBuffer
142 write(s.getBytes(this.charset));
144 write(CRL
[all...]
H A DChunkedOutputStream.java98 this.out.write(this.cache, 0, this.cachePosition);
114 this.out.write(this.cache, 0, this.cachePosition);
115 this.out.write(bufferToAppend, off, len);
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);
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.");
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTraceWriter.java48 /** The real writer to immediately write to.
94 * @param out the Writer to write to (possibly null)
173 public void write(final int c) throws IOException method in class:SerializerTraceWriter
177 m_writer.write(c);
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);
271 public void write(final String s) throws IOException method in class:SerializerTraceWriter
275 m_writer.write(s);
H A DWriterToUTF8Buffered.java54 /** The byte stream to write to. (sc & sb remove final to compile in JDK 1.1.8) */
98 * Create an buffered UTF-8 writer to write data to the
132 public void write(final int c) throws IOException method in class:WriterToUTF8Buffered
172 * @param length Number of characters to write
178 public void write(final char chars[], final int start, final int length) method in class:WriterToUTF8Buffered
244 this.write(chars,start_chunk, len_chunk);
316 public void write(final String s) throws IOException method in class:WriterToUTF8Buffered
371 this.write(m_inputChars,0, len_chunk);
447 m_os.write(m_outputBytes, 0, count);
455 * various write() method
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A DPrint.cpp16 License along with this library; if not, write to the Free Software
33 void Print::write(const char *str) function in class:Print
36 write(*str++);
40 void Print::write(const uint8_t *buffer, size_t size) function in class:Print
43 write(*buffer++);
49 write(s[i]);
55 write(str);
81 write(n);
95 if (base == 0) write(n);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaContentSignerBuilder.java115 public void write(byte[] bytes, int off, int len) method in class:JcaContentSignerBuilder.SignatureOutputStream
128 public void write(byte[] bytes) method in class:JcaContentSignerBuilder.SignatureOutputStream
141 public void write(int b) method in class:JcaContentSignerBuilder.SignatureOutputStream

Completed in 597 milliseconds

1234567891011>>