Home
last modified time | relevance | path

Searched refs:hex1 (Results 1 – 4 of 4) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DIETFUtils.java49 char hex1 = 0; in unescape() local
85 if (hex1 != 0) in unescape()
87 buf.append((char)(convertHex(hex1) * 16 + convertHex(c))); in unescape()
89 hex1 = 0; in unescape()
92 hex1 = c; in unescape()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DDelphiTarget.java62 String hex1 = Integer.toHexString(v | 0x10000).substring(3, 5); in encodeIntAsCharEscape() local
63 return "'#$" + hex1 + "'"; in encodeIntAsCharEscape()
/external/apache-http/src/org/apache/commons/codec/net/
DQuotedPrintableCodec.java121 char hex1 = Character.toUpperCase(Character.forDigit((b >> 4) & 0xF, 16)); in encodeQuotedPrintable() local
123 buffer.write(hex1); in encodeQuotedPrintable()
DURLCodec.java138 char hex1 = Character.toUpperCase( in encodeUrl() local
142 buffer.write(hex1); in encodeUrl()