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

1 2 3

  /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])) {
  /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])) {
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 91 assertTrue(WifiConfigurationHelper.isHex(password, 10));
98 assertTrue(WifiConfigurationHelper.isHex(password, 26));
  /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]):
  /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) {
  /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/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/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]) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 59 private static boolean isHex(String value) {
74 return isHex(value);
  /external/conscrypt/platform/src/main/java/org/conscrypt/
CertBlacklist.java 66 private static boolean isHex(String value) {
81 return isHex(value);
  /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()
  /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/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 174 if (isHex(codepoint)) {
179 while (end < n && isHex(token.charAt(end))) { ++end; }
199 private static boolean isHex(int codepoint) {
  /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/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/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/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]) {
  /system/tools/hidl/
ConstantExpression.cpp 190 bool isHex = (value[0] == '0' && value.length() > 1 && (value[1] == 'x' || value[1] == 'X'));
224 if(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...]
  /external/valgrind/coregrind/
m_libcbase.c 502 static Bool isHex ( HChar c )
533 while (isHex(**ppc)) {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 765 if (!isHex(c)) {
843 private static boolean isHex(char c) {
889 if ((c == 'x') && (i < len) && isHex(s.charAt(i))) {
892 if ((i < len) && isHex(s.charAt(i))) {
    [all...]
  /external/libxml2/
trio.c     [all...]

Completed in 553 milliseconds

1 2 3