Searched refs:toHexString (Results 1 - 19 of 19) sorted by relevance

/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedOutputStream.java97 this.out.writeLine(Integer.toHexString(this.cachePosition));
113 this.out.writeLine(Integer.toHexString(this.cachePosition + len));
/external/emma/core/java12/com/vladium/jcd/cls/
H A DField_info.java144 return "field_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " + m_descriptor_index + ']';
H A DMethod_info.java163 s.append ("method_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " + m_descriptor_index + "]\n");
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java68 buffer.append(Integer.toHexString(ch));
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java96 println("Major version: 0x" + Integer.toHexString(ClassUtil.internalMajorClassVersion(programClass.u4version)));
97 println("Minor version: 0x" + Integer.toHexString(ClassUtil.internalMinorClassVersion(programClass.u4version)));
98 println("Access flags: 0x" + Integer.toHexString(programClass.u2accessFlags));
150 println("Access flags: 0x" + Integer.toHexString(libraryClass.u2accessFlags));
277 println("Access flags: 0x" + Integer.toHexString(programField.u2accessFlags));
296 println("Access flags: 0x" + Integer.toHexString(programMethod.u2accessFlags));
326 println("Access flags: 0x" + Integer.toHexString(libraryField.u2accessFlags));
343 println("Access flags: 0x" + Integer.toHexString(libraryMethod.u2accessFlags));
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java287 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "+
288 Integer.toHexString(0x100|codeAttribute.code[index]&0xff).substring(1));
H A DMethodDescriptorShrinker.java92 newName += ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()));
/external/proguard/src/proguard/classfile/constant/
H A DUtf8Constant.java279 throw new UnsupportedEncodingException("Missing UTF-8 bytes after initial byte [0x"+Integer.toHexString(b)+"] in string ["+new String(chars, 0, charIndex)+"]");
/external/proguard/src/proguard/classfile/editor/
H A DMemberAdder.java255 name + ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()));
H A DClassReferenceFixer.java513 name + ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()));
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java138 if (DEBUG) System.out.println ("magic: [" + Long.toHexString (magic) + ']');
/external/emma/core/java12/com/vladium/util/
H A DSoftValueMap.java414 out.append (getClass ().getName ().concat ("@").concat (Integer.toHexString (System.identityHashCode (this)))); out.append (EOL);
/external/icu4c/test/intltest/
H A Dusettest.cpp2065 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
2088 buf += toHexString((c & 0xF0000000) >> 28);
2089 buf += toHexString((c & 0x0F000000) >> 24);
2090 buf += toHexString((c & 0x00F00000) >> 20);
2091 buf += toHexString((c & 0x000F0000) >> 16);
2093 buf += toHexString((c & 0xF000) >> 12);
2094 buf += toHexString((c & 0x0F00) >> 8);
2095 buf += toHexString((c & 0x00F0) >> 4);
2096 buf += toHexString(c & 0x000F);
H A Ddtfmttst.cpp265 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
277 buf += toHexString((c & 0xF000) >> 12);
278 buf += toHexString((c & 0x0F00) >> 8);
279 buf += toHexString((c & 0x00F0) >> 4);
280 buf += toHexString(c & 0x000F);
H A Dnumfmtst.cpp654 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
666 buf += toHexString((c & 0xF000) >> 12);
667 buf += toHexString((c & 0x0F00) >> 8);
668 buf += toHexString((c & 0x00F0) >> 4);
669 buf += toHexString(c & 0x000F);
/external/quake/src/com/android/quake/
H A DDownloaderActivity.java780 builder.append(Integer.toHexString((b >> 4) & 0xf));
781 builder.append(Integer.toHexString(b & 0xf));
/external/proguard/src/proguard/classfile/util/
H A DClassUtil.java47 throw new UnsupportedOperationException("Invalid magic number ["+Integer.toHexString(magicNumber)+"] in class");
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java644 if (in < 32) return "0x"+Integer.toHexString(in);
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java755 return Integer.toHexString (ID);

Completed in 224 milliseconds