Home | History | Annotate | Download | only in dist

Lines Matching refs:REG_BADPAT

87   REG_BADPAT,  /* unrecognized character after (? */
88 REG_BADPAT, /* POSIX named classes are supported only within a class */
101 REG_BADPAT, /* unrecognized character after (?< */
103 REG_BADPAT, /* lookbehind assertion is not fixed length */
104 REG_BADPAT, /* malformed number or name after (?( */
105 REG_BADPAT, /* conditional group contains more than two branches */
106 REG_BADPAT, /* assertion expected after (?( */
107 REG_BADPAT, /* (?R or (?[+-]digits must be followed by ) */
110 REG_BADPAT, /* POSIX collating elements are not supported */
112 REG_BADPAT, /* spare error */
113 REG_BADPAT, /* character value in \x{} or \o{} is too large */
115 REG_BADPAT, /* invalid condition (?(0) */
116 REG_BADPAT, /* \C not allowed in lookbehind assertion */
118 REG_BADPAT, /* number after (?C is > 255 */
119 REG_BADPAT, /* closing ) for (?C expected */
121 REG_BADPAT, /* recursive call could loop indefinitely */
122 REG_BADPAT, /* unrecognized character after (?P */
123 REG_BADPAT, /* syntax error in subpattern name (missing terminator) */
124 REG_BADPAT, /* two named subpatterns have the same name */
125 REG_BADPAT, /* invalid UTF-8 string */
127 REG_BADPAT, /* support for \P, \p, and \X has not been compiled */
128 REG_BADPAT, /* malformed \P or \p sequence */
129 REG_BADPAT, /* unknown property name after \P or \p */
130 REG_BADPAT, /* subpattern name is too long (maximum 32 characters) */
131 REG_BADPAT, /* too many named subpatterns (maximum 10,000) */
133 REG_BADPAT, /* repeated subpattern is too long */
134 REG_BADPAT, /* octal value is greater than \377 (not in UTF-8 mode) */
135 REG_BADPAT, /* internal error: overran compiling workspace */
136 REG_BADPAT, /* internal error: previously-checked referenced subpattern not found */
137 REG_BADPAT, /* DEFINE group contains more than one branch */
139 REG_BADPAT, /* repeating a DEFINE group is not allowed */
141 REG_BADPAT, /* \g is not followed followed by an (optionally braced) non-zero number */
142 REG_BADPAT, /* a numbered reference must not be zero */
143 REG_BADPAT, /* an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT) */
145 REG_BADPAT, /* (*VERB) not recognized */
146 REG_BADPAT, /* number is too big */
147 REG_BADPAT, /* subpattern name expected */
148 REG_BADPAT, /* digit expected after (?+ */
149 REG_BADPAT, /* ] is an invalid data character in JavaScript compatibility mode */
151 REG_BADPAT, /* different names for subpatterns of the same number are not allowed */
152 REG_BADPAT, /* (*MARK) must have an argument */
154 REG_BADPAT, /* \c must be followed by an ASCII character */
155 REG_BADPAT, /* \k is not followed by a braced, angle-bracketed, or quoted name */
157 REG_BADPAT, /* internal error: unknown opcode in find_fixedlength() */
158 REG_BADPAT, /* \N is not supported in a class */
159 REG_BADPAT, /* too many forward references */
160 REG_BADPAT, /* disallowed UTF-8/16/32 code point (>= 0xd800 && <= 0xdfff) */
161 REG_BADPAT, /* invalid UTF-16 string (should not occur) */
163 REG_BADPAT, /* overlong MARK name */
164 REG_BADPAT, /* character value in \u.... sequence is too large */
165 REG_BADPAT, /* invalid UTF-32 string (should not occur) */
166 REG_BADPAT, /* setting UTF is disabled by the application */
167 REG_BADPAT, /* non-hex character in \\x{} (closing brace missing?) */
169 REG_BADPAT, /* non-octal character in \o{} (closing brace missing?) */
170 REG_BADPAT, /* missing opening brace after \o */
171 REG_BADPAT, /* parentheses too deeply nested */
172 REG_BADPAT, /* invalid range in character class */
173 REG_BADPAT, /* group name must start with a non-digit */
175 REG_BADPAT, /* parentheses too deeply nested (stack check) */
176 REG_BADPAT /* missing digits in \x{} or \o{} */
289 should not happen, but we all make mistakes), return REG_BADPAT. */
294 eint[errorcode] : REG_BADPAT;