Home
last modified time | relevance | path

Searched refs:toHexString (Results 1 – 20 of 20) sorted by relevance

/external/apache-http/src/org/apache/http/impl/io/
DChunkedOutputStream.java97 this.out.writeLine(Integer.toHexString(this.cachePosition)); in flushCache()
113 this.out.writeLine(Integer.toHexString(this.cachePosition + len)); in flushCacheWithAppend()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java96 …println("Major version: 0x" + Integer.toHexString(ClassUtil.internalMajorClassVersion(programClass… in visitProgramClass()
97 …println("Minor version: 0x" + Integer.toHexString(ClassUtil.internalMinorClassVersion(programClass… in visitProgramClass()
98 println("Access flags: 0x" + Integer.toHexString(programClass.u2accessFlags)); in visitProgramClass()
150 println("Access flags: 0x" + Integer.toHexString(libraryClass.u2accessFlags)); in visitLibraryClass()
277 println("Access flags: 0x" + Integer.toHexString(programField.u2accessFlags)); in visitProgramField()
296 println("Access flags: 0x" + Integer.toHexString(programMethod.u2accessFlags)); in visitProgramMethod()
326 println("Access flags: 0x" + Integer.toHexString(libraryField.u2accessFlags)); in visitLibraryField()
343 println("Access flags: 0x" + Integer.toHexString(libraryMethod.u2accessFlags)); in visitLibraryMethod()
/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java287 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "+ in printChangedCode()
288 Integer.toHexString(0x100|codeAttribute.code[index]&0xff).substring(1)); in printChangedCode()
DMethodDescriptorShrinker.java92 …newName += ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCo… in visitProgramMethod()
/external/emma/core/java12/com/vladium/jcd/cls/
DField_info.java144 …return "field_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_… in toString()
DMethod_info.java163 …s.append ("method_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " … in toString()
/external/apache-http/src/org/apache/http/impl/conn/
DWire.java68 buffer.append(Integer.toHexString(ch)); in wire()
/external/proguard/src/proguard/classfile/constant/
DUtf8Constant.java279 …EncodingException("Missing UTF-8 bytes after initial byte [0x"+Integer.toHexString(b)+"] in string… in getStringRepresentation()
/external/proguard/src/proguard/gui/
Ddefault.pro116 public static java.lang.String toHexString(int);
141 public static java.lang.String toHexString(long);
166 public static java.lang.String toHexString(float);
180 public static java.lang.String toHexString(double);
Dboilerplate.pro179 public static java.lang.String toHexString(int);
205 public static java.lang.String toHexString(long);
231 public static java.lang.String toHexString(float);
246 public static java.lang.String toHexString(double);
/external/proguard/src/proguard/classfile/editor/
DMemberAdder.java255 …name + ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()… in newUniqueMemberName()
DClassReferenceFixer.java513 …name + ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()… in newUniqueMemberName()
/external/icu4c/test/intltest/
Dusettest.cpp2051 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } in toHexString() function
2074 buf += toHexString((c & 0xF0000000) >> 28); in escape()
2075 buf += toHexString((c & 0x0F000000) >> 24); in escape()
2076 buf += toHexString((c & 0x00F00000) >> 20); in escape()
2077 buf += toHexString((c & 0x000F0000) >> 16); in escape()
2079 buf += toHexString((c & 0xF000) >> 12); in escape()
2080 buf += toHexString((c & 0x0F00) >> 8); in escape()
2081 buf += toHexString((c & 0x00F0) >> 4); in escape()
2082 buf += toHexString(c & 0x000F); in escape()
Ddtfmttst.cpp266 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } in toHexString() function
278 buf += toHexString((c & 0xF000) >> 12); in escape()
279 buf += toHexString((c & 0x0F00) >> 8); in escape()
280 buf += toHexString((c & 0x00F0) >> 4); in escape()
281 buf += toHexString(c & 0x000F); in escape()
Dnumfmtst.cpp621 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } in toHexString() function
633 buf += toHexString((c & 0xF000) >> 12); in escape()
634 buf += toHexString((c & 0x0F00) >> 8); in escape()
635 buf += toHexString((c & 0x00F0) >> 4); in escape()
636 buf += toHexString(c & 0x000F); in escape()
/external/emma/core/java12/com/vladium/jcd/parser/
DClassDefParser.java138 if (DEBUG) System.out.println ("magic: [" + Long.toHexString (magic) + ']'); in magic()
/external/emma/core/java12/com/vladium/util/
DSoftValueMap.java414 …out.append (getClass ().getName ().concat ("@").concat (Integer.toHexString (System.identityHashCo… in debugDump()
/external/proguard/src/proguard/classfile/util/
DClassUtil.java47 …throw new UnsupportedOperationException("Invalid magic number ["+Integer.toHexString(magicNumber)+… in checkMagicNumber()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLScanner.java644 if (in < 32) return "0x"+Integer.toHexString(in); in nicechar()
/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java755 return Integer.toHexString (ID); in getID()