Searched defs:format (Results 1 - 13 of 13) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DDop.java29 /** {@code non-null;} the instruction format */
30 private final InsnFormat format; field in class:Dop
44 * @param format {@code non-null;} the instruction format
49 public Dop(int opcode, int family, InsnFormat format, argument
59 if (format == null) {
60 throw new NullPointerException("format == null");
69 this.format = format;
100 * Gets the instruction format
[all...]
H A DOutputFinisher.java276 * No need to call this.set(), since the format and other info
359 * the format out of each instruction into a separate array, to be
382 * @param formats {@code non-null;} array of per-instruction format selections
411 * No need to call this.set() since the format and
431 * @param formats {@code non-null;} array of per-instruction format selections
472 * Attempts to fit the given instruction into a format, returning
473 * either a format that the instruction fits into or {@code null}
475 * fitting process starts with the given format as a first "best
479 * @param format {@code null-ok;} the current guess as to the best instruction
480 * format t
485 findFormatForInsn(DalvInsn insn, InsnFormat format) argument
[all...]
H A DDops.java1194 * Gets the {@link Dop} with the given family/format combination, if
1198 * @param format {@code non-null;} the opcode's instruction format
1202 public static Dop getOrNull(int family, InsnFormat format) { argument
1203 if (format == null) {
1204 throw new NullPointerException("format == null");
1214 (dop.getFormat() == format)) {
/dalvik/dx/src/junit/framework/
H A DAssert.java282 fail(format(message, expected, actual));
285 static String format(String message, Object expected, Object actual) { method in class:Assert
/dalvik/tests/021-string2/src/junit/framework/
H A DAssert.java282 fail(format(message, expected, actual));
285 static String format(String message, Object expected, Object actual) { method in class:Assert
/dalvik/tests/082-inline-execute/src/junit/framework/
H A DAssert.java282 fail(format(message, expected, actual));
285 static String format(String message, Object expected, Object actual) { method in class:Assert
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java29 public static void generate(DexData dexData, String format) { argument
30 if (format.equals("brief")) {
32 } else if (format.equals("xml")) {
36 throw new RuntimeException("unknown output format");
41 * Prints the data in a simple human-readable format.
52 * Prints the list of classes in a simple human-readable format.
64 * Prints the list of fields in a simple human-readable format.
81 * Prints the list of methods in a simple human-readable format.
99 * Prints the output in XML format.
145 * Prints the externally-visible fields in XML format
[all...]
/dalvik/vm/analysis/
H A DRegisterMap.h49 * Size of (format==FormatNone): 1 byte
50 * Size of (format==FormatCompact8): 4 + (1 + regWidth) * numEntries
51 * Size of (format==FormatCompact16): 4 + (2 + regWidth) * numEntries
55 u1 format; /* enum RegisterMapFormat; MUST be first entry */ member in struct:RegisterMap
67 * Get the format.
70 return pMap->format & ~(kRegMapFormatOnHeap);
74 * Set the format.
76 INLINE void dvmRegisterMapSetFormat(RegisterMap* pMap, RegisterMapFormat format) argument
78 pMap->format &= kRegMapFormatOnHeap;
79 pMap->format |
[all...]
H A DVerifySubs.c340 void dvmLogVerifyFailure(const Method* meth, const char* format, ...) argument
352 va_start(ap, format);
353 LOG_PRI_VA(logLevel, LOG_TAG, format, ap);
H A DRegisterMap.c192 RegisterMapFormat format; local
213 format = kRegMapFormatCompact8;
216 format = kRegMapFormatCompact16;
248 dvmRegisterMapSetFormat(pMap, format);
260 if (format == kRegMapFormatCompact8) {
400 const RegisterMapFormat format = dvmRegisterMapGetFormat(pMap); local
405 switch (format) {
414 LOGE("Can only dump Compact8 / Compact16 maps (not %d)\n", format);
467 const RegisterMapFormat format = dvmRegisterMapGetFormat(pMap); local
497 switch (format) {
571 u1 format = dvmRegisterMapGetFormat(pMap); local
896 u1 format = dvmRegisterMapGetFormat(pMap); local
1018 RegisterMapFormat format = dvmRegisterMapGetFormat(curMap); local
1249 const u1 format = dvmRegisterMapGetFormat(pMap); local
1457 u1 format = dvmRegisterMapGetFormat(pMap); local
1701 u1 format = dvmRegisterMapGetFormat(pMap); local
[all...]
/dalvik/vm/
H A DInit.c1677 int dvmFprintf(FILE* fp, const char* format, ...) argument
1682 va_start(args, format);
1684 result = (*gDvm.vfprintfHook)(fp, format, args);
1686 result = vfprintf(fp, format, args);
H A DMisc.c36 * Print a hex dump in this format:
173 void dvmPrintDebugMessage(const DebugOutputTarget* target, const char* format, argument
178 va_start(args, format);
183 format, args);
186 vfprintf(target->data.file.fp, format, args);
/dalvik/dexdump/
H A DDexDump.c21 * TODO: rework the "plain" output format to be more regexp-friendly
354 * to printf format chars or an ASCII filler ('.' or '?').
465 printf("(1.0 format, only class lookup table is present)\n\n");
470 * The "opt" section is in "chunk" format: a 32-bit identifier, a 32-bit
779 // The printed format varies a bit based on the actual opcode.
1507 * Dump a map in the "differential" format.
1516 const u1* dataStart = data -1; // format byte already removed
1562 u1 format; local
1565 format = *data++;
1566 if (format
[all...]

Completed in 700 milliseconds