HomeSort by relevance Sort by last modified time
    Searched defs:HEX (Results 1 - 9 of 9) sorted by null

  /external/chromium/third_party/icu/source/test/intltest/
testutil.cpp 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70};
16 UnicodeString TestUtility::hex(UChar ch) { function in class:TestUtility
18 buf.append(HEX[0xF&(ch>>12)]);
19 buf.append(HEX[0xF&(ch>>8)]);
20 buf.append(HEX[0xF&(ch>>4)]);
21 buf.append(HEX[0xF&ch]);
25 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
26 return hex(s, 44 /*,*/);
29 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
31 UnicodeString result = hex(s.charAt(0))
    [all...]
  /external/icu4c/test/intltest/
testutil.cpp 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70};
19 buf.append(HEX[0xF&(ch>>20)]);
21 buf.append(HEX[0xF&(ch>>16)]);
23 buf.append(HEX[0xF&(ch>>12)]);
24 buf.append(HEX[0xF&(ch>>8)]);
25 buf.append(HEX[0xF&(ch>>4)]);
26 buf.append(HEX[0xF&ch]);
30 UnicodeString TestUtility::hex(UChar32 ch) { function in class:TestUtility
36 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
37 return hex(s, 44 /*,*/)
40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { function in class:TestUtility
    [all...]
  /external/ipsec-tools/src/racoon/
prsa_par.h 43 HEX = 259,
67 #define HEX 259
  /external/v8/src/
scanner.cc 973 // According to ECMA-262, 3rd, 7.8.4, page 18, these hex escapes
1102 enum { DECIMAL, HEX, OCTAL } kind = DECIMAL;
1111 // if the first character is '0' we must check for octals and hex
1115 // either 0, 0exxx, 0Exxx, 0.xxx, an octal number, or a hex number
1117 // hex number
1118 kind = HEX;
1121 // we must have at least one hex digit after 'x'/'X'
1152 ASSERT(kind != HEX); // 'e'/'E' must be scanned as part of the hex number
    [all...]
  /external/e2fsprogs/ext2ed/
ext2ed.h 74 #define HEX 1
371 #define HEX 1
  /bionic/libc/stdio/
vfprintf.c 185 enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */
194 char ox[2]; /* space for 0x hex-prefix */
591 base = HEX;
626 goto hex;
629 hex: _umax = UARG();
630 base = HEX;
677 case HEX:
  /external/libvpx/vp8/encoder/
onyx_int.h 162 HEX = 2
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 400 milliseconds