HomeSort by relevance Sort by last modified time
    Searched full:ishex (Results 1 - 7 of 7) sorted by null

  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 258 static byte[] stringToByteArray(String original, boolean isHex)
260 int length = isHex ? original.length() / 2 : original.length();
264 if (isHex)
372 * @param isHex Specifies whether the content of the string has been encoded as a Hex string. Encoding
378 * set to -1, and <code> isHex </code> can be false.
381 static private String decodeString(String original, boolean isHex, int coding)
384 byte[] input = stringToByteArray(original, isHex);
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java 752 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
753 ||!isHex(p_uriSpec.charAt(index + 2)))
790 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
791 ||!isHex(p_uriSpec.charAt(index + 2)))
823 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
824 ||!isHex(p_uriSpec.charAt(index + 2)))
1068 if (index + 2 >= end ||!isHex(p_userinfo.charAt(index + 1))
1069 ||!isHex(p_userinfo.charAt(index + 2)))
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
URI.java 772 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
773 ||!isHex(p_uriSpec.charAt(index + 2)))
810 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
811 ||!isHex(p_uriSpec.charAt(index + 2)))
843 if (index + 2 >= end ||!isHex(p_uriSpec.charAt(index + 1))
844 ||!isHex(p_uriSpec.charAt(index + 2)))
1088 if (index + 2 >= end ||!isHex(p_userinfo.charAt(index + 1))
1089 ||!isHex(p_userinfo.charAt(index + 2)))
    [all...]
  /external/chromium/net/base/
escape.cc 18 inline bool IsHex(char_type ch) {
144 if (IsHex(most_sig_digit) && IsHex(least_sig_digit)) {
  /external/openssl/crypto/x509v3/
v3_utl.c 163 int isneg, ishex; local
177 ishex = 1;
178 } else ishex = 0;
180 if (ishex) ret = BN_hex2bn(&bn, value);
  /bionic/libc/kernel/tools/
cpp.py 304 isHex = True
307 isHex = False
309 if isHex:
316 isHex = True
319 isHex = False
321 if isHex:
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]

Completed in 1338 milliseconds