Lines Matching refs:Match

56 SBOL        BOL,        no        ; Match "" at beginning of line: /^/, /\A/
60 SEOL EOL, no ; Match "" at end of line: /$/
62 EOS EOL, no ; Match "" at end of string: /\z/
64 #* Match Start Anchors:
75 BOUNDU BOUND, no ; Match "" at any boundary of a given type using /u rules.
76 BOUNDA BOUND, no ; Match "" at any boundary between \w\W or \W\w, where \w is [_a-…
80 NBOUNDU NBOUND, no ; Match "" at any non-boundary of a given type using using /u rul…
81 NBOUNDA NBOUND, no ; Match "" betweeen any \w\w or \W\W, where \w is [_a-zA-Z0-9]
84 REG_ANY REG_ANY, no 0 S ; Match any one character (except newline).
85 SANY REG_ANY, no 0 S ; Match any one character.
86 ANYOF ANYOF, sv charclass S ; Match character in (or not in) this class, single char …
130 CLUMP CLUMP, no 0 V ; Match any extended grapheme cluster sequence
143 BRANCH BRANCH, node 1 V ; Match this alternative, or the next...
151 EXACT EXACT, str ; Match this string (flags field is the length).
155 LEXACT EXACT, len:str 1; Match this long string (preceded by length; flags unused).
197 TRIE TRIE, trie 1 ; Match many EXACT(F[ALU]?)? at once. flags==type
206 NOTHING NOTHING, no ; Match empty string.
208 TAIL NOTHING, no ; Match empty string. Can jump here from outside.
217 STAR STAR, node 0 V ; Match this (simple) thing 0 or more times: /A{0,}B/ where A is …
218 PLUS PLUS, node 0 V ; Match this (simple) thing 1 or more times: /A{1,}B/ where A is …
220 CURLY CURLY, sv 3 V ; Match this (simple) thing {n,m} times: /A{m,n}B/ where A is wid…
223 CURLYX CURLY, sv 3 V ; Match/Capture this complex thing {n,m} times.
236 REF REF, num 2 V ; Match some already matched string
237 REFF REF, num 2 V ; Match already matched string, using /di rules.
238 REFFL REF, num 2 V ; Match already matched string, using /li rules.
242 REFFU REF, num 2 V ; Match already matched string, usng /ui.
243 REFFA REF, num 2 V ; Match already matched string, using /aai rules.
247 REFN REF, no-sv 2 V ; Match some already matched string
248 REFFN REF, no-sv 2 V ; Match already matched string, using /di rules.
249 REFFLN REF, no-sv 2 V ; Match already matched string, using /li rules.
250 REFFUN REF, num 2 V ; Match already matched string, using /ui rules.
251 REFFAN REF, num 2 V ; Match already matched string, using /aai rules.