Lines Matching defs:used
216 not used yet, because that would trigger some backward compatibility.
412 if used is defined, returns the used macro arguments.
419 apr_array_header_t * used)
426 if (used) {
427 ap_assert(used->nalloc >= replacements->nelts);
439 if (used) {
440 used->elts[whichone] = 1;
452 passes used down to substitute_macro_args.
457 apr_array_header_t * used,
474 macro, replacements, used);
491 warn if some macro arguments are not used.
498 apr_array_header_t *used;
509 used = apr_array_make(pool, nelts, sizeof(char));
512 used->elts[i] = 0;
515 errmsg = process_content(pool, macro, macro->arguments, used, NULL);
522 if (!used->elts[i]) {
524 "macro '%s' (%s): argument '%s' (#%d) never used",
537 This is used to have some kind of old fashionned C object oriented inherited
547 If macros are used within macros, there may be a cascade of such temporary
548 arrays used to insert the expanded macro contents before resuming the real
849 "macro '%s' (%s) used "
856 "macro '%s' (%s) used on line %d of \"%s\"",