/external/chromium_org/media/formats/webm/ |
webm_audio_client.cc | 103 MEDIA_LOG(log_cb_) << "Multiple values for id " << std::hex << id 132 MEDIA_LOG(log_cb_) << "Multiple values for id " << std::hex << id
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tstnorm.cpp | 323 errln("FAIL: " + hex(a) + " x DECOMP_COMPAT => " + 324 hex(b) + " x COMPOSE => " + 325 hex(c)); 327 logln("Ok: " + hex(a) + " x DECOMP_COMPAT => " + 328 hex(b) + " x COMPOSE => " + 329 hex(c)); 367 logln((UnicodeString)"Ok: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b)); 369 errln((UnicodeString)"FAIL: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b) 486 UnicodeString BasicNormalizerTest::hex(UChar ch) { function in class:BasicNormalizerTest 491 UnicodeString BasicNormalizerTest::hex(const UnicodeString& s) { function in class:BasicNormalizerTest [all...] |
/external/icu/icu4c/source/test/intltest/ |
tstnorm.cpp | 323 errln("FAIL: " + hex(a) + " x DECOMP_COMPAT => " + 324 hex(b) + " x COMPOSE => " + 325 hex(c)); 327 logln("Ok: " + hex(a) + " x DECOMP_COMPAT => " + 328 hex(b) + " x COMPOSE => " + 329 hex(c)); 367 logln((UnicodeString)"Ok: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b)); 369 errln((UnicodeString)"FAIL: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b) 486 UnicodeString BasicNormalizerTest::hex(UChar ch) { function in class:BasicNormalizerTest 491 UnicodeString BasicNormalizerTest::hex(const UnicodeString& s) { function in class:BasicNormalizerTest [all...] |
/external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/ |
get_double.pass.cpp | 92 hex(ios); 104 hex(ios); 116 hex(ios); 128 hex(ios); 140 hex(ios); 152 hex(ios); 164 hex(ios); 176 hex(ios);
|
get_long_double.pass.cpp | 77 hex(ios); 89 hex(ios); 101 hex(ios); 113 hex(ios); 125 hex(ios); 137 hex(ios); 149 hex(ios); 161 hex(ios);
|
/external/lldb/test/expression_command/issue_11588/ |
Test11588.py | 67 substrs = ["0x",hex(addr)[2:].rstrip("L")]) # Remove trailing 'L' if it exists 73 hex(addr)[2:].rstrip("L"),
|
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 249 String hex = in.substring(pos, pos + 4); local 251 return (char) Integer.parseInt(hex, 16); 594 * Returns the integer [0..15] value for the given hex character, or -1 595 * for non-hex input. 597 * @param hex a character in the ranges [0-9], [A-F] or [a-f]. Any other 600 public static int dehexchar(char hex) { 601 if (hex >= '0' && hex <= '9') { 602 return hex - '0'; 603 } else if (hex >= 'A' && hex <= 'F') [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/ |
get_double.pass.cpp | 92 hex(ios); 104 hex(ios); 116 hex(ios); 128 hex(ios); 140 hex(ios); 152 hex(ios); 164 hex(ios); 176 hex(ios);
|
get_long_double.pass.cpp | 77 hex(ios); 89 hex(ios); 101 hex(ios); 113 hex(ios); 125 hex(ios); 137 hex(ios); 149 hex(ios); 161 hex(ios);
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
instant_iframe_validation.js | 12 * Converts an RGB color number to a hex color string if valid. 13 * @param {number} color A 6-digit hex RGB color code as a number. 18 // range for an RGB hex color.
|
/external/chromium_org/net/quic/test_tools/ |
quic_test_utils.cc | 405 string hex; local 412 hex += mark ? '*' : ' '; 413 hex += kHexChars[(*p & 0xf0) >> 4]; 414 hex += kHexChars[*p & 0x0f]; 415 hex += mark ? '*' : ' '; 417 hex += " "; 420 hex = hex + " "; 423 hex += (*p >= 0x20 && *p <= 0x7f) ? (*p) : '.'; 425 hex = hex + '\n' [all...] |
/dalvik/opcode-gen/ |
opcode-gen.awk | 74 constName[i], hex[i]); 294 hex[idx] = parts[1]; 458 # Convert a hex value to an int. 459 function parseHex(hex, result, chars, count, c, i) { 461 hex = tolower(hex); 462 count = split(hex, chars, ""); 467 printf("bogus hex value: %s\n", hex) >"/dev/stderr";
|
/external/chromium_org/media/audio/win/ |
audio_low_latency_output_win.cc | 267 PLOG(ERROR) << "Failed to start output streaming: " << std::hex << hr; 282 PLOG(ERROR) << "Failed to stop output streaming: " << std::hex << hr; 293 PLOG(ERROR) << "Failed to reset streaming: " << std::hex << hr; 368 << std::hex << hr; 428 << std::hex << hr; 469 << std::hex << hr; 545 VLOG(2) << "stream_flags: 0x" << std::hex << stream_flags; 594 VLOG(1) << "IAudioClient::SetEventHandle: " << std::hex << hr; 602 VLOG(1) << "IAudioClient::GetBufferSize: " << std::hex << hr;
|
audio_device_listener_win.cc | 47 DVLOG(1) << "Failed to retrieve the device id: " << std::hex << hr; 66 << std::hex << hr; 86 << "failed: " << std::hex << hr;
|
/external/chromium_org/net/third_party/nss/ssl/ |
ssltrace.c | 15 static const char *hex = "0123456789abcdef"; variable 54 *bp++ = hex[(ch >> 4) & 0xf]; 55 *bp++ = hex[ch & 0xf]; 96 * b) It dumps only hex, not ASCII. 113 *bp++ = hex[(ch >> 4) & 0xf]; 114 *bp++ = hex[ch & 0xf];
|
/external/chromium_org/third_party/libxml/src/ |
genUnicode.py | 332 pline += "{%s, %s}" % (hex(low), hex(high)) 435 output.write("(code == %s)" % (hex(begin))) 438 hex(begin), hex(end)))
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
ActionScriptTarget.java | 66 * if the int is below 255, we encode as hex literal 78 // encode as hex 83 String hex = Integer.toHexString(v|0x10000).substring(1,5); local 84 return "\\u"+hex;
|
/external/chromium_org/chromeos/audio/ |
cras_audio_handler.cc | 217 << "0x" << std::hex << node_id; 394 << "0x" << std::hex << device_id << " mute=" << mute_on; 477 << "0x" << std::hex << node_id; 491 << "0x" << std::hex << node_id; 528 << "0x" << std::hex << active_input_node_id_; 533 << "0x" << std::hex << device->id << " mute=" << input_mute_on_; 544 << "0x" << std::hex << active_output_node_id_; 560 << "0x" << std::hex << node_id; 599 << "0x" << std::hex << active_input_node_id_ << " mute=false"; 603 << "0x" << std::hex << active_input_node_id_ << " mute=true" [all...] |
/external/chromium_org/media/formats/mp2t/ |
ts_packet.cc | 32 << std::hex << static_cast<int>(buf[idx]) << std::dec; 57 << std::hex << static_cast<int>(buf[0]) << std::dec; 211 << std::hex << stuffing_byte;
|
/external/chromium_org/remoting/host/win/ |
chromoting_module.cc | 130 << std::hex << result << std::dec << "."; 144 << std::hex << result << std::dec << "."; 155 << std::hex << result << std::dec << ".";
|
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
x509_obj.c | 75 static const char hex[17]="0123456789ABCDEF"; local 166 *(p++)=hex[(n>>4)&0x0f]; 167 *(p++)=hex[n&0x0f];
|
/external/chromium_org/v8/src/ |
ostreams.cc | 101 OStream& OStream::hex() { function in class:v8::internal::OStream 117 OStream& hex(OStream& os) { // NOLINT(runtime/references) function in namespace:v8::internal 118 return os.hex();
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
C_P_A_L_.py | 83 def hex(self): member in class:Color 87 return self.hex() 90 writer.simpletag("color", value=self.hex(), index=index)
|
/external/libedit/src/ |
parse.c | 179 const Char hex[] = STR("0123456789ABCDEF"); local 186 h = Strchr(hex, *p++); 190 c = (c << 4) | ((int)(h - hex));
|
/art/runtime/gc/allocator/ |
rosalloc.cc | 66 << std::hex << (intptr_t)base_ << ", end=" 67 << std::hex << (intptr_t)(base_ + capacity_) 98 LOG(INFO) << "RosAlloc::RosAlloc() : Inserted run 0x" << std::hex 126 << std::hex << reinterpret_cast<intptr_t>(fpr) 140 LOG(INFO) << "RosAlloc::AllocPages() : Inserted run 0x" << std::hex 200 << std::hex << reinterpret_cast<intptr_t>(new_free_page_run) 224 LOG(INFO) << "RosAlloc::AllocPages() : Erased run 0x" << std::hex << reinterpret_cast<intptr_t>(fpr) 237 LOG(INFO) << "RosAlloc::AllocPages() : Inserted run 0x" << std::hex 275 LOG(INFO) << "RosAlloc::AllocPages() : 0x" << std::hex << reinterpret_cast<intptr_t>(res) 305 << static_cast<int>(pm_type) << ", ptr=" << std::hex [all...] |