Lines Matching refs:u8
15 pub(crate) const COLON: u8 = b':';
16 pub(crate) const COMMA: u8 = b',';
17 pub(crate) const DECIMAL_POINT: u8 = b'.';
18 pub(crate) const LEFT_CURLY_BRACKET: u8 = b'{';
19 pub(crate) const LEFT_SQUARE_BRACKET: u8 = b'[';
20 pub(crate) const MINUS: u8 = b'-';
21 pub(crate) const PLUS: u8 = b'+';
22 pub(crate) const RIGHT_CURLY_BRACKET: u8 = b'}';
23 pub(crate) const RIGHT_SQUARE_BRACKET: u8 = b']';
24 pub(crate) const SPACE: u8 = b' ';
26 pub(crate) const ZERO: u8 = b'0';
27 pub(crate) const ONE: u8 = b'1';
28 pub(crate) const NINE: u8 = b'9';
29 pub(crate) const A_LOWER: u8 = b'a';
30 pub(crate) const A_UPPER: u8 = b'A';
31 pub(crate) const E_LOWER: u8 = b'e';
32 pub(crate) const E_UPPER: u8 = b'E';
33 pub(crate) const F_LOWER: u8 = b'f';
34 pub(crate) const F_UPPER: u8 = b'F';
35 pub(crate) const N_LOWER: u8 = b'n';
36 pub(crate) const T_LOWER: u8 = b't';
38 pub(crate) const WHITE_SPACE_SET: [u8; 4] =
39 [SPACE, HT_UNICODE as u8, LF_UNICODE as u8, CR_UNICODE as u8];
41 pub(crate) const BS: u8 = b'b';
43 pub(crate) const BS_UNICODE_U8: u8 = 0x08;
44 pub(crate) const HT: u8 = b't';
46 pub(crate) const HT_UNICODE_U8: u8 = 0x09;
47 pub(crate) const FF: u8 = b'f';
49 pub(crate) const FF_UNICODE_U8: u8 = 0x0c;
50 pub(crate) const CR: u8 = b'r';
52 pub(crate) const CR_UNICODE_U8: u8 = 0x0d;
53 pub(crate) const LF: u8 = b'n';
55 pub(crate) const LF_UNICODE_U8: u8 = 0x0a;
56 pub(crate) const UNICODE: u8 = b'u';
57 pub(crate) const QUOTATION_MARK: u8 = b'\"';
58 pub(crate) const REVERSE_SOLIDUS: u8 = b'\\';
59 pub(crate) const SOLIDUS: u8 = b'/';
61 pub(crate) const JSON_REVERSE_SOLIDUS: &[u8] = b"\\\\";
62 pub(crate) const JSON_QUOTATION_MARK: &[u8] = b"\\\"";
63 pub(crate) const JSON_BS: &[u8] = b"\\b";
64 pub(crate) const JSON_FF: &[u8] = b"\\f";
65 pub(crate) const JSON_LF: &[u8] = b"\\n";
66 pub(crate) const JSON_CR: &[u8] = b"\\r";
67 pub(crate) const JSON_HT: &[u8] = b"\\t";
69 pub(crate) const NULL_STR: &[u8] = b"null";
70 pub(crate) const NULL_LEFT_STR: &[u8] = b"ull";
71 pub(crate) const FALSE_STR: &[u8] = b"false";
72 pub(crate) const FALSE_LEFT_STR: &[u8] = b"alse";
73 pub(crate) const TRUE_STR: &[u8] = b"true";
74 pub(crate) const TRUE_LEFT_STR: &[u8] = b"rue";
75 pub(crate) const UNICODE_START_STR: &[u8] = b"\\u";
76 pub(crate) const COLON_STR: &[u8] = b":";
77 pub(crate) const COMMA_STR: &[u8] = b",";
78 pub(crate) const FOUR_SPACES_STR: &[u8] = b" ";
79 pub(crate) const LEFT_CURLY_BRACKET_STR: &[u8] = b"{";
80 pub(crate) const LEFT_SQUARE_BRACKET_STR: &[u8] = b"[";
81 pub(crate) const LINE_FEED_STR: &[u8] = b"\n";
82 pub(crate) const QUOTATION_MARK_STR: &[u8] = b"\"";
83 pub(crate) const RIGHT_CURLY_BRACKET_STR: &[u8] = b"}";
84 pub(crate) const RIGHT_SQUARE_BRACKET_STR: &[u8] = b"]";
85 pub(crate) const SPACE_STR: &[u8] = b" ";
122 Special(&'a [u8]),