Lines Matching defs:regexp
1 /* regexp.h
12 * Definitions etc. for regexp(3) routines.
14 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
58 struct regexp;
122 = for apidoc AyT||regexp
123 The regexp/REGEXP struct, see L<perlreapi> for further documentation
130 regexp's data array based on the data item's type.
136 typedef struct regexp {
146 const struct regexp_engine* engine; /* what engine created this regexp? */
211 } regexp;
245 =for apidoc Amh||RXp_OFFS_START|const regexp * rx|U32 n
246 Same as RX_OFFS_START() but operates on a C<struct regexp *> instead of
254 =for apidoc Amh||RXp_OFFS_END|const regexp * rx|U32 n
255 Same as RX_OFFS_END() but operates on a C<struct regexp *> instead of
263 =for apidoc Amh||RXp_OFFS_VALID|const regexp * rx|U32 n
264 Same as RX_OFFS_VLAID() but operates on a C<struct regexp *> instead of
384 /* Flags stored in regexp->extflags
385 * These are used by code external to the regexp engine
496 * _RXf_PMf_SHIFT_NEXT so that things won't compile. Then come to regexp.h and
513 * For the regexp bits, PL_reg_extflags_name[] in regnodes.h has a comment
775 regexp *rex;