Home
last modified time | relevance | path

Searched refs:char (Results 76 - 100 of 245) sorted by relevance

12345678910

/third_party/openssl/providers/common/der/
H A Doids_to_c.pm41 extern const unsigned char ossl_der_oid_${C_name}[DER_OID_SZ_${C_name}];
59 const unsigned char ossl_der_oid_${C_name}[DER_OID_SZ_${C_name}] = {
/third_party/rust/crates/unicode-ident/generate/src/
H A Dparse.rs13 pub fn is_xid_start(&self, ch: char) -> bool { in is_xid_start()
17 pub fn is_xid_continue(&self, ch: char) -> bool { in is_xid_continue()
H A Dwrite.rs37 let ch = (i * 32 + j) as char; in output()
53 let ch = (i * 32 + j) as char; in output()
/base/hiviewdfx/hisysevent/interfaces/rust/innerkits/src/
H A Dsys_event_manager.rs144 .trim_end_matches(char::from(0)).to_string() in get_domain()
150 .trim_end_matches(char::from(0)).to_string() in get_event_name()
172 .trim_end_matches(char::from(0)).to_string() in get_time_zone()
216 .trim_end_matches(char::from(0)).to_owned() in get_level()
225 .trim_end_matches(char::from(0)); in get_tag()
235 .trim_end_matches(char::from(0)); in get_json_str()
/third_party/rust/crates/clap/src/
H A Dmacros.rs183 ( @char $val:ident ) => {{
193 ( @char $val:literal ) => {{
194 let ident_or_char_literal: char = $val;
197 ( @char ) => {{
259 .short($crate::arg_impl! { @char $short })
278 .short($crate::arg_impl! { @char $short })
/third_party/rust/crates/nom/src/
H A Dstr.rs155 fn is_alphabetic(c: char) -> bool { in is_alphabetic()
203 fn till_s(c: char) -> bool { in take_till_s_succeed()
238 fn while_s(c: char) -> bool { in take_while_succeed_none()
304 fn while_s(c: char) -> bool { in take_while_succeed_some()
363 fn while1_s(c: char) -> bool { in take_while1_succeed()
453 fn while1_s(c: char) -> bool { in take_while1_fail()
/third_party/rust/crates/strsim-rs/src/
H A Dlib.rs5 use std::char;
136 type Item = char;
278 let mut prev_a_char = char::MAX; in osa_distance()
279 let mut prev_b_char = char::MAX; in osa_distance()
414 /// Returns an Iterator of char tuples.
415 fn bigrams(s: &str) -> impl Iterator<Item=(char, char)> + '_ { in bigrams()
437 let a: String = a.chars().filter(|&x| !char::is_whitespace(x)).collect(); in bigrams()
438 let b: String = b.chars().filter(|&x| !char::is_whitespace(x)).collect(); in bigrams()
460 let mut a_bigrams: HashMap<(char, cha in bigrams()
[all...]
/third_party/node/lib/internal/source_map/
H A Dsource_map.js300 * @param {string} char
303 function isSeparator(char) {
304 return char === ',' || char === ';';
/third_party/rust/crates/regex/regex-syntax/src/unicode_tables/
H A Dcase_folding_simple.rs9 pub const CASE_FOLDING_SIMPLE: &'static [(char, &'static [char])] = &[
/third_party/icu/tools/colprobe/
H A DextractCollationData.pl166 my $char = substr($rest, $j, 1);
167 my $charVal = ord($char);
171 $name .= $codes.$names." $char ";
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/resources/
H A Ddifferential_fuzz_library.js84 const char = charCodeAt.call(str, i);
85 hash = ((hash << 5) - hash) + char;
/third_party/python/Lib/
H A Dstat.py160 for bit, char in table:
162 perm.append(char)
/third_party/rust/crates/unicode-ident/benches/
H A Dxid.rs34 let nonascii = Uniform::new_inclusive(0x80 as char, char::MAX); in gen_string()
/test/testfwk/developer_test/local_coverage/interface_coverage/
H A Dinterface_coverage_gcov_lcov.py258 for index, char in enumerate(content):
259 if "<" == char:
262 parentheses_list_left.append(char)
264 if ">" == char:
265 parentheses_list_right.append(char)
/third_party/rust/crates/log/src/kv/
H A Dvalue.rs356 fn visit_char(&mut self, value: char) -> Result<(), value_bag::Error> { in visit_borrowed_str()
567 impl_to_value_primitive![usize, u8, u16, u32, u64, isize, i8, i16, i32, i64, f32, f64, char, bool,];
586 #[doc = "Try convert this value into a `char`."]
587 to_char -> char,
697 fn visit_char(&mut self, value: char) -> Result<(), Error> { in visit_borrowed_str()
758 fn visit_char(&mut self, value: char) -> Result<(), Error> { in visit_borrowed_str()
832 fn char() -> impl Iterator<Item = Value<'static>> { in unsigned() functions
914 for v in bool().chain(str()).chain(char()) { in test_to_number()
956 .chain(char()) in test_to_bool()
964 for v in char() { in test_to_char()
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_calltip.py336 for char in 'abc':
348 for char in '(()())':
349 self.text.insert('insert', char)
357 for char in '(()())':
358 self.text.insert('insert', char)
/third_party/python/Lib/test/
H A Dtest_difflib.py497 for char in [' ', '\t']:
498 self.assertTrue(difflib.IS_CHARACTER_JUNK(char), repr(char))
501 for char in ['a', '#', '\n', '\f', '\r', '\v']:
502 self.assertFalse(difflib.IS_CHARACTER_JUNK(char), repr(char))
H A Dtest_urllib.py32 def hexescape(char):
33 """Escape char as RFC 2396 specifies"""
34 hex_repr = hex(ord(char))[2:].upper()
378 char = chr(char_no)
379 schemeless_url = f"//localhost:7777/test{char}/"
388 escaped_char_repr = repr(char).replace('\\', r'\\')
398 self.assertNotIn(char, resp.geturl())
431 char = chr(char_no)
432 schemeless_url = f"//localhost{char}/test/"
435 escaped_char_repr = repr(char)
[all...]
/third_party/rust/crates/nom/src/bytes/
H A Dcomplete.rs393 /// `&str` it will take a number of `char`'s, whereas for a `&[u8]` it will
511 control_char: char, in escaped()
625 control_char: char, in escaped_transform()
714 super::take_while_m_n(1, 4, |c: char| c.is_alphabetic())("øn"); in complete_take_while_m_n_utf8_all_matching()
721 super::take_while_m_n(1, 1, |c: char| c.is_alphabetic())("øn"); in complete_take_while_m_n_utf8_all_matching_substring()
746 char('"'), in unquote()
748 char('"'), in unquote()
/third_party/rust/crates/nom/src/number/
H A Dstreaming.rs5 use crate::character::streaming::{char, digit1, sign};
1329 let digit = v as char; in hex_u32()
1366 opt(alt((char('+'), char('-')))), in recognize_float()
1368 map(tuple((digit1, opt(pair(char('.'), opt(digit1))))), |_| ()), in recognize_float()
1369 map(tuple((char('.'), digit1)), |_| ()) in recognize_float()
1372 alt((char('e'), char('E'))), in recognize_float()
1373 opt(alt((char('+'), char(' in recognize_float()
[all...]
H A Dcomplete.rs5 use crate::character::complete::{char, digit1, sign};
1359 let digit = v as char; in hex_u32()
1397 opt(alt((char('+'), char('-')))), in recognize_float()
1399 map(tuple((digit1, opt(pair(char('.'), opt(digit1))))), |_| ()), in recognize_float()
1400 map(tuple((char('.'), digit1)), |_| ()) in recognize_float()
1403 alt((char('e'), char('E'))), in recognize_float()
1404 opt(alt((char('+'), char(' in recognize_float()
[all...]
/third_party/rust/crates/serde/serde/src/de/
H A Dvalue.rs158 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
222 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
269 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str
307 primitive_deserializer!(char, "a `char`.", CharDeserializer, visit_char);
345 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
455 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
534 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
637 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
745 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char st
[all...]
/third_party/rust/crates/syn/src/
H A Dwhitespace.rs62 fn is_whitespace(ch: char) -> bool { in is_whitespace()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dgen_overlay_fonts.py194 char = chars[charIndex]
199 face.load_char(char)
/third_party/typescript/tests/baselines/reference/
H A DconstructorWithIncompleteTypeAnnotation.js81 var char = 'c', \u0066 = '\u0066', hexchar = '\x42' !=
87 var con = char + f + hexchar + float.toString() + float2.toString() + reg.toString() + objLit + weekday;
373 var char = 'c', \u0066 = '\u0066', hexchar = '\x42' !=
379 var con = char + f + hexchar + float.toString() + float2.toString() + reg.toString() + objLit + weekday;

Completed in 20 milliseconds

12345678910