Lines Matching defs:contents
57 this is a macro: name, arguments, contents, location.
63 apr_array_header_t *contents; /* of char*, macro body */
449 perform substitutions in a macro contents and
460 apr_array_header_t *contents = macro->contents;
465 *result = apr_array_make(pool, contents->nelts, sizeof(char *));
469 for (i = 0; i < contents->nelts; i++) {
472 strncpy(line, ((char **) contents->elts)[i], MAX_STRING_LEN - 1);
502 if (macro->contents->nelts == 0) {
504 "macro '%s' (%s): empty contents!",
540 The following struct stores the contents.
548 arrays used to insert the expanded macro contents before resuming the real
559 apr_array_header_t *contents; /* array of char * */
585 char **tab = (char **) ml->contents->elts;
588 if (ml->index >= ml->contents->nelts) {
600 ml->length = ml->index >= ml->contents->nelts ?
652 ml->index = ml->contents->nelts;
662 apr_array_header_t * contents,
673 ls->contents = contents;
674 ls->length = ls->contents->nelts < 1 ?
675 0 : strlen(((char **) ls->contents->elts)[0]);
775 where, ¯o->contents);
806 apr_array_header_t *contents;
864 NULL, &contents);
875 cmd->config_file = make_array_config(cmd->temp_pool, contents, where,