Lines Matching defs:section
106 /* delimiter characters that indicate the start of a logical page section */
277 int section; /* logical page section */
284 section = BODY;
296 section = idx;
307 switch (numbering_properties[section].type) {
327 (regexec(&numbering_properties[section].expr,
358 parse_numbering(const char *argstr, int section)
365 numbering_properties[section].type = number_all;
368 numbering_properties[section].type = number_none;
371 numbering_properties[section].type = number_nonempty;
375 if (numbering_properties[section].type == number_regex)
376 regfree(&numbering_properties[section].expr);
378 numbering_properties[section].type = number_regex;
381 if ((error = regcomp(&numbering_properties[section].expr,
384 &numbering_properties[section].expr,
388 numbering_properties[section].name, errorbuf,
395 numbering_properties[section].name, argstr);