Searched refs:out (Results 101 - 125 of 722) sorted by relevance

1234567891011>>

/dalvik/tests/066-mismatched-super/src/
H A DMain.java26 System.out.println("Got expected ICCE");
/dalvik/tests/068-classloader/src/
H A DDoubledExtend.java8 //System.out.println("Ctor: doubled extend, type 1");
13 System.out.println("getExtended 1");
/dalvik/tests/078-polymorphic-virtual/src/
H A DMain.java32 System.out.println(e);
36 System.out.println(derived1.getValue());
37 System.out.println(derived2.getValue());
38 System.out.println(derived3.getValue());
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DXMLParser.java177 BufferedWriter out = new BufferedWriter(new OutputStreamWriter(stream, "UTF-8"), 8192); //$NON-NLS-1$
179 out.write(HEADER);
180 out.newLine();
181 out.newLine();
183 out.write(DOCTYPE);
184 out.write(" '"); //$NON-NLS-1$
185 out.write(PREFS_DTD_NAME);
186 out.write("'>"); //$NON-NLS-1$
187 out.newLine();
188 out
206 exportNode(StringTokenizer ancestors, Preferences prefs, boolean withSubTree, BufferedWriter out) argument
226 exportSubTree(Preferences prefs, BufferedWriter out) argument
241 exportEntries(Preferences prefs, BufferedWriter out) argument
251 exportEntries(String[] keys, String[] values, BufferedWriter out) argument
267 flushEndTag(String tagName, BufferedWriter out) argument
276 flushEmptyElement(String tagName, BufferedWriter out) argument
286 flushEmptyElement(String tagName, String[] attrKeys, String[] attrValues, BufferedWriter out) argument
297 flushPairs(String[] attrKeys, String[] attrValues, BufferedWriter out) argument
308 flushIndent(int ind, BufferedWriter out) argument
315 flushStartTag(String tagName, String[] attrKeys, String[] attrValues, BufferedWriter out) argument
325 flushStartTag(String tagName, BufferedWriter out) argument
609 closeQuietly(Writer out) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DOutputStreamWriter.java44 private OutputStream out; field in class:OutputStreamWriter
51 * Constructs a new OutputStreamWriter using {@code out} as the target
55 * @param out
58 public OutputStreamWriter(OutputStream out) { argument
59 super(out);
60 this.out = out;
70 * Constructs a new OutputStreamWriter using {@code out} as the target
75 * @param out
84 public OutputStreamWriter(OutputStream out, fina argument
110 OutputStreamWriter(OutputStream out, Charset cs) argument
128 OutputStreamWriter(OutputStream out, CharsetEncoder enc) argument
[all...]
H A DBufferedWriter.java48 private Writer out; field in class:BufferedWriter
58 * Constructs a new {@code BufferedWriter} with {@code out} as the writer
62 * @param out
65 public BufferedWriter(Writer out) { argument
66 super(out);
67 this.out = out;
86 * Constructs a new {@code BufferedWriter} with {@code out} as the writer
90 * @param out
97 public BufferedWriter(Writer out, in argument
[all...]
H A DFileDescriptor.java29 * if desired, but it is recommended to go through System.in, System.out, and
46 * FileDescriptor representing standard out.
48 public static final FileDescriptor out = new FileDescriptor(); field in class:FileDescriptor
70 out.descriptor = 1;
86 * is written out to the appropriate device before returning.
/dalvik/dx/src/com/android/dx/dex/file/
H A DCodeItem.java161 * @param out {@code non-null;} where to dump
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
166 out.println(ref.toHuman() + ":");
169 out.println("regs: " + Hex.u2(getRegistersSize()) +
173 insns.debugPrint(out, prefix, verbose);
178 out.print(prefix);
179 out.println("catches");
180 catches.debugPrint(out, prefix2);
184 out.print(prefix);
185 out
233 writeTo0(DexFile file, AnnotatedOutput out) argument
297 writeCodes(DexFile file, AnnotatedOutput out) argument
[all...]
H A DSection.java144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) { argument
148 align(out);
150 int cursor = out.getCursor();
160 if (out.annotates()) {
162 out.annotate(0, "\n" + name + ":");
164 out.annotate(0, "\n");
168 writeTo0(out);
261 * @param out {@code non-null;} the output to align
263 protected final void align(AnnotatedOutput out) { argument
277 writeTo0(AnnotatedOutput out) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DTwoColumnOutput.java32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
128 this(new OutputStreamWriter(out), leftWidt
232 appendNewlineIfNecessary(StringBuffer buf, Writer out) argument
248 writeSpaces(Writer out, int amt) argument
[all...]
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DAbstractCharsetEncoderTestCase.java166 ByteBuffer out = ByteBuffer.allocate(5);
170 encoder.encode(in, out, true);
171 out.rewind();
172 CoderResult result = encoder.flush(out);
176 encoder.flush(out);
183 encoder.encode(in, out, false);
185 encoder.flush(out);
293 ByteBuffer out = ByteBuffer.allocate(5);
295 encoder.encode(in, out, true);
297 out
657 assertByteArray(ByteBuffer out, byte[] expected) argument
879 assertCodingErrorAction(boolean endOfInput, ByteBuffer out, CharBuffer in, byte[] expect) argument
[all...]
H A DCharsetDecoderTest.java125 // Commented out since the comment is wrong since MAX_BYTES > 1
226 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
227 assertCharBufferValue("", out);
231 out = decoder.decode(in);
232 assertEquals(0, out.position());
233 assertEquals(getString().length(), out.limit());
234 assertEquals(getString().length(), out.remaining());
235 assertCharBufferValue(getString(), out);
239 out = decoder.decode(in);
240 assertEquals(out
572 assertCharBufferValue(String expected, CharBuffer out) argument
857 decodeLoop(ByteBuffer in, CharBuffer out) argument
893 implFlush(CharBuffer out) argument
906 pubImplFlush(CharBuffer out) argument
[all...]
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DCipherOutputStream.java33 * CipherOutputStream} tries to encrypt the data writing it out.
81 out.write(result);
118 out.write(result);
130 out.flush();
137 * buffered bytes from the cipher are also written out, and the cipher is
150 out.write(result);
153 if (out != null) {
154 out.flush();
161 if (out != null) {
162 out
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERNull.java25 DEROutputStream out)
28 out.writeEncoded(NULL, zeroBytes);
24 encode( DEROutputStream out) argument
H A DDEROctetString.java24 DEROutputStream out)
27 out.writeEncoded(OCTET_STRING, string);
23 encode( DEROutputStream out) argument
/dalvik/libcore/support/src/test/java/tests/util/
H A DFieldTestFileGenerator.java36 * {@code tests.support.Support_GetPutFieldsDefaulted} must be commented out. See the
55 System.out.println("Trying to write the test file 'testFields.ser'...");
63 System.out.println("Exception occured while writing the file: " + e);
70 System.out.println("Trying to write the test file 'testFieldsDeprecated.ser'...");
78 System.out.println("Exception occured while writing the file: " + e);
85 System.out.println("Trying to write the test file 'testFieldsDefaulted.ser'...");
93 System.out.println("Exception occured while writing the file: " + e);
101 System.out.println("Success!");
103 System.out.println("Failure!");
/dalvik/tests/007-exceptions/src/
H A DMain.java25 System.out.print("Got an NPE: ");
26 System.out.println(npe.getMessage());
/dalvik/tests/016-intern/src/
H A DMain.java29 System.out.println("good! " + a);
31 System.out.println("bad!");
/dalvik/tests/018-stack-overflow/src/
H A DMain.java26 System.out.println("caught SOE");
28 System.out.println("SOE test done");
/dalvik/tests/032-concrete-sub/src/
H A DMain.java31 System.out.println("Got expected failure");
33 System.out.println("Got expected failure");
/dalvik/tests/038-inner-null/src/
H A DMain.java13 System.out.println("new Special()");
23 System.out.println("shouldn't see this");
/dalvik/tests/073-mismatched-field/src/
H A DMain.java25 System.out.println("value=" + this.f);
28 System.out.println("Got expected failure");
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Enumerated.java97 public void encodeContent(BerOutputStream out) { argument
98 out.encodeInteger();
101 public void setEncodingContent(BerOutputStream out) { argument
102 out.length = ((byte[]) out.content).length;
H A DASN1OctetString.java97 public void encodeContent(BerOutputStream out) { argument
98 out.encodeOctetString();
101 public void setEncodingContent(BerOutputStream out) { argument
102 out.length = ((byte[]) out.content).length;
/dalvik/tests/004-annotations/src/android/test/anno/
H A DTestAnnotations.java23 System.out.println(prefix + " " + a);
24 System.out.println(prefix + " " + a.annotationType());
33 System.out.println("annotations on TYPE " + clazz +
36 System.out.println();
40 System.out.println(" annotations on CTOR " + c + ":");
43 System.out.println(" constructor parameter annotations:");
51 System.out.println(" annotations on METH " + m + ":");
54 System.out.println(" method parameter annotations:");
62 System.out.println(" annotations on FIELD " + f + ":");
68 System.out
[all...]

Completed in 2916 milliseconds

1234567891011>>