Home | History | Annotate | Download | only in libxml2

Lines Matching full:regexp

38     xmlRegexpPtr regexp = NULL;
171 regexp = xmlAutomataCompile(am);
174 if (regexp == NULL) {
180 if (regexp == NULL) {
184 exec = xmlRegNewExecCtxt(regexp, NULL, NULL);
198 } else if (regexp != NULL) {
200 exec = xmlRegNewExecCtxt(regexp, NULL, NULL);
209 if (regexp != NULL)
210 xmlRegFreeRegexp(regexp);
225 xmlRegexpPtr regexp;
238 /* compile it in a regexp and free the automata */
239 regexp = xmlAutomataCompile(am);
242 /* test the regexp */
243 xmlRegexpPrint(stdout, regexp);
244 exec = xmlRegNewExecCtxt(regexp, NULL, NULL);
289 /* free the regexp */
290 xmlRegFreeRegexp(regexp);