Searched refs:verbose (Results 1 - 24 of 24) sorted by relevance

/dalvik/dx/tests/043-dex-two-classes/
H A Drun18 dx --debug --verbose --dex --output=blort.dex *.class
/dalvik/dx/tests/034-dex-minimal/
H A Drun21 dx --verbose --debug --dex --output=blort.dex blort.class
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvInsnList.java129 boolean verbose = out.isVerbose();
136 if ((codeBytes != 0) || verbose) {
221 * @param verbose whether to be verbose; verbose output includes
224 public void debugPrint(Writer out, String prefix, boolean verbose) { argument
233 if ((insn.codeSize() != 0) || verbose) {
234 s = insn.listingString("", 0, verbose);
255 * @param verbose whether to be verbose; verbos
258 debugPrint(OutputStream out, String prefix, boolean verbose) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsnList.java129 boolean verbose = out.isVerbose();
136 if ((codeBytes != 0) || verbose) {
221 * @param verbose whether to be verbose; verbose output includes
224 public void debugPrint(Writer out, String prefix, boolean verbose) { argument
233 if ((insn.codeSize() != 0) || verbose) {
234 s = insn.listingString("", 0, verbose);
255 * @param verbose whether to be verbose; verbos
258 debugPrint(OutputStream out, String prefix, boolean verbose) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DEncodedMember.java62 * @param verbose whether to be verbose with the output
64 public abstract void debugPrint(PrintWriter out, boolean verbose); argument
H A DDexFile.java168 * @param verbose whether to be verbose when writing human-oriented output
170 public void writeTo(OutputStream out, Writer humanOut, boolean verbose) argument
173 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
189 * @param verbose whether to be verbose when writing human-oriented output
192 public byte[] toDex(Writer humanOut, boolean verbose) argument
195 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
472 * @param verbose if annotating, whether to be verbose
475 toDex0(boolean annotate, boolean verbose) argument
[all...]
H A DEncodedMethod.java140 public void debugPrint(PrintWriter out, boolean verbose) { argument
144 code.debugPrint(out, " ", verbose);
H A DClassDataItem.java199 * @param verbose whether to be verbose with the output
201 public void debugPrint(Writer out, boolean verbose) { argument
217 directMethods.get(i).debugPrint(pw, verbose);
223 virtualMethods.get(i).debugPrint(pw, verbose);
H A DEncodedField.java117 public void debugPrint(PrintWriter out, boolean verbose) { argument
H A DCodeItem.java163 * @param verbose whether to be verbose with the output
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
173 insns.debugPrint(out, prefix, verbose);
H A DClassDefItem.java392 * @param verbose whether to be verbose with the output
394 public void debugPrint(Writer out, boolean verbose) { argument
405 classData.debugPrint(out, verbose);
/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedMember.java61 * @param verbose whether to be verbose with the output
63 public abstract void debugPrint(PrintWriter out, boolean verbose); argument
H A DDexFile.java187 * @param verbose whether to be verbose when writing human-oriented output
189 public void writeTo(OutputStream out, Writer humanOut, boolean verbose) argument
192 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
208 * @param verbose whether to be verbose when writing human-oriented output
211 public byte[] toDex(Writer humanOut, boolean verbose) argument
214 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
489 * @param verbose if annotating, whether to be verbose
492 toDex0(boolean annotate, boolean verbose) argument
[all...]
H A DEncodedMethod.java139 public void debugPrint(PrintWriter out, boolean verbose) { argument
143 code.debugPrint(out, " ", verbose);
H A DClassDataItem.java195 * @param verbose whether to be verbose with the output
197 public void debugPrint(Writer out, boolean verbose) { argument
213 directMethods.get(i).debugPrint(pw, verbose);
219 virtualMethods.get(i).debugPrint(pw, verbose);
H A DEncodedField.java116 public void debugPrint(PrintWriter out, boolean verbose) { argument
H A DCodeItem.java154 * @param verbose whether to be verbose with the output
156 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
164 insns.debugPrint(out, prefix, verbose);
H A DClassDefItem.java394 * @param verbose whether to be verbose with the output
396 public void debugPrint(Writer out, boolean verbose) { argument
407 classData.debugPrint(out, verbose);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DByteArrayAnnotatedOutput.java47 /** whether annotations are to be verbose */
48 private boolean verbose; field in class:ByteArrayAnnotatedOutput
101 this.verbose = false;
363 return verbose;
423 * @param verbose whether or not to indicate verbose annotations
425 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
444 this.verbose = verbose;
/dalvik/dx/src/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java50 /** whether annotations are to be verbose */
51 private boolean verbose; field in class:ByteArrayAnnotatedOutput
113 this.verbose = false;
359 return verbose;
419 * @param verbose whether or not to indicate verbose annotations
421 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
440 this.verbose = verbose;
/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c47 int verbose = 0; variable
253 if (verbose) {
259 if (verbose)
265 if (verbose)
278 if (verbose)
296 if (verbose) {
464 verbose = 1;
H A DTraceDump.c654 long parseVersion(DataKeys* pKeys, long offset, int verbose) argument
688 if (verbose)
935 DataKeys* parseKeys(FILE *fp, int verbose) argument
975 offset = parseVersion(pKeys, offset, verbose);
994 if (verbose) {
1006 if (verbose) {
1289 bool verbose = false;
1291 verbose = true;
1305 if (verbose) {
1357 if (verbose) {
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java622 if (args.verbose) {
651 if (args.verbose) {
657 if (args.verbose) {
864 if (args.verbose) {
1202 /** whether to emit high-level verbose human-oriented output */
1203 public boolean verbose = false; field in class:Main.Arguments
1205 /** whether to emit verbose human-oriented output in the dump file */
1412 } else if (parser.isArg("--verbose")) {
1413 verbose = true;
1414 } else if (parser.isArg("--verbose
[all...]
/dalvik/dexdump/
H A DDexDump.cpp71 bool verbose; member in struct:Options
1739 if (gOptions.verbose) {
1785 if (gOptions.verbose)
1851 gOptions.verbose = true;
1879 gOptions.verbose = false;

Completed in 481 milliseconds