Home
last modified time | relevance | path

Searched refs:rawBytes (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/command/dump/
DBaseDumper.java39 private final boolean rawBytes; field in BaseDumper
83 this.rawBytes = args.rawBytes; in BaseDumper()
89 this.separator = rawBytes ? "|" : ""; in BaseDumper()
117 separator = rawBytes ? "|" : ""; in changeIndent()
127 boolean rawBytes = getRawBytes(); in parsed()
133 String hex = rawBytes ? hexDump(at, offset - at) : ""; in parsed()
138 String hex = rawBytes ? hexDump(offset, len) : ""; in parsed()
227 return rawBytes; in getRawBytes()
237 if (rawBytes) { in getWidth1()
250 int w1 = rawBytes ? (getWidth1() + 1) : 0; in getWidth2()
DArgs.java27 boolean rawBytes = false; field in Args
DMain.java49 parsedArgs.rawBytes = true; in main()