HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 551 - 575 of 1601) sorted by null

<<21222324252627282930>>

  /external/conscrypt/src/main/java/org/conscrypt/
FileClientSessionCache.java 202 FileOutputStream out; local
204 out = new FileOutputStream(file);
221 out.write(sessionData);
228 out.close();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 105 * @param out {@code non-null;} where to dump
108 public void debugPrint(PrintWriter out, String prefix) {
109 annotateEntries(prefix, out, null);
138 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
140 // Write out the handlers "header" consisting of its size in entries.
142 out.writeUleb128(handlerOffsets.size());
144 // Now write the lists out in order, noting the offset of each.
152 mapping.setValue(out.getCursor());
156 out.writeSleb128(-(listSize - 1));
159 out.writeSleb128(listSize)
    [all...]
ClassDataItem.java 192 * Prints out the contents of this instance, in a debugging-friendly
195 * @param out {@code non-null;} where to output to
198 public void debugPrint(Writer out, boolean verbose) {
199 PrintWriter pw = Writers.printWriterFor(out);
327 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
329 encodeOutput(addedTo.getFile(), out); local
330 encodedForm = out.toByteArray();
335 * Writes out the encoded form of this instance.
338 * @param out {@code non-null;} where to write to
340 private void encodeOutput(DexFile file, AnnotatedOutput out) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 99 System.out.println((i==0 && missingActions==2 ? Messages.getString("RSSFeedWatcherTask.WarningNoScriptAction") : Messages.getString("RSSFeedWatcherTask.WarningNoCommandlineParams")) + SP + feedWatchActions ); //$NON-NLS-1$ //$NON-NLS-2$
112 System.out.println(Messages.getString("RSSFeedWatcherTask.PleaseRunThisTaskLater") + SP + file); //$NON-NLS-1$
113 System.out.println(Messages.getString("RSSFeedWatcherTask.ToTheLatestVersion") + SP + feedURL); //$NON-NLS-1$
131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
160 System.out.println(Messages.getString("RSSFeedWatcherTask.GotOldNodeContents") + CL + SP + oldContent); //$NON-NLS-1$
161 System.out.println(Messages.getString("RSSFeedWatcherTask.GotNewNodeContents") + CL + SP + newContent); //$NON-NLS-1$
184 System.out.println(Messages.getString("RSSFeedWatcherTask.RunExecTask") + CL + SP + action + SP + commandline); //$NON-NLS-1$
188 String out = null; local
190 out = exec.getProject().getProperty(RSSFeedUtil.RUN_EXEC_TASK_ERROR);
191 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionError + DOT + j, out);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 215 OutputStream out = null; local
217 out = new BufferedOutputStream(new FileOutputStream(outputFile));
218 imageLoader.save(out, SWT.IMAGE_GIF);
223 if (out != null) {
225 out.close();
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoader.java 110 // if the class was on the forced delegation list, error out:
202 murle.printStackTrace (System.out);
304 public void debugDump (final PrintWriter out)
306 if (out != null)
308 out.println (this + ": " + m_cacheHits + " class cache hits, " + m_cacheMisses + " misses");
391 private static void readFully (final InputStream in, final ByteArrayOStream out, final byte [] buf)
396 out.write (buf, 0, read);
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 88 final FileOutputStream out = new FileOutputStream (outFile); local
93 result.store (out, "this file is auto-generated, do not edit");
95 out.close ();
  /external/guava/guava-tests/test/com/google/common/io/
ByteStreamsTest.java 225 OutputStream out = okWrite.getOutput(); local
226 ByteStreams.copy(okRead, out);
229 out.close();
231 out = brokenWrite.getOutput();
233 ByteStreams.copy(okRead, out);
240 out.close();
242 out = okWrite.getOutput();
244 ByteStreams.copy(brokenRead, out);
251 out.close();
253 out = brokenWrite.getOutput()
    [all...]
  /external/mockito/src/org/mockito/internal/creation/
AcrossJVMSerializationFeature.java 196 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
197 ObjectOutputStream objectOutputStream = new MockitoMockObjectOutputStream(out);
202 out.close();
205 this.serializedMock = out.toByteArray();
373 public MockitoMockObjectOutputStream(ByteArrayOutputStream out) throws IOException {
374 super(out);
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocket.java 21 protected OutputStream out; field in class:WebSocket
34 protected void send(OutputStream out) {
35 WebSocket.this.out = out;
37 super.send(out);
147 frame.write(out);
163 if (out != null) {
165 out.close();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 79 BufferedSink out = Okio.buffer(stream.getSink()); local
80 out.writeUtf8("c3po");
81 out.close();
490 BufferedSink out = Okio.buffer(stream.getSink());
491 out.writeUtf8("square");
492 out.flush();
494 out.close();
496 out.writeUtf8("round");
533 BufferedSink out = Okio.buffer(stream.getSink());
536 out.writeUtf8("square")
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 213 OutputStream out = socket.getOutputStream(); local
218 out.write(buf);
219 out.flush();
221 out.close();
  /cts/tests/tests/net/src/android/net/cts/
TrafficStatsTest.java 131 OutputStream out = socket.getOutputStream(); local
137 out.write(buf);
138 out.flush();
146 out.close();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
51 protected PrintWriter out; field in class:DebugEventSocketProxy
80 out = new PrintWriter(new BufferedWriter(osw));
84 out.println("ANTLR "+ DebugEventListener.PROTOCOL_VERSION);
85 out.println("grammar \""+ grammarFileName);
86 out.flush();
97 out.close();
116 out.println(event);
117 out.flush();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
Util.java 167 OutputStream out = new FileOutputStream(dest); local
171 out.write(buf, 0, len);
174 out.close();
196 OutputStream out = new FileOutputStream(dest); local
200 out.write(buf, 0, len);
203 out.close();
  /external/emma/core/java12/com/vladium/emma/data/
DataFactory.java 133 public static void writeMetaData (final IMetaData data, final OutputStream out)
136 ObjectOutputStream oout = new ObjectOutputStream (out);
146 OutputStream out = null; local
149 out = connection.getOutputStream ();
151 writeMetaData (data, out);
152 out.flush ();
156 if (out != null) try { out.close (); } catch (Exception ignore) {}
177 public static void writeCoverageData (final ICoverageData data, final OutputStream out)
182 ObjectOutputStream oout = new ObjectOutputStream (out);
    [all...]
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 23 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.println(" aff: " + aff + " / " + aff.getClass())
    [all...]
  /art/test/070-nio-buffer/src/
Main.java 30 System.out.println("Direct byte buffer has array: " + buf.hasArray());
61 System.err.println("ERROR: out-of-bounds put succeeded\n");
63 System.out.println("Got expected buffer overflow exception");
69 System.err.println("ERROR: out-of-bounds put succeeded\n");
71 System.out.println("Got expected out-of-bounds exception");
77 System.err.println("ERROR: out-of-bounds put succeeded\n");
79 System.out.println("Got expected buffer overflow exception");
167 System.out.println(new String(outBuf));
  /cts/suite/cts/deviceTests/opengl/test/
MatrixTest.cpp 232 float out[4]; local
240 Matrix::multiplyVector(out, m, in);
241 checkValues(out, expected, 4);
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 68 OutputStream out = mMemoryFile.getOutputStream(); local
69 assertNotNull(out);
70 out.write(bs);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestCross.java 40 public Target.Floaty[] out; field in class:TestCross.ArgumentsFloatNFloatNFloatN
47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
49 script.forEach_testCrossFloat3Float3Float3(inLhs, out);
50 verifyResultsCrossFloat3Float3Float3(inLhs, inRhs, out, false);
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
57 scriptRelaxed.forEach_testCrossFloat3Float3Float3(inLhs, out);
58 verifyResultsCrossFloat3Float3Float3(inLhs, inRhs, out, true);
64 private void verifyResultsCrossFloat3Float3Float3(Allocation inLhs, Allocation inRhs, Allocation out, boolean relaxed) {
70 out.copyTo(arrayOut);
76 args.out = new Target.Floaty[3]
130 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
    [all...]
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 46 * /home/fjost/android/workspace/out/classes_javac this is the place where
74 // e.g. <out-path>/test/p1/MyTest.class
90 // Writer w = new OutputStreamWriter(System.out);
108 out("//@class:" + className, 0);
135 out("// ========== start-ParseMember:" + name + ", offset "
138 // out("// "+dumpReadableString(ba));
139 // out(" "+dumpBytes(ba));
155 out("// ========== end-ParseMember:" + name + ", desc: "
157 // out("// "+dumpReadableString(ba));
158 // out(" "+dumpBytes(ba))
250 private void out(String msg, int cur_indent) { method in class:ClassFileParser
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationItem.java 155 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
156 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
159 encodedForm = out.toByteArray();
170 * @param out {@code non-null;} where to output to
173 public void annotateTo(AnnotatedOutput out, String prefix) {
174 out.annotate(0, prefix + "visibility: " +
176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman());
182 out.annotate(0, prefix + name.toHuman() + ": " +
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
190 boolean annotates = out.annotates()
    [all...]
TypeListItem.java 92 protected void writeTo0(DexFile file, AnnotatedOutput out) {
96 if (out.annotates()) {
97 out.annotate(0, offsetString() + " type_list");
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
102 out.annotate(ELEMENT_SIZE,
107 out.writeInt(sz);
110 out.writeShort(typeIds.indexOf(list.getType(i)));
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 32 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,
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,
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]

Completed in 3138 milliseconds

<<21222324252627282930>>