/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;
|
Target.java | 187 String hex = Integer.toHexString(c|0x10000).toUpperCase().substring(1,5); local 189 buf.append(hex); 321 * with bitsets. I.e., convert bytes to hex string. 342 String hex = Integer.toHexString(v|0x10000).substring(1,5); local 343 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();
|
ostreams.h | 50 OStream& hex(); 68 OStream& hex(OStream& os); // NOLINT(runtime/references)
|
/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...] |
/art/runtime/entrypoints/quick/ |
quick_trampoline_entrypoints_test.cc | 50 << type << " core spills=" << std::hex << frame_info.CoreSpillMask() << " fp spills=" 59 " differs for " << type << " core spills=" << std::hex << frame_info.CoreSpillMask() <<
|
/external/chromium_org/third_party/skia/src/utils/ |
SkParseColor.cpp | 459 uint32_t hex; local 460 const char* end = SkParse::FindHex(value + 1, &hex); 466 unsigned a = len == 4 ? nib2byte(hex >> 12) : oldAlpha; 467 unsigned r = nib2byte((hex >> 8) & 0xF); 468 unsigned g = nib2byte((hex >> 4) & 0xF); 469 unsigned b = nib2byte(hex & 0xF); 474 hex |= oldAlpha << 24; 475 *colorPtr = hex;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/ |
multisect2.asm | 25 and dl, 0Fh ; mask off a single (hex) digit
|
/external/chromium_org/ui/events/keycodes/dom4/ |
keycode_converter_unittest.cc | 73 << " duplicate of USB code 0x" << std::hex << std::setfill('0') 82 << " duplicate of native code 0x" << std::hex << std::setfill('0')
|
/external/chromium_org/win8/metro_driver/ |
metro_driver.cc | 28 LOG(ERROR) << "VEH: Metro error 0x" << std::hex << info[0] << ": " << msg; 31 LOG(ERROR) << "VEH: Metro old error 0x" << std::hex << info[0]
|
/external/doclava/src/com/google/doclava/ |
FieldInfo.java | 346 String hex = null; local 353 hex = String.format("0x%02x", val); 356 hex = String.format("0x%04x", val); 363 hex = String.format("0x%08x", val); 366 hex = String.format("0x%016x", val); 369 hex = String.format("0x%04x", val); 376 if (dec != null && hex != null) { 378 data.setValue(base + ".constantValue.hex", Doclava.escape(hex));
|
/external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
put_long_long.pass.cpp | 116 hex(ios); 125 hex(ios); 135 hex(ios); 147 hex(ios); 159 hex(ios); 231 hex(ios); 244 hex(ios); 257 hex(ios);
|