Home | History | Annotate | Download | only in src

Lines Matching refs:lookbehind

2273   has_lookbehind  points to a boolean, set TRUE if a lookbehind is found
4108 /* ---- Lookbehind assertions ---- */
4110 /* (?< followed by = or ! is a lookbehind assertion. Otherwise (?< is the
7354 do a one-character lookbehind, and \A also behaves as if it does. */
7527 BOOL lookbehind;
7566 /* Remember if this is a lookbehind assertion, and if it is, save its length
7569 lookbehind = *code == OP_ASSERTBACK || *code == OP_ASSERTBACK_NOT;
7570 if (lookbehind)
7603 /* Insert OP_REVERSE if this is as lookbehind assertion. */
7605 if (lookbehind && lookbehindlength > 0)
7779 /* Set the lookbehind length (if not in a lookbehind the value will be zero)
8353 length of a lookbehind branch. It is called after (*ACCEPT) and (*FAIL) to find
8471 /* This is called for nested groups within a branch of a lookbehind whose
8539 /* Return a fixed length for a branch in a lookbehind, giving an error if the
8571 *errcodeptr = ERR35; /* Lookbehind is too complicated */
8913 * Set lengths in a lookbehind *
8916 /* This function is called for each lookbehind, to set the lengths in its
8949 /* The errorcode and offset may already be set from a nested lookbehind. */
9118 BOOL has_lookbehind = FALSE; /* Set TRUE if a lookbehind is found */