Lines Matching full:match
60 URX_BACKTRACK = 1, // Force a backtrack, as if a match test had failed.
62 URX_ONECHAR = 3, // Value field is the 21 bit unicode char to match
74 URX_FAIL = 14, // Stop match operation, No match.
80 // Used in (x)+, breaks loop on zero length match.
132 URX_ONECHAR_I = 39, // Test for case-insensitive match of a literal character.
147 // Param 1: The minimum length of the look-behind match
148 // Param 2: The max length of the look-behind match
151 // Check that match ended at the right spot,
155 // Param 1: The minimum length of the look-behind match
156 // Param 2: The max length of the look-behind match
160 // Check that the match ended at the right spot.
171 // 0: Normal (. doesn't match new-line) mode.
254 // The sets are accessed by the match engine for things like \w (word boundary)
279 // Match Engine State Stack Frame Layout.
296 // Start-Of-Match type. Used by find() to quickly scan to positions where a
297 // match might start before firing up the full match engine.
301 START_CHAR, // Match starts with a literal code point.
302 START_SET, // Match starts with something matching a set.
303 START_START, // Match starts at start of buffer only (^ or \A)
304 START_LINE, // Match starts with ^ in multi-line mode.
305 START_STRING // Match starts with a literal string.