Searched refs:write (Results 351 - 375 of 1953) sorted by relevance

<<11121314151617181920>>

/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java112 * the buffer to write to
115 buffer.write(ESCAPE_CHAR);
118 buffer.write(hex1);
119 buffer.write(hex2);
150 buffer.write(b);
187 buffer.write((char) ((u << 4) + l));
192 buffer.write(b);
/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);
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dgmock_class.py147 sys.stderr.write('Class(es) not found in %s: %s\n' %
150 sys.stderr.write('No class found in %s\n' % filename)
157 sys.stderr.write('Google Mock Class Generator v%s\n\n' %
159 sys.stderr.write(__doc__)
168 sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT'))
188 sys.stdout.write('\n'.join(lines))
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DLodControl.java185 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/
H A DAbstractBox.java202 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);
/external/valgrind/main/gdbserver_tests/
H A Dmcwatchpoints.stdoutB.exp6 Hardware access (read/write) watchpoint 3: undefined[4]
14 Hardware access (read/write) watchpoint 3: undefined[4]
19 Hardware access (read/write) watchpoint 3: undefined[4]
/external/valgrind/main/helgrind/tests/
H A Dtc01_simple_race.stderr.exp20 This conflicts with a previous write of size 4 by thread #x
31 Possible data race during write of size 4 at 0x........ by thread #x
35 This conflicts with a previous write of size 4 by thread #x
H A Dtc05_simple_race.stderr.exp20 This conflicts with a previous write of size 4 by thread #x
31 Possible data race during write of size 4 at 0x........ by thread #x
35 This conflicts with a previous write of size 4 by thread #x
H A Dtc16_byterace.stderr.exp20 This conflicts with a previous write of size 1 by thread #x
31 Possible data race during write of size 1 at 0x........ by thread #x
35 This conflicts with a previous write of size 1 by thread #x
H A Dtc06_two_races.stderr.exp20 This conflicts with a previous write of size 4 by thread #x
31 Possible data race during write of size 4 at 0x........ by thread #x
35 This conflicts with a previous write of size 4 by thread #x
50 This conflicts with a previous write of size 4 by thread #x
61 Possible data race during write of size 4 at 0x........ by thread #x
65 This conflicts with a previous write of size 4 by thread #x
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileReaderTest.java44 bw.write(" After test string", 0, 18);
59 bw.write(" After test string", 0, 18);
76 bw.write(" After test string", 0, 18);
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixSocketTest.java38 // Simple read/write test over the IO streams
51 clientOut.write(new byte[256]);
56 out.write(new byte[42]);
113 o.write(1);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaDigestCalculatorProviderBuilder.java91 public void write(byte[] bytes, int off, int len) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
97 public void write(byte[] bytes) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
103 public void write(int b) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERTaggedObject.java100 out.write(0x80);
144 out.write(0x00);
145 out.write(0x00);
H A DDERBMPString.java130 out.write(BERTags.BMP_STRING);
137 out.write((byte)(c >> 8));
138 out.write((byte)c);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DDefaultParticleInfluencer.java49 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);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterBoxShape.java106 public void write(JmeExporter ex) throws IOException { method in class:EmitterBoxShape
108 oc.write(min, "min", null);
109 oc.write(len, "length", null);
H A DEmitterSphereShape.java105 public void write(JmeExporter ex) throws IOException { method in class:EmitterSphereShape
107 oc.write(center, "center", null);
108 oc.write(radius, "radius", 0);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DFadeFilter.java144 public void write(JmeExporter ex) throws IOException { method in class:FadeFilter
145 super.write(ex);
147 oc.write(duration, "duration", 1);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DSavableSerializer.java58 public void write(int b) throws IOException { method in class:SavableSerializer.BufferOutputStream
63 public void write(byte[] b){ method in class:SavableSerializer.BufferOutputStream
68 public void write(byte[] b, int off, int len){ method in class:SavableSerializer.BufferOutputStream
/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/webkit/Tools/CodeCoverage/
H A Dregenerate-coverage-display77 index.write("""<HTML>
91 file.write("""<table width="100%%" border=0 cellspacing=0 cellpadding=0>
133 file.write("""
145 file.write("""<center>
190 file.write("""</table>
208 index.write("""</BODY></HTML>""")
225 site.write("""</BODY></HTML>""")
252 site.write("<p>The file was not excercised</p>")
254 site.write("""</br><table cellpadding=0 cellspacing=0 border=0>
280 site.write(st
[all...]
/external/webkit/Tools/RebaselineQueueServer/handlers/
H A Dbuilderqueue.py55 self.response.out.write(
85 self.response.out.write(
95 self.response.out.write(simplejson.dumps(queue_json))
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DProcessTest.java44 os.write("10 5 abcde".getBytes());
84 os.write(str1.getBytes());
90 os.write(str2.getBytes());
91 os.write(str3.getBytes());

Completed in 7472 milliseconds

<<11121314151617181920>>