Home
last modified time | relevance | path

Searched refs:escape_bytes (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/regex-automata/tests/
Dcollection.rs384 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/
Dprettyprinters.py19 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/
Dmod.rs928 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/
Dre_bytes.rs1002 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()