Home | History | Annotate | Download | only in pcre

Lines Matching refs:NLBLOCK

224 testing for newlines. NLBLOCK, PSSTART, and PSEND are defined in the various
235 ((NLBLOCK->nltype != NLTYPE_FIXED)? \
236 ((p) < NLBLOCK->PSEND && \
237 _pcre_is_newline((p), NLBLOCK->nltype, NLBLOCK->PSEND, &(NLBLOCK->nllen),\
240 ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
241 (p)[0] == NLBLOCK->nl[0] && \
242 (NLBLOCK->nllen == 1 || (p)[1] == NLBLOCK->nl[1]) \
249 ((NLBLOCK->nltype != NLTYPE_FIXED)? \
250 ((p) > NLBLOCK->PSSTART && \
251 _pcre_was_newline((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \
252 &(NLBLOCK->nllen), utf8)) \
254 ((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \
255 (p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \
256 (NLBLOCK->nllen == 1 || (p)[-NLBLOCK->nllen+1] == NLBLOCK->nl[1]) \