Searched refs:write (Results 101 - 125 of 2129) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DText.java33 out.write (Strings.HTMLEscapeSP (m_text));
35 out.write (Strings.HTMLEscape (m_text));
H A DIElement.java51 out.write ('<');
52 out.write (tagName);
56 out.write (' ');
60 out.write ('>');
68 out.write ("</");
69 out.write (tagName);
70 out.write ('>');
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java91 public void write(PrintWriter out) {
92 stringExpr.write(out);
121 public void write(PrintWriter out) {
122 expression.write(out);
177 public abstract void write(PrintWriter out); method in class:JavaExpression
182 write(new PrintWriter(out));
199 public void write(PrintWriter out) {
209 param.write(out);
232 public void write(PrintWriter out) {
233 instance.write(ou
261 public void write(PrintWriter out) { method in class:JavaExpression.StringExpression
319 public void write(PrintWriter out) { method in class:JavaExpression.BooleanLiteralExpression
[all...]
/external/libsepol/tests/policies/test-deps/
H A Dmodreq-perm-opt.conf4 class file { read write };
/external/libsepol/tests/policies/test-hooks/
H A Dmodule_add_symbols.conf3 require { class file { read write }; }
/external/proguard/src/proguard/io/
H A DManifestRewriter.java18 * with this program; if not, write to the Free Software Foundation, Inc.,
177 public void write(int c) throws IOException method in class:ManifestRewriter.SplitLineWriter
188 super.write('\n');
189 super.write(' ');
198 super.write(c);
202 public void write(char[] cbuf, int off, int len) throws IOException method in class:ManifestRewriter.SplitLineWriter
206 write(cbuf[off + count]);
211 public void write(String str, int off, int len) throws IOException method in class:ManifestRewriter.SplitLineWriter
213 write(str.toCharArray(), off, len);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCommentMethodItem.java51 writer.write('#');
52 writer.write(comment);
H A DClassDefinition.java121 writer.write(".class ");
123 writer.write(classDefItem.getClassType().getTypeDescriptor());
124 writer.write('\n');
129 writer.write(accessFlag.toString());
130 writer.write(' ');
137 writer.write(".super ");
138 writer.write(superClass.getTypeDescriptor());
139 writer.write('\n');
146 writer.write(".source \"");
148 writer.write("\"\
[all...]
/external/webkit/Tools/RebaselineQueueServer/handlers/
H A Dpages.py38 self.response.out.write(
46 self.response.out.write(
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionOutputBuffer.java65 public void write(byte[] b, int off, int len) throws IOException { method in class:LoggingSessionOutputBuffer
66 this.out.write(b, off, len);
72 public void write(int b) throws IOException { method in class:LoggingSessionOutputBuffer
73 this.out.write(b);
79 public void write(byte[] b) throws IOException { method in class:LoggingSessionOutputBuffer
80 this.out.write(b);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java57 * write operations will be ignored.
72 * the stream. Subsequent write operations will be ignored.
104 public void write(byte[] b, int off, int len) throws IOException { method in class:ContentLengthOutputStream
106 throw new IOException("Attempted write to closed stream.");
113 this.out.write(b, off, len);
118 public void write(byte[] b) throws IOException { method in class:ContentLengthOutputStream
119 write(b, 0, b.length);
122 public void write(int b) throws IOException { method in class:ContentLengthOutputStream
124 throw new IOException("Attempted write to closed stream.");
127 this.out.write(
[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 DWriterToASCI.java42 /** The byte stream to write to. */
49 * @param os The byte stream to write to.
61 * @param length Number of characters to write
67 public void write(char chars[], int start, int length) method in class:WriterToASCI
75 m_os.write(chars[i]);
90 public void write(int c) throws IOException method in class:WriterToASCI
92 m_os.write(c);
102 public void write(String s) throws IOException method in class:WriterToASCI
107 m_os.write(s.charAt(i));
113 * various write() method
[all...]
H A DToXMLStream.java143 writer.write("<?xml version=\"");
144 writer.write(version);
145 writer.write("\" encoding=\"");
146 writer.write(encoding);
147 writer.write('\"');
148 writer.write(standalone);
149 writer.write("?>");
163 writer.write(m_lineSep, 0, m_lineSepLen);
283 writer.write("<?");
284 writer.write(targe
[all...]
H A DToStream.java51 * serializers (xml, html, text ...) that write output to a stream.
130 * The length of the line seperator, since the write is done
196 m_writer.write(CDATA_DELIMITER_CLOSE);
197 // write out a CDATA section closing "]]>"
310 writer.write("<!ELEMENT ");
311 writer.write(name);
312 writer.write(' ');
313 writer.write(model);
314 writer.write('>');
315 writer.write(m_lineSe
3201 public void write(char[] arg0, int arg1, int arg2) throws IOException method in class:ToStream.WritertoStringBuffer
3218 public void write(int i) method in class:ToStream.WritertoStringBuffer
3223 public void write(String s) method in class:ToStream.WritertoStringBuffer
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64Encoder.java72 out.write(encodingTable[(a1 >>> 2) & 0x3f]);
73 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]);
74 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]);
75 out.write(encodingTable[a3 & 0x3f]);
93 out.write(encodingTable[b1]);
94 out.write(encodingTable[b2]);
95 out.write(padding);
96 out.write(padding);
106 out.write(encodingTable[b1]);
107 out.write(encodingTabl
[all...]
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
H A DCharSinkTester.java105 out.write(a, 1000, 0);
106 out.write(a, 0, 0);
107 out.write(new char[] {});
118 out.write(c);
130 out.write("EF".toCharArray());
131 out.write("GCDE".toCharArray());
132 out.write("CBA".toCharArray());
145 out.write(a, 1000, 2);
152 out.write(b, 1020, 4);
158 out.write(
[all...]
H A DSinkTester.java106 out.write(a, 1000, 0);
107 out.write(a, 0, 0);
108 out.write(new byte[] {});
119 out.write(b);
136 out.write(a);
139 out.write(b);
142 out.write(c);
160 out.write(a, 1000, 2);
167 out.write(b, 1020, 4);
173 out.write(
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DStringWriterTest.java53 sw.write('c');
64 sw.write("This is a test string");
75 sw.write("This is a test string");
81 * @tests java.io.StringWriter#write(char[], int, int)
84 // Test for method void java.io.StringWriter.write(char [], int, int)
87 sw.write(c, 0, 21);
93 * @tests java.io.StringWriter#write(char[], int, int)
100 obj.write(new char[0], (int) 0, (int) -1);
107 * @tests java.io.StringWriter#write(char[], int, int)
113 obj.write(ne
[all...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DInflaterOutputStreamTest.java183 ios.write(compressedBytes[i]);
195 ios.write(compressedBytes[i]);
208 * @tests java.util.zip.InflaterOutputStream#write(int)
216 ios.write(compressedBytes[i]);
224 * @tests java.util.zip.InflaterOutputStream#write(int)
228 // write after close
232 ios.write(-1);
240 * @tests java.util.zip.InflaterOutputStream#write(byte[],int,int)
247 ios.write(compressedBytes, 0, length);
254 * @tests java.util.zip.InflaterOutputStream#write(byt
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java102 public void write(JmeExporter ex) throws IOException { method in class:UserData
104 oc.write(type, "type", (byte)0);
109 oc.write(i, "intVal", 0);
113 oc.write(f, "floatVal", 0f);
117 oc.write(b, "boolVal", false);
121 oc.write(s, "strVal", null);
125 oc.write(l, "longVal", 0l);
/external/doclava/src/com/google/doclava/
H A DProofread.java35 out.write("javadoc proofread file: " + filename + "\n");
57 public static void write(String s) { method in class:Proofread
62 out.write(s);
70 write(INDENT);
71 write(s);
72 write("\n");
76 write("\n\n=== ");
77 write(filename);
78 write(" ===\n");
137 write("ENU
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DHingeJoint.java140 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(limitSoftnes
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DHingeJoint.java108 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(limitSoftnes
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DSinkChannelTest.java68 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer)
80 // once to get what sink write.
85 sink.write(buf);
103 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer)
114 sink.write(ByteBuffer.wrap(strbytes));
147 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer)
150 // write null ByteBuffer
153 sink.write(nullBuf);
163 int written = sink.write(buffer);
172 sink.write(buffe
[all...]

Completed in 723 milliseconds

1234567891011>>