Home
last modified time | relevance | path

Searched refs:directive (Results 1 – 25 of 174) sorted by relevance

1234567

/freebsd/contrib/bmake/unit-tests/
H A Ddirective-misspellings.exp1 make: directive-misspellings.mk:13: Unknown directive "dinclud"
2 make: directive-misspellings.mk:16: Unknown directive "dincludx"
4 make: directive-misspellings.mk:21: Unknown directive "erro"
5 make: directive-misspellings.mk:23: Unknown directive "errox"
6 make: directive-misspellings.mk:28: Unknown directive "expor"
7 make: directive-misspellings.mk:31: Unknown directive "exporx"
8 make: directive-misspellings.mk:33: Unknown directive "exports"
9 make: directive-misspellings.mk:36: Unknown directive "export-en"
10 make: directive-misspellings.mk:40: Unknown directive "export-environment"
11 make: directive-misspellings.mk:43: Unknown directive "export-litera"
[all …]
H A Ddirective-warning.exp1 make: directive-warning.mk:10: Unknown directive "warn"
2 make: directive-warning.mk:12: Unknown directive "warn"
3 make: directive-warning.mk:14: Unknown directive "warnin"
4 make: directive-warning.mk:16: Unknown directive "warnin"
7 make: directive-warning.mk:22: Unknown directive "warnings"
8 make: directive-warning.mk:24: Unknown directive "warnings"
H A DMakefile170 TESTS+= directive
171 TESTS+= directive-dinclude
172 TESTS+= directive-elif
173 TESTS+= directive-elifdef
174 TESTS+= directive-elifmake
175 TESTS+= directive-elifndef
176 TESTS+= directive-elifnmake
177 TESTS+= directive-else
178 TESTS+= directive-endfor
179 TESTS+= directive-endif
[all …]
H A Ddirective-endif.exp1 make: directive-endif.mk:16: The .endif directive does not take arguments
2 make: directive-endif.mk:21: The .endif directive does not take arguments
3 make: directive-endif.mk:32: The .endif directive does not take arguments
4 make: directive-endif.mk:39: The .endif directive does not take arguments
5 make: directive-endif.mk:44: Unknown directive "endifx"
H A Ddirective-elif.exp1 make: directive-elif.mk:48: Unknown directive "elsif"
3 make: directive-elif.mk:62: Unknown directive "elsif"
6 make: directive-elif.mk:94: Unknown directive "elsif"
13 make: directive-elif.mk:137: Unknown directive "elsif"
15 make: directive-elif.mk:141: Unknown directive "elsif"
H A Ddirective-info.exp2 make: directive-info.mk:14: Unknown directive "inf"
6 make: directive-info.mk:22: Unknown directive "information"
7 make: directive-info.mk:24: Unknown directive "information"
10 make: directive-info.mk:36: Unknown directive "info-message"
H A Ddirective.exp1 make: directive.mk:10: Unknown directive "indented"
2 make: directive.mk:12: Unknown directive "indented"
3 make: directive.mk:14: Unknown directive "indented"
4 make: directive.mk:19: Unknown directive ""
H A Ddirective-for-if.exp2 in .for loop from directive-for-if.mk:46 with directive = if
4 in .for loop from directive-for-if.mk:46 with directive = ifdef
6 in .for loop from directive-for-if.mk:46 with directive = ifndef
H A Ddirective-else.exp1 make: directive-else.mk:14: The .else directive does not take arguments
4 make: directive-else.mk:23: The .else directive does not take arguments
8 make: directive-else.mk:51: The .else directive does not take arguments
H A Ddirective-unexport-env.exp1 make: directive-unexport-env.mk:14: Unknown directive "unexport-en"
2 make: directive-unexport-env.mk:17: Unknown directive "unexport-environment"
6 make: directive-unexport-env.mk:24: The directive .unexport-env does not take arguments
H A Ddirective-if.mk80 # expect+1: Don't do this, always put a space after a directive.
94 # expect+1: Don't do this, always put a space after a directive.
99 # expect+1: Don't do this, always put a space after a directive.
H A Ddirective-dinclude.mk20 _!= echo 'syntax error' > directive-dinclude-error.inc
22 _!= rm directive-dinclude-error.inc
H A Ddirective-sinclude.mk19 _!= echo 'syntax error' > directive-include-error.inc
21 _!= rm directive-include-error.inc
/freebsd/lib/libbsdconf/
H A Dbsdconf.c29 bsdconf_get_option(struct bsdconf_option options[], const char *directive) in bsdconf_get_option() argument
33 if (options == NULL || directive == NULL) in bsdconf_get_option()
36 for (n = 0; options[n].directive != NULL; n++) in bsdconf_get_option()
37 if (strcmp(options[n].directive, directive) == 0) in bsdconf_get_option()
226 uint32_t line, char *directive, char *value), enum bsdconf_op op, in bsdconf_call_unknown() argument
227 uint32_t dline, char *directive, char *value) in bsdconf_call_unknown()
233 return (unknown(&unk, dline, directive, value)); in bsdconf_call_unknown()
377 char *directive, char *value), uint16_t processing_options) in bsdconf_fparse() argument
390 char *directive = NULL; in bsdconf_fparse() local
490 if (directive == NULL || n > dsize) { in bsdconf_fparse()
[all …]
H A Dbsdconf_stmt.c332 const char *directive, bool case_sensitive) in bsdconf_dir_matches() argument
336 if (strlen(directive) != len) in bsdconf_dir_matches()
339 return (memcmp(buf + start, directive, len) == 0); in bsdconf_dir_matches()
340 return (strncasecmp(buf + start, directive, len) == 0); in bsdconf_dir_matches()
529 bsdconf_set_option(struct bsdconf_option options[], const char *directive, in bsdconf_set_option() argument
535 if (options == NULL || directive == NULL || value == NULL) in bsdconf_set_option()
539 for (n = 0; options[n].directive != NULL; n++) { in bsdconf_set_option()
540 if (strcmp(options[n].directive, directive) == 0) { in bsdconf_set_option()
/freebsd/contrib/bmake/
H A DFILES298 unit-tests/directive-dinclude.exp
299 unit-tests/directive-dinclude.mk
300 unit-tests/directive-elif.exp
301 unit-tests/directive-elif.mk
302 unit-tests/directive-elifdef.exp
303 unit-tests/directive-elifdef.mk
304 unit-tests/directive-elifmake.exp
305 unit-tests/directive-elifmake.mk
306 unit-tests/directive-elifndef.exp
307 unit-tests/directive-elifndef.mk
[all …]
/freebsd/usr.bin/bmake/unit-tests/
H A DMakefile173 TESTS+= directive
174 TESTS+= directive-dinclude
175 TESTS+= directive-elif
176 TESTS+= directive-elifdef
177 TESTS+= directive-elifmake
178 TESTS+= directive-elifndef
179 TESTS+= directive-elifnmake
180 TESTS+= directive-else
181 TESTS+= directive-endfor
182 TESTS+= directive-endif
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/
H A DDirectiveBase.td1 //===-- DirectiveBase.td - Base directive definition file --*- tablegen -*-===//
14 // General information about the directive language.
16 // Name of the directive language such as omp or acc.
19 // The C++ namespace that code of this directive language should be placed
22 // By default, uses the name of the directive language as the only namespace.
153 // Kinds of directive associations.
182 // Kinds of directive categories.
203 // Information about a specific directive.
205 // Spellings of the directive.
212 // List of allowed clauses for the directive.
[all …]
/freebsd/usr.sbin/sysconf/
H A Dsysconf_print.c78 print_pair(const char *path, const char *directive, const char *value) in print_pair() argument
87 puts(directive); in print_pair()
91 knob = !show_file && make_knob_p(directive); in print_pair()
102 printf("%s (present)\n", directive); in print_pair()
108 printf("%s=\"%s\"\n", directive, in print_pair()
111 printf("%s=%s\n", directive, in print_pair()
115 printf("%s: %s\n", directive, value != NULL ? value : ""); in print_pair()
H A Dsysconf_query_desc.c163 print_desc(const char *directive) in print_desc() argument
170 (void)sysctl_descr(directive, buf, sizeof(buf)); in print_desc()
174 if (desc == NULL && (desc = desc_find(directive)) == NULL) in print_desc()
177 puts(directive); in print_desc()
181 printf("%s: %s\n", directive, desc); in print_desc()
H A Dsysconf_scan.c65 dump_record(const char *directive, const char *value, enum bsdconf_op op, in dump_record() argument
78 if (strcmp(dumps[n].name, directive) != 0) in dump_record()
116 if ((dumps[ndumps].name = strdup(directive)) == NULL) { in dump_record()
142 char *directive, char *value) in scan_cb() argument
154 if (strcmp(reqs[n].name, directive) != 0) in scan_cb()
212 if (dump_all && dump_record(directive, value, file_op, line) != 0) in scan_cb()
H A Dsysconf_edit_write.c139 opt->directive = reqs[n].name; in do_writes()
187 opt->directive, in do_writes()
226 opt->line, opt->directive, opt->op, in do_writes()
232 opt->line, opt->directive, opt->op, in do_writes()
238 opt->line, opt->directive, opt->op, in do_writes()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Directive/
H A DSpelling.cpp18 static bool Contains(directive::VersionRange V, int P) { in Contains()
22 llvm::StringRef llvm::directive::FindName( in FindName()
23 llvm::iterator_range<const directive::Spelling *> Range, unsigned Version) { in FindName()
/freebsd/usr.sbin/bsdconfig/startup/include/
H A Dmessages.subr33 msg_add_new_desc="Add new directive"
34 msg_add_new_help="Add new rc.conf(5) configuration directive"
42 msg_are_you_sure_you_want_to_delete="Are you sure you want to delete the \`%s' directive\nfrom the …
50 msg_delete_desc="Delete directive(s)"
53 msg_delete_selected_desc="Delete selected directive(s)"
56 msg_deleting_selected_directives="Deleting selected directive(s)..."
87 msg_please_select_an_rcconf_directive="Please select an rc.conf(5) directive:"
/freebsd/contrib/flex/src/
H A Dmisc.c341 char directive[MAXLINE], filename[MAXLINE]; in line_directive_out() local
367 snprintf (directive, sizeof(directive), line_fmt, linenum, filename); in line_directive_out()
369 snprintf (directive, sizeof(directive), line_fmt, 0, filename); in line_directive_out()
376 fputs (directive, output_file); in line_directive_out()
379 add_action (directive); in line_directive_out()

1234567