Home | History | Annotate | Download | only in util

Lines Matching defs:append

36         result.append("\n0x");
37 result.append(toHexString(offset));
43 result.append(" ");
49 result.append(new String(line, j, 1));
53 result.append(".");
57 result.append("\n0x");
58 result.append(toHexString(i));
63 result.append(" ");
64 result.append(HEX_DIGITS[(b >>> 4) & 0x0F]);
65 result.append(HEX_DIGITS[b & 0x0F]);
76 result.append(" ");
83 result.append(new String(line, i, 1));
87 result.append(".");
179 sb.append(digits[(b >> 4) & 0xf]);
180 sb.append(digits[b & 0xf]);