HomeSort by relevance Sort by last modified time
    Searched refs:isHex (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 236 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
237 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
238 if (isHex)
261 bool isHex = Radix == 16;
263 if (!isHex && (*CurPtr == '.' || *CurPtr == 'e')) {
272 return ReturnError(TokStart, !isHex ? "invalid decimal number" :
348 bool isHex = Radix == 16;
351 return ReturnError(TokStart, !isHex ? "invalid octal number" :
  /external/gptfdisk/
support.cc 275 int IsHex(string input) {
276 int isHex = 1, foundHex = 0, i;
285 isHex = 0;
292 isHex = 0;
293 return isHex;
294 } // IsHex()
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
WifiConfigurationHelper.java 74 if (isHex(password, 10) || isHex(password, 26) || isHex(password, 58)) {
96 if (isHex(password, 64)) {
358 public static boolean isHex(String input, int length) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 59 private static boolean isHex(String value) {
74 return isHex(value);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 91 assertTrue(WifiConfigurationHelper.isHex(password, 10));
98 assertTrue(WifiConfigurationHelper.isHex(password, 26));
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 434 static byte[] stringToByteArray(String original, boolean isHex)
436 int length = isHex ? original.length() / 2 : original.length();
440 if (isHex)
522 * @param isHex Specifies whether the content of the string has been encoded as a Hex string. Encoding
528 * set to -1, and <code> isHex </code> can be false.
531 static private String decodeString(String original, boolean isHex, int coding)
534 byte[] input = stringToByteArray(original, isHex);
  /external/apache-xml/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...]
  /external/apache-xml/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...]
  /prebuilts/go/darwin-x86/src/html/template/
css.go 77 if isHex(s[1]) {
81 for j < len(s) && j < 7 && isHex(s[j]) {
102 // isHex reports whether the given character is a hex digit.
103 func isHex(c byte) bool {
174 if repl != `\\` && (written == len(s) || isHex(s[written]) || isCSSSpace(s[written])) {
url.go 121 if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {
  /prebuilts/go/linux-x86/src/html/template/
css.go 77 if isHex(s[1]) {
81 for j < len(s) && j < 7 && isHex(s[j]) {
102 // isHex reports whether the given character is a hex digit.
103 func isHex(c byte) bool {
174 if repl != `\\` && (written == len(s) || isHex(s[written]) || isCSSSpace(s[written])) {
url.go 121 if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {
  /external/fonttools/Lib/fontTools/
t1Lib.py 210 if isEncrypted and isHex(chunk[:4]):
287 def isHex(text):
296 if isHex(chunk[:4]):
323 if isHex(cypherText[:4]):
  /external/conscrypt/platform/src/main/java/org/conscrypt/
CertBlacklist.java 66 private static boolean isHex(String value) {
81 return isHex(value);
  /device/google/marlin/power/
power-helper.c 564 unsigned int num_parameters, int isHex) {
595 if (isHex) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 343 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
344 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
359 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
ext_test.go 301 // isHex reports whether b is a hexadecimal character (0-9a-fA-F).
302 func isHex(b byte) bool {
319 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 319 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
320 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
335 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 343 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
344 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
359 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
ext_test.go 301 // isHex reports whether b is a hexadecimal character (0-9a-fA-F).
302 func isHex(b byte) bool {
319 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 319 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
320 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
335 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_darwin.go 238 isHex := ('A' <= b && b <= 'F') || ('0' <= b && b <= '9')
239 if isHex {
  /prebuilts/go/linux-x86/src/crypto/x509/
root_darwin.go 238 isHex := ('A' <= b && b <= 'F') || ('0' <= b && b <= '9')
239 if isHex {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 374 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
375 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
390 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 374 // isHex reports whether b is a hexadecimal character (0-9A-Fa-f).
375 func isHex(b byte) bool { return b == '0' || unhex[b] > 0 }
390 if j+2 > len(hex) || !isHex(hex[j]) || !isHex(hex[j+1]) {

Completed in 429 milliseconds

1 2 3