Home
last modified time | relevance | path

Searched refs:s_match (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/regex-automata/src/nfa/
Dcompiler.rs1037 fn s_match() -> State { in s_match() function
1063 assert_eq!(nfa.states[10], s_match()); in compile_unanchored_prefix()
1078 s_match(), in compile_unanchored_prefix()
1085 assert_eq!(build("").states, &[s_match(),]); in compile_empty()
1090 assert_eq!(build("a").states, &[s_byte(b'a', 1), s_match(),]); in compile_literal()
1093 &[s_byte(b'a', 1), s_byte(b'b', 2), s_match(),] in compile_literal()
1097 &[s_byte(0xE2, 1), s_byte(0x98, 2), s_byte(0x83, 3), s_match(),] in compile_literal()
1111 assert_eq!(nfa.states, &[s_byte(b'\xFF', 1), s_match(),]); in compile_literal()
1118 &[s_range(b'a', b'z', 1), s_match(),] in compile_class()
1122 &[s_sparse(&[(b'a', b'c', 1), (b'x', b'z', 1)]), s_match()] in compile_class()
[all …]
/external/mesa3d/src/compiler/glsl/
Ds_expression.h40 #define MATCH(list, pat) s_match(list, ARRAY_SIZE(pat), pat, false)
41 #define PARTIAL_MATCH(list, pat) s_match(list, ARRAY_SIZE(pat), pat, true)
176 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial);
Ds_expression.cpp199 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial) in s_match() function