Searched defs:output (Results 1 - 5 of 5) sorted by relevance

/dalvik/dx/etc/
H A DmainDexClasses.bat70 set output= variable
76 if %1 NEQ --output goto notOut
77 set "output=%2"
115 if DEFINED output goto redirect
119 call "%java_exe%" -Djava.ext.dirs="%frameworkdir%" com.android.multidex.MainDexListBuilder %disableKeepAnnotated% "%tmpJar%" "%params%" 1>"%output%"
126 echo "Usage : %0 [--output <output file>] <application path>"
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DRopTranslator.java64 /** {@code non-null;} list of output instructions in-progress */
65 private final OutputCollector output; field in class:RopTranslator
73 /** {@code null-ok;} block output order; becomes non-null in {@link #pickOrder} */
153 this.output = new OutputCollector(maxInsns, bsz * 3, regCount);
157 new LocalVariableAwareTranslationVisitor(output, locals);
159 this.translationVisitor = new TranslationVisitor(output);
211 return new DalvCode(positionInfo, output.getFinisher(), catches);
215 * Performs initial creation of output instructions based on the
223 // Process the blocks in output order.
233 * and output o
490 private final OutputCollector output; field in class:RopTranslator.TranslationVisitor
506 TranslationVisitor(OutputCollector output) argument
817 LocalVariableAwareTranslationVisitor(OutputCollector output, LocalVariableInfo locals) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoEncoder.java64 private final ByteArrayAnnotatedOutput output; field in class:DebugInfoEncoder
79 * if non-null: the output to write annotations to. No normal
80 * output is written to this.
84 /** if non-null: another possible output for annotations */
90 /** true if output should be consumed during annotation */
119 output = new ByteArrayAnnotatedOutput();
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
174 * @param debugPrint {@code null-ok;} if specified, an alternate output for
177 * @param consume whether to claim to have consumed output for
179 * @return {@code non-null;} encoded output
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DRopTranslator.java50 /** {@code non-null;} options for dex output */
68 /** {@code non-null;} list of output instructions in-progress */
69 private final OutputCollector output; field in class:RopTranslator
77 /** {@code null-ok;} block output order; becomes non-null in {@link #pickOrder} */
99 * @param dexOptions {@code non-null;} options for dex output
118 * @param dexOptions {@code non-null;} options for dex output
159 this.output = new OutputCollector(dexOptions, maxInsns, bsz * 3, regCount, paramSize);
163 new LocalVariableAwareTranslationVisitor(output, locals);
165 this.translationVisitor = new TranslationVisitor(output);
218 return new DalvCode(positionInfo, output
497 private final OutputCollector output; field in class:RopTranslator.TranslationVisitor
513 TranslationVisitor(OutputCollector output) argument
856 LocalVariableAwareTranslationVisitor(OutputCollector output, LocalVariableInfo locals) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java72 private final ByteArrayAnnotatedOutput output; field in class:DebugInfoEncoder
87 * if non-null: the output to write annotations to. No normal
88 * output is written to this.
92 /** if non-null: another possible output for annotations */
98 /** true if output should be consumed during annotation */
127 output = new ByteArrayAnnotatedOutput();
181 * @param prefix {@code null-ok;} prefix to attach to each line of output
182 * @param debugPrint {@code null-ok;} if specified, an alternate output for
185 * @param consume whether to claim to have consumed output for
187 * @return {@code non-null;} encoded output
[all...]

Completed in 423 milliseconds