Searched refs:out (Results 276 - 300 of 722) sorted by relevance

<<11121314151617181920>>

/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdsSection.java82 * @param out {@code non-null;} where to write
84 public void writeHeaderPart(AnnotatedOutput out) { argument
90 if (out.annotates()) {
91 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
92 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
95 out.writeInt(sz);
96 out.writeInt(offset);
H A DTypeIdsSection.java76 * @param out {@code non-null;} where to write
78 public void writeHeaderPart(AnnotatedOutput out) { argument
88 if (out.annotates()) {
89 out.annotate(4, "type_ids_size: " + Hex.u4(sz));
90 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
93 out.writeInt(sz);
94 out.writeInt(offset);
H A DUniformListItem.java189 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
192 if (out.annotates()) {
193 out.annotate(0, offsetString() + " " + typeName());
194 out.annotate(4, " size: " + Hex.u4(size));
197 out.writeInt(size);
200 i.writeTo(file, out);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
H A DFileURLConnection.java154 PrintStream out = new PrintStream(bytes);
155 out.print("<title>Directory Listing</title>\n"); //$NON-NLS-1$
156 out.print("<base href=\"file:"); //$NON-NLS-1$
157 out.print(f.getPath().replace('\\', '/') + "/\"><h1>" + f.getPath() //$NON-NLS-1$
161 out.print(fileList[i] + "<br>\n"); //$NON-NLS-1$
163 out.close();
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DUTF16CharsetEncoderTest.java184 void assertByteArray(ByteBuffer out, byte[] expected) { argument
185 out = out.duplicate();
186 if (out.position() > 0) {
187 out.flip();
190 assertEquals(decoder.decode(out), decoder.decode(ByteBuffer
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Choice.java338 public void encodeASN(BerOutputStream out) { argument
339 encodeContent(out);
342 public final void encodeContent(BerOutputStream out) { argument
343 out.encodeChoice(this);
356 public final void setEncodingContent(BerOutputStream out) { argument
357 out.getChoiceLength(this);
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
H A DPKCS5S2ParametersGenerator.java36 byte[] out,
53 System.arraycopy(state, 0, out, outOff, state.length);
68 out[outOff + j] ^= state[j];
89 byte[] out = new byte[l * hLen];
95 F(password, salt, iterationCount, iBuf, out, (i - 1) * hLen);
98 return out;
31 F( byte[] P, byte[] S, int c, byte[] iBuf, byte[] out, int outOff) argument
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DNumberFormatFieldTest.java70 ObjectOutputStream out = null;
74 out = new ObjectOutputStream(bytes);
83 out.writeObject(nfield);
84 out.writeObject(field);
107 if (out != null)
108 out.close();
/dalvik/tests/045-reflect-array/src/
H A DMain.java17 System.out.println("ReflectArrayTest passed");
56 System.out.println("ReflectArrayTest.testSingleInt passed");
68 //System.out.println("array: " + array);
80 System.out.println("ReflectArrayTest.testSingle passed");
99 System.out.println("ReflectArrayTest.testMultiInt passed");
129 System.out.println(array3[0][1][2]);
130 //System.out.println("array3: " + array3);
145 System.out.println("ReflectArrayTest.testMulti passed");
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DSerializationStressTest4.java84 System.out.println("Obj = " + objToSave);
100 System.out.println("Error when obj = " + objToSave);
146 System.out.println("Obj = " + objToSave);
158 System.out.println("Error when obj = " + objToSave);
181 System.out.println("Obj = " + objToSave);
197 System.out.println("Error when obj = " + objToSave);
220 System.out.println("Obj = " + objToSave);
236 System.out.println("Error when obj = " + objToSave);
262 System.out.println("Obj = " + objToSave);
289 System.out
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA224Digest.java82 byte[] out,
85 out[outOff] = (byte)(word >>> 24);
86 out[outOff + 1] = (byte)(word >>> 16);
87 out[outOff + 2] = (byte)(word >>> 8);
88 out[outOff + 3] = (byte)word;
104 byte[] out,
109 unpackWord(H1, out, outOff);
110 unpackWord(H2, out, outOff + 4);
111 unpackWord(H3, out, outOff + 8);
112 unpackWord(H4, out, outOf
80 unpackWord( int word, byte[] out, int outOff) argument
103 doFinal( byte[] out, int outOff) argument
[all...]
H A DShortenedDigest.java60 public int doFinal(byte[] out, int outOff) argument
66 System.arraycopy(tmp, 0, out, outOff, length);
/dalvik/dx/src/com/android/dx/dex/code/
H A DFixedSizeInsn.java58 public final void writeTo(AnnotatedOutput out) { argument
59 getOpcode().getFormat().writeTo(out, this);
H A DOddSpacer.java48 public void writeTo(AnnotatedOutput out) { argument
50 out.writeShort(InsnFormat.codeUnit(DalvOps.NOP, 0));
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm10x.java75 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
76 write(out, opcodeUnit(insn, 0));
/dalvik/libcore/luni/src/test/java/java/net/
H A DURLConnectionTest.java111 OutputStream out = conn.getOutputStream();
114 out.write('x');
120 out.write(buf, 0, Math.min(buf.length, n - i));
123 out.close();
168 OutputStream out = s.getOutputStream();
169 out.write("HTTP/1.1 200 OK\r\n\r\n".getBytes());
170 out.flush();
171 out.close();
/dalvik/libcore/security/src/main/java/java/security/
H A DDigestOutputStream.java87 out.write(b);
110 out.write(b, off, len);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERConstructedSet.java59 DEROutputStream out)
77 out.writeEncoded(SET | CONSTRUCTED, bytes);
58 encode( DEROutputStream out) argument
H A DDERSequence.java59 DEROutputStream out)
77 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
58 encode( DEROutputStream out) argument
H A DDERUnknownTag.java37 DEROutputStream out)
40 out.writeEncoded(tag, data);
36 encode( DEROutputStream out) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DGOFBBlockCipher.java135 * the out array.
139 * @param out the array the output data will be copied into.
140 * @param outOff the offset into the out array the output will start at.
142 * space in out.
149 byte[] out,
158 if ((outOff + blockSize) > out.length)
183 out[outOff + i] = (byte)(ofbOutV[i] ^ in[inOff + i]);
218 byte[] out,
221 out[outOff + 3] = (byte)(num >>> 24);
222 out[outOf
146 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
216 intTobytes( int num, byte[] out, int outOff) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/
H A DVersion.src61 System.out.println(getVersion());
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DXSLProcessorVersion.src40 System.out.println(S_VERSION);
/dalvik/tests/003-omnibus-opcodes/src/
H A DStaticField.java24 System.out.println("StaticField assign...");
44 System.out.println("StaticField check...");
/dalvik/tests/044-proxy/src/
H A DClash.java37 System.out.println("Dupe threw expected exception");
46 System.out.println("Clash threw expected exception");

Completed in 713 milliseconds

<<11121314151617181920>>