Searched refs:escape_bytes (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/regex-automata/tests/ |
D | collection.rs | 384 escape_bytes(&self.test.input), in fmt() 434 Err(_) => escape_bytes(bytes), in nice_raw_bytes() 438 fn escape_bytes(bytes: &[u8]) -> String { in escape_bytes() function
|
/external/llvm-project/llvm/utils/gdb-scripts/ |
D | prettyprinters.py | 19 def escape_bytes(val, l): function 30 return escape_bytes(begin.cast(gdb.lookup_type('char').pointer()), self.val['Size']) 39 return escape_bytes(self.val['Data'], self.val['Length'])
|
/external/rust/crates/regex-syntax/src/hir/literal/ |
D | mod.rs | 928 Err(_) => escape_bytes(bytes), in escape_unicode() 950 fn escape_bytes(bytes: &[u8]) -> String { in escape_bytes() function 979 use super::{escape_bytes, Literal, Literals}; 993 .push(ULiteral { v: escape_bytes(&blit), cut: blit.is_cut() }); in escape_lits() 1633 assert_eq!($expected, escape_bytes(got)); 1668 assert_eq!($expected, escape_bytes(got));
|
/external/rust/crates/regex/src/ |
D | re_bytes.rs | 1002 fn escape_bytes(bytes: &[u8]) -> String { in fmt() function 1023 let m = m.map(|(s, e)| escape_bytes(&self.0.text[s..e])); in fmt()
|