Searched defs:Hex (Results 1 - 12 of 12) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java28 public class Hex { class
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DHex.java9 public class Hex class
29 * encode the input data producing a Hex encoded byte array.
31 * @return a byte array containing the Hex encoded data.
40 * encode the input data producing a Hex encoded byte array.
42 * @return a byte array containing the Hex encoded data.
57 throw new EncoderException("exception encoding Hex string: " + e.getMessage(), e);
64 * Hex encode the byte data writing it to the given output stream.
77 * Hex encode the byte data writing it to the given output stream.
92 * decode the Hex encoded input data. It is assumed the input data is valid.
107 throw new DecoderException("exception decoding Hex dat
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java25 * Hex encoder and decoder.
29 * @version $Id: Hex.java,v 1.13 2004/04/18 18:22:33 ggregory Exp $
31 public class Hex implements BinaryEncoder, BinaryDecoder { class in inherits:BinaryEncoder,BinaryDecoder
34 * Used building output as Hex
98 * a byte[] to convert to Hex characters
163 * @param array a byte[] to convert to Hex characters
177 * @param object a String, or byte[] to convert to Hex characters
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java22 public final class Hex { class
26 private Hex() { method in class:Hex
276 case 2: astr = Hex.u1(outOffset); break;
277 case 4: astr = Hex.u2(outOffset); break;
278 case 6: astr = Hex.u3(outOffset); break;
279 default: astr = Hex.u4(outOffset); break;
286 sb.append(Hex.u1(arr[offset]));
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DHex.java34 public final class Hex { class
38 private Hex() { method in class:Hex
288 case 2: astr = Hex.u1(outOffset); break;
289 case 4: astr = Hex.u2(outOffset); break;
290 case 6: astr = Hex.u3(outOffset); break;
291 default: astr = Hex.u4(outOffset); break;
298 sb.append(Hex.u1(arr[offset]));
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLEntityParser.cpp167 Hex, enumerator in enum:WebCore::EntityState
211 entityState = Hex;
220 entityState = Hex;
227 case Hex: {
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_print.c65 static const char Hex[]="0123456789ABCDEF"; variable
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
/external/openssl/crypto/bn/
H A Dbn_print.c65 static const char Hex[]="0123456789ABCDEF"; variable
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp677 bool Hex, Octal; member in struct:__anon15248::LiteralInfo
742 Info.Hex = Info.Octal = false;
744 Info.Hex = true;
859 if (!LitIsFloat && CallIsFloating && (LitInfo.Hex || LitInfo.Octal))
/external/clang/lib/AST/
H A DExpr.cpp801 static const char Hex[] = "0123456789ABCDEF"; local
832 OS << Hex[(Char >> Shift) & 15]; local
839 << Hex[(Char >> 20) & 15]
840 << Hex[(Char >> 16) & 15]; local
843 OS << Hex[(Char >> 12) & 15]
844 << Hex[(Char >> 8) & 15]
845 << Hex[(Char >> 4) & 15]
846 << Hex[(Char >> 0) & 15]; local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...

Completed in 447 milliseconds