HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 151 - 175 of 2038) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_test.go 8 "encoding/hex"
30 if result := hex.EncodeToString(out[:]); result != expected {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_test.go 8 "encoding/hex"
30 if result := hex.EncodeToString(out[:]); result != expected {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/std.manip/
setbase.pass.cpp 34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
46 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
58 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
70 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
setf_fmtflags_mask.pass.cpp 33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /system/connectivity/wificond/
logging_utils.cpp 34 ss << std::hex << std::setfill('0') << std::setw(2) << static_cast<int>(b);
  /toolchain/binutils/binutils-2.27/binutils/
dwarf-mode.el 118 (hex (match-string-no-properties 2)))
120 'die hex 'die-ref t)))
125 (let ((hex (match-string-no-properties 1))
129 'die hex 'die-ref nil))))))
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizerConformanceTest.java 193 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
194 ", exp. " + hex(exp)));
200 * character. Then, parse the resultant fields from hex into
248 int hex = Integer.parseInt(strToHex,16); local
249 if (hex < 0 ) {
250 throw new IllegalArgumentException("Out of range hex " +
251 hex + " in " + s);
252 }else if (hex > 0xFFFF){
253 buf.append((char)((hex>>10)+0xd7c0));
254 buf.append((char)((hex&0x3ff)|0xdc00))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizerConformanceTest.java 190 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
191 ", exp. " + hex(exp)));
197 * character. Then, parse the resultant fields from hex into
245 int hex = Integer.parseInt(strToHex,16); local
246 if (hex < 0 ) {
247 throw new IllegalArgumentException("Out of range hex " +
248 hex + " in " + s);
249 }else if (hex > 0xFFFF){
250 buf.append((char)((hex>>10)+0xd7c0));
251 buf.append((char)((hex&0x3ff)|0xdc00))
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationTest.java 144 + Utility.hex(orders[index]) + " vs 0x" + Utility.hex(o));
162 String hexString = "0x" + Utility.hex(o) + " ";
168 String hexString = "0x" + Utility.hex(o) + " ";
225 TestFmwk.errln("Comparing \"" + Utility.hex(source) + "\" with \""
226 + Utility.hex(target) + "\" expected " + result
233 TestFmwk.errln("Comparing CollationKeys of \"" + Utility.hex(source)
234 + "\" with \"" + Utility.hex(target)
245 + Utility.hex(source)
246 + "\" with \"" + Utility.hex(target
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationTest.java 141 + Utility.hex(orders[index]) + " vs 0x" + Utility.hex(o));
159 String hexString = "0x" + Utility.hex(o) + " ";
165 String hexString = "0x" + Utility.hex(o) + " ";
222 TestFmwk.errln("Comparing \"" + Utility.hex(source) + "\" with \""
223 + Utility.hex(target) + "\" expected " + result
230 TestFmwk.errln("Comparing CollationKeys of \"" + Utility.hex(source)
231 + "\" with \"" + Utility.hex(target)
242 + Utility.hex(source)
243 + "\" with \"" + Utility.hex(target
    [all...]
  /external/perf_data_converter/src/quipper/
address_mapper.cc 37 LOG(ERROR) << "Address mapping at " << std::hex << real_addr
38 << " with size " << std::hex << size << " overflows.";
106 LOG(ERROR) << "Could not map old range from " << std::hex
114 LOG(ERROR) << "Could not map new range at " << std::hex << range.real_addr
122 LOG(ERROR) << "Could not map old range from " << std::hex
208 LOG(ERROR) << "Could not find space to map addr=" << std::hex << real_addr
209 << " with size " << std::hex << size;
216 LOG(INFO) << " real_addr: " << std::hex << it->real_addr
217 << " mapped: " << std::hex << it->mapped_addr
218 << " id: " << std::hex << it->i
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Perl5Target.java 63 String hex = Integer.toHexString(c | 0x10000).toUpperCase().substring(1, 5); local
65 buf.append(hex);
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_data_channel.py 68 numpy.set_printoptions(formatter={'int':lambda x: hex(int(x))},
98 numpy.set_printoptions(formatter={'int':lambda x: hex(int(x))},
  /external/gptfdisk/
gptpart.h 75 void SetType(uint16_t hex) {partitionType = hex;}
  /external/icu/icu4c/source/test/intltest/
tstnorm.h 88 static UnicodeString hex(UChar ch);
89 static UnicodeString hex(const UnicodeString& str);
  /external/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_float.pass.cpp 81 hex(ios);
93 hex(ios);
105 hex(ios);
117 hex(ios);
129 hex(ios);
141 hex(ios);
153 hex(ios);
165 hex(ios);
  /external/syslinux/utils/
syslinux2ansi 20 $attr = hex $attr;
  /frameworks/minikin/tests/stresstest/
FontFamilyTest.cpp 61 << "Inconsistent Result: " << fontPath << "#" << ttcIndex << ": U+" << std::hex
62 << codePoint << " U+" << std::hex << vs
  /libcore/luni/src/test/java/libcore/java/util/
InvalidPropertiesFormatExceptionTest.java 46 String hex = "aced00057372002a6a6176612e7574696c2e496e76616c696450726f" local
94 Object obj = SerializationTester.deserializeHex(hex);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_float.pass.cpp 81 hex(ios);
93 hex(ios);
105 hex(ios);
117 hex(ios);
129 hex(ios);
141 hex(ios);
153 hex(ios);
165 hex(ios);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
cons.s 5 .global binary, octal, hex, field
8 hex: .word 0Fh, 10H label

Completed in 986 milliseconds

1 2 3 4 5 67 8 91011>>