HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 876 - 900 of 4560) sorted by null

<<31323334353637383940>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 107 * @param out {@code non-null;} where to dump
110 public void debugPrint(PrintWriter out, String prefix) {
111 annotateEntries(prefix, out, null);
140 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
142 // Write out the handlers "header" consisting of its size in entries.
144 out.writeUnsignedLeb128(handlerOffsets.size());
146 // Now write the lists out in order, noting the offset of each.
154 mapping.setValue(out.getCursor());
158 out.writeSignedLeb128(-(listSize - 1));
161 out.writeSignedLeb128(listSize)
    [all...]
ClassDataItem.java 195 * Prints out the contents of this instance, in a debugging-friendly
198 * @param out {@code non-null;} where to output to
201 public void debugPrint(Writer out, boolean verbose) {
202 PrintWriter pw = Writers.printWriterFor(out);
330 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
332 encodeOutput(addedTo.getFile(), out); local
333 encodedForm = out.toByteArray();
338 * Writes out the encoded form of this instance.
341 * @param out {@code non-null;} where to write to
343 private void encodeOutput(DexFile file, AnnotatedOutput out) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 104 * @param out {@code non-null;} where to dump
107 public void debugPrint(PrintWriter out, String prefix) {
108 annotateEntries(prefix, out, null);
137 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
139 // Write out the handlers "header" consisting of its size in entries.
141 out.writeUleb128(handlerOffsets.size());
143 // Now write the lists out in order, noting the offset of each.
151 mapping.setValue(out.getCursor());
155 out.writeSleb128(-(listSize - 1));
158 out.writeSleb128(listSize)
    [all...]
ClassDataItem.java 191 * Prints out the contents of this instance, in a debugging-friendly
194 * @param out {@code non-null;} where to output to
197 public void debugPrint(Writer out, boolean verbose) {
198 PrintWriter pw = Writers.printWriterFor(out);
326 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
328 encodeOutput(addedTo.getFile(), out); local
329 encodedForm = out.toByteArray();
334 * Writes out the encoded form of this instance.
337 * @param out {@code non-null;} where to write to
339 private void encodeOutput(DexFile file, AnnotatedOutput out) {
    [all...]
ValueEncoder.java 45 * Handler for writing out {@code encoded_values} and parts
101 private final AnnotatedOutput out; field in class:ValueEncoder
107 * @param out {@code non-null;} output stream to write to
109 public ValueEncoder(DexFile file, AnnotatedOutput out) {
114 if (out == null) {
115 throw new NullPointerException("out == null");
119 this.out = out;
123 * Writes out the encoded form of the given constant.
137 EncodedValueCodec.writeSignedIntegralValue(out, type, value)
    [all...]
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 31 private static final PrintStream out = System.out; field in class:Output
36 out.println("File: " + fileName);
40 out.println(IN0 + "<external file=\"" + fileName + "\">");
42 out.println(IN0 + "<external>");
55 out.println();
63 out.println("</external>");
101 out.println("Classes:");
107 out.println(descriptorToDot(ref.getName()));
115 out.println("\nFields:")
    [all...]
  /developers/build/prebuilts/gradle/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DragSourceFragment.java 159 // read out by the target app.
220 FileOutputStream out = null; local
222 out = new FileOutputStream(filePath);
223 image.compress(Bitmap.CompressFormat.PNG, 100, out);
228 if (out != null) {
229 out.close();
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
DeviceDetailFragment.java 279 public static boolean copyFile(InputStream inputStream, OutputStream out) {
284 out.write(buf, 0, len);
287 out.close();
  /developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DragSourceFragment.java 159 // read out by the target app.
220 FileOutputStream out = null; local
222 out = new FileOutputStream(filePath);
223 image.compress(Bitmap.CompressFormat.PNG, 100, out);
228 if (out != null) {
229 out.close();
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 278 public static boolean copyFile(InputStream inputStream, OutputStream out) {
283 out.write(buf, 0, len);
286 out.close();
  /development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/
DragSourceFragment.java 159 // read out by the target app.
220 FileOutputStream out = null; local
222 out = new FileOutputStream(filePath);
223 image.compress(Bitmap.CompressFormat.PNG, 100, out);
228 if (out != null) {
229 out.close();
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RandomPhrase.java 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
78 if ( debug ) System.out.println("state "+state);
80 if ( debug ) System.out.println("dangling state: "+state);
86 if ( debug ) System.out.println("pop invoking state "+invokingState);
87 //System.out.println("leave "+state.enclosingRule.name);
99 if ( debug ) System.out.println("push state "+state);
100 //System.out.println("call "+((RuleClosureTransition)t0).rule.name);
101 //System.out.println("stack depth="+ruleInvocationStack.size());
112 System.out.println("weird: no decision number but a choice node");
118 if ( debug ) System.out.println("randomAlt="+randomAlt)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 85 final RealMatrix out = createMatrix(rowCount, columnCount); local
88 out.setEntry(row, col, getEntry(row, col) + m.getEntry(row, col));
92 return out;
104 final RealMatrix out = createMatrix(rowCount, columnCount); local
107 out.setEntry(row, col, getEntry(row, col) - m.getEntry(row, col));
111 return out;
120 final RealMatrix out = createMatrix(rowCount, columnCount); local
123 out.setEntry(row, col, getEntry(row, col) + d);
127 return out;
136 final RealMatrix out = createMatrix(rowCount, columnCount) local
157 final RealMatrix out = createMatrix(nRows, nCols); local
    [all...]
ArrayFieldVector.java 315 T[] out = buildArray(data.length); local
317 out[i] = data[i].add(v.getEntry(i));
319 return new ArrayFieldVector<T>(out);
326 T[] out = buildArray(data.length); local
328 out[i] = data[i].add(v[i]);
330 return new ArrayFieldVector<T>(out);
350 T[] out = buildArray(data.length); local
352 out[i] = data[i].subtract(v.getEntry(i));
354 return new ArrayFieldVector<T>(out);
361 T[] out = buildArray(data.length) local
381 T[] out = buildArray(data.length); local
398 T[] out = buildArray(data.length); local
415 T[] out = buildArray(data.length); local
432 T[] out = buildArray(data.length); local
449 T[] out = buildArray(data.length); local
473 T[] out = buildArray(data.length); local
485 T[] out = buildArray(data.length); local
510 T[] out = buildArray(data.length); local
522 T[] out = buildArray(data.length); local
618 final FieldMatrix<T> out = new Array2DRowFieldMatrix<T>(field, m, m); local
644 final FieldMatrix<T> out = new Array2DRowFieldMatrix<T>(field, m, m); local
683 final T[] out = buildArray(data.length + 1); local
696 ArrayFieldVector<T> out = new ArrayFieldVector<T>(field, n); local
    [all...]
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixSocketTest.java 55 OutputStream out = worker.getOutputStream(); local
56 out.write(new byte[42]);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 75 System.out.write(bytes, 0, result);
126 System.out.write(bytes, 0, result);
225 System.out.println("Exec: " + commandLine.toString());
226 System.out.println();
254 ByteArrayOutputStream out =
256 PrintStream printer = new PrintStream(out);
261 errBuf.append(new String(out.toByteArray()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 203 Hashtable out = new Hashtable(); local
210 out.put(key, in.get(key));
213 return out;
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
FakeWorkers.java 111 System.out.close();
117 * Prints alternating arguments to standard out and standard error.
123 System.out.println(args[i]);
124 System.out.flush();
134 * Prints alternating arguments to standard out and standard error.
190 System.out.println(args[i]);
191 System.out.flush();
  /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);

Completed in 1307 milliseconds

<<31323334353637383940>>