| /third_party/libcoap/examples/ |
| H A D | etsi_testcases.sh | 52 ($timeoutcmd $clienttimeout cat $testfifo | if read -n 1 char; then echo "output: $char" ; fi) 2>/dev/null
|
| /third_party/rust/crates/heck/src/ |
| H A D | lib.rs | 75 s.split(|letter: char| !letter.is_ascii_alphanumeric()) in get_iterator()
|
| /third_party/rust/crates/nom/examples/ |
| H A D | json_iterator.rs | 6 character::complete::{alphanumeric1 as alphanumeric, char, one_of}, 231 preceded(char('\"'), cut(terminated(parse_str, char('\"')))), in parse_str() 243 char('['), in boolean() 245 map(separated_list0(preceded(sp, char(',')), value), |_| ()), in boolean() 246 preceded(sp, char(']')), in boolean() 253 separated_pair(preceded(sp, string), cut(preceded(sp, char(':'))), value)(i) in boolean() 260 char('{'), in hash() 262 map(separated_list0(preceded(sp, char(',')), key_value), |_| ()), in hash() 263 preceded(sp, char('}')), in hash() [all...] |
| /third_party/python/Tools/gdb/ |
| H A D | libpython.py | 55 return gdb.lookup_type('char').pointer() # char* 59 return gdb.lookup_type('unsigned char').pointer() # unsigned char* 123 for char in filename: 125 if 0xDC80 <= ord(char) <= 0xDCFF: 126 byte = chr(ord(char) - 0xDC00) 128 byte = char.encode(encoding) 1363 def _unichr_is_printable(char): 1365 if char [all...] |
| /third_party/skia/third_party/externals/brotli/research/ |
| H A D | brotlidump.py | 33 """Show string or char. 1227 """Adjust the context for output char (as int).""" 1563 char = str(symbol) 1564 if char in '{}': char *= 2 1566 'Length for {} is {{0.index}} bits'.format(char) 1705 LSB6: lower 6 bits of last char 1706 MSB6: upper 6 bits of last char 1708 upper 4 bits depend on category of last char: 1711 lower 2 bits depend on category of 2nd last char [all...] |
| /third_party/curl/scripts/ |
| H A D | checksrc.pl | 821 # check for 'char * name' 822 if(($l =~ /(^.*(char|int|long|void|CURL|CURLM|CURLMsg|[cC]url_[A-Za-z_]+|struct [a-zA-Z_]+) *(\*+)) (\w+)/) && ($4 !~ /^(const|volatile)$/)) { 827 # check for 'char*' 828 if(($l =~ /(^.*(char|int|long|void|curl_slist|CURL|CURLM|CURLMsg|curl_httppost|sockaddr_in|FILE)\*)/)) {
|
| /third_party/node/deps/npm/node_modules/jsonparse/ |
| H A D | jsonparse.js | 68 this.bytes_remaining = 0; // number of bytes remaining in multi byte utf8 char to read after split boundary 69 this.bytes_in_sequence = 0; // bytes in multi byte utf8 char to read 92 proto.appendStringChar = function (char) { 98 this.stringBuffer[this.stringBufferOffset++] = char; 159 // check for carry over of a multi byte char split between data chunks 176 if ((this.bytes_in_sequence + i) > buffer.length) { // if bytes needed to complete char fall outside buffer length, we have a boundary split
|
| /third_party/node/deps/openssl/openssl/crypto/rc4/asm/ |
| H A D | rc4-parisc.pl | 63 $SZ = ($1=~/char$/) ? 1 : 4; 316 .STRINGZ "rc4(4x,`$SZ==1?"char":"int"`)"
|
| /third_party/node/deps/openssl/openssl/util/ |
| H A D | mkerr.pl | 462 void ERR_${lib}_error(int function, int reason, const char *file, int line); 624 ${st}void ERR_${lib}_error(int function, int reason, const char *file, int line)
|
| /third_party/openssl/util/ |
| H A D | mkerr.pl | 462 void ERR_${lib}_error(int function, int reason, const char *file, int line); 624 ${st}void ERR_${lib}_error(int function, int reason, const char *file, int line)
|
| /third_party/openssl/crypto/rc4/asm/ |
| H A D | rc4-parisc.pl | 63 $SZ = ($1=~/char$/) ? 1 : 4; 316 .STRINGZ "rc4(4x,`$SZ==1?"char":"int"`)"
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
| H A D | html_printer.py | 350 for col, char in enumerate(line): 366 self.f.write(html.escape(char))
|
| /third_party/rust/crates/rustix/examples/ |
| H A D | stdio.rs | 490 format!("^{}", (b + 0x40) as char) in key() 494 format!("{}", b as char) in key()
|
| /third_party/rust/crates/nom/src/bytes/ |
| H A D | streaming.rs | 527 control_char: char, in escaped() 629 control_char: char, in escaped_transform()
|
| /third_party/rust/crates/proc-macro2/src/ |
| H A D | parse.rs | 6 use core::char; 30 pub fn starts_with_char(&self, ch: char) -> bool { in starts_with_char() 36 Pattern: FnMut(char) -> bool, in starts_with_fn() 152 fn is_whitespace(ch: char) -> bool { in is_whitespace() 641 I: Iterator<Item = (usize, char)>, in backslash_x_char() 659 I: Iterator<Item = (usize, char)>, in backslash_x_nonzero() 670 fn backslash_u<I>(chars: &mut I) -> Result<char, Reject> in backslash_u() 672 I: Iterator<Item = (usize, char)>, in backslash_u() 683 '}' if len > 0 => return char::from_u32(value).ok_or(Reject), in backslash_u() 892 fn punct_char(input: Cursor) -> PResult<char> { in punct_char() [all...] |
| H A D | fallback.rs | 372 // Look up offset of the largest already-computed char index that is in source_text() 795 pub(crate) fn is_ident_start(c: char) -> bool { 799 pub(crate) fn is_ident_continue(c: char) -> bool { 1007 pub fn character(t: char) -> Literal { in character() 1036 b'\x20'..=b'\x7E' => escaped.push(b as char), in byte_string()
|
| /third_party/rust/crates/rust-cexpr/src/ |
| H A D | expr.rs | 313 match op[0] as char { in mul_div_rem() 332 match op[0] as char { in add_sub()
|
| /third_party/node/deps/npm/node_modules/color-convert/ |
| H A D | conversions.js | 630 colorString = colorString.split('').map(char => { 631 return char + char;
|
| /third_party/mksh/ |
| H A D | check.pl | 872 local($lineno, $char) = (1, 1); 891 $char++; 894 $char = 1; 897 return "first difference: line $lineno, char $char (wanted " .
|
| /third_party/rust/crates/serde/serde/src/private/ |
| H A D | ser.rs | 68 Unsupported::Char => formatter.write_str("a char"), in fmt() 161 fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error> { in serialize_char() 444 Char(char), 622 fn serialize_char(self, v: char) -> Result<Content, E> { in serialize_char() 1075 fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error> { in serialize_char()
|
| /third_party/PyYAML/yaml/ |
| H A D | _yaml.pyx | 5 cdef const char *value 432 value = PyUnicode_DecodeUTF8(<char *>token.data.scalar.value, 564 value = PyUnicode_DecodeUTF8(<char *>event.data.scalar.value, 746 value = PyUnicode_DecodeUTF8(<char *>self.parsed_event.data.scalar.value, 863 cdef int input_handler(void *data, unsigned char *buffer, size_t size, size_t *read) except 0: 1385 cdef int output_handler(void *data, unsigned char *bufferu, size_t size) except 0: 1387 cdef char *buffer 1388 buffer = <char *>bufferu
|
| /third_party/qrcodegen/rust/examples/ |
| H A D | qrcodegen-demo.rs | 200 let c: char = if qr.get_module(x, y) { '█' } else { ' ' }; in print_qr()
|
| /third_party/rust/crates/syn/src/ |
| H A D | lit.rs | 332 pub fn new(value: char, span: Span) -> Self { in new() 343 pub fn value(&self) -> char { in value() 1023 use std::char; 1154 fn next_chr(s: &str) -> char { in next_chr() 1186 char::from_u32(u32::from(byte)).unwrap() in parse_lit_str_cooked() 1365 pub(crate) fn parse_lit_char(mut s: &str) -> (char, Box<str>) { 1378 char::from_u32(u32::from(byte)).unwrap() 1429 fn backslash_u(mut s: &str) -> (char, &str) { in backslash_u() 1462 if let Some(ch) = char::from_u32(ch) { in backslash_u()
|
| /third_party/python/Lib/test/ |
| H A D | test_buffer.py | 156 def randrange_fmt(mode, char, obj): 159 x = randrange(*fmtdict[mode][char]) 160 if char == 'c': 165 if char == '?': 167 if char == 'f' or char == 'd': 168 x = struct.pack(char, x) 169 x = struct.unpack(char, x)[0] 195 char = choice(tuple(fmtdict[mode])) 197 xfmt += (char * in [all...] |
| H A D | test_bigmem.py | 716 char = "\uDCBA" 717 s = char * size 721 self.assertEqual(len(r), 2 + (len(f(char)) - 2) * size) 729 char = "\U0001DCBA" 730 s = char * size 734 self.assertEqual(len(r), 2 + (len(f(char)) - 2) * size)
|