Searched refs:directive (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10.3-release/usr.bin/bmake/tests/syntax/
H A DMakefile5 TESTS_SUBDIRS= directive-t0 enl funny-targets semi
/freebsd-10.3-release/lib/libfigpar/
H A Dfigpar.c47 * options, returning the struct whose directive matches the given parameter.
55 get_config_option(struct figpar_config options[], const char *directive) argument
60 if (options == NULL || directive == NULL)
64 for (n = 0; options[n].directive != NULL; n++)
65 if (strcmp(options[n].directive, directive) == 0)
69 figpar_dummy_config.directive = NULL;
90 char *directive, char *value), uint16_t processing_options)
103 char *directive; local
134 directive
88 parse_config(struct figpar_config options[], const char *path, int (*unknown)(struct figpar_config *option, uint32_t line, char *directive, char *value), uint16_t processing_options) argument
[all...]
H A Dfigpar.h67 #define FIGPAR_BREAK_ON_EQUALS 0x0001 /* stop reading directive at `=' */
71 #define FIGPAR_STRICT_EQUALS 0x0010 /* `=' must be part of directive */
78 const char *directive; /* config file keyword */ member in struct:figpar_config
82 * Function pointer; action to be taken when the directive is found
85 char *directive, char *value);
/freebsd-10.3-release/usr.bin/bmake/tests/syntax/directive-t0/
H A DMakefile1 # $FreeBSD: releng/10.3/usr.bin/bmake/tests/syntax/directive-t0/Makefile 266074 2014-05-14 18:43:13Z jmmv $
3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/syntax/directive-t0
/freebsd-10.3-release/lib/libdpv/
H A Ddialogrc.c112 char *directive __unused, char *value)
208 char *directive __unused, char *value)
231 char *directive __unused, char *value)
251 char *directive __unused, char *value)
331 * Return a pointer to the `.dialogrc' config option specific to `directive' or
336 dialogrc_config_option(const char *directive) argument
338 return (get_config_option(dialogrc_config, directive));
351 for (n = 0; dialogrc_config[n].directive != NULL; n++) {
/freebsd-10.3-release/contrib/gcclibs/libcpp/
H A Ddirectives.c58 /* Values for the origin field of struct directive. KANDR directives
65 /* Values for the flags field of struct directive. COND indicates a
68 means this directive should be handled even if -fpreprocessed is in
78 /* Defines one #-directive, including how to handle it. */
80 typedef struct directive directive; typedef in typeref:struct:directive
81 struct directive struct
83 directive_handler handler; /* Function to handle directive. */
84 const uchar *name; /* Name of directive. */
86 unsigned char origin; /* Origin of directive
[all...]
H A Dinternal.h40 struct directive; /* Deliberately incomplete. */
181 /* Nonzero if in a directive that will handle padding tokens itself.
189 /* Nonzero if in a directive that takes angle-bracketed headers. */
192 /* Nonzero if in a #if or #elif directive. */
329 /* The line of the '#' of the current directive. */
341 /* If in_directive, the directive if known. */
342 const struct directive *directive; member in struct:cpp_reader
344 /* Token generated while handling a directive, if any. */
/freebsd-10.3-release/contrib/flex/
H A Dmisc.c433 char directive[MAXLINE], filename[MAXLINE]; local
459 snprintf (directive, sizeof(directive), line_fmt, linenum, filename);
461 snprintf (directive, sizeof(directive), line_fmt, 0, filename);
464 /* If output_file is nil then we should put the directive in
468 fputs (directive, output_file);
471 add_action (directive);
/freebsd-10.3-release/usr.bin/rpcgen/
H A Drpc_scan.c67 static int directive( char * );
148 * Get the next token, printing out any directive that are encountered.
183 } else if (directive(curline)) {
211 * 'where' is not whitespace, comment or directive Must be a token!
450 directive(char *line) function
/freebsd-10.3-release/contrib/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp63 const std::string &directive = ".jmptable");
190 const std::string &directive) {
196 O << "\t" << directive << " "; local
189 printInlineJT(const MachineInstr *MI, int opNum, raw_ostream &O, const std::string &directive) argument
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DAlignOf.h102 # error No supported align as directive.
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt_long.c237 errx(1, "unknown directive at line %ld",
/freebsd-10.3-release/gnu/lib/csu/
H A DMakefile18 CFLAGS.gcc+= -finhibit-size-directive -fno-toplevel-reorder
/freebsd-10.3-release/contrib/binutils/ld/
H A Ddeffilep.y259 struct directive
261 struct directive *next;
266 static struct directive *directives = 0;
284 struct directive *d;
316 printf ("Adding directive %08x `%s'\n", d->name, d->name);
825 struct directive *d = xmalloc (sizeof (struct directive));
/freebsd-10.3-release/contrib/libyaml/src/
H A Dscanner.c32 * VERSION-DIRECTIVE(major,minor) # The '%YAML' directive.
33 * TAG-DIRECTIVE(handle,prefix) # The '%TAG' directive.
710 yaml_parser_scan_tag_handle(yaml_parser_t *parser, int directive,
714 yaml_parser_scan_tag_uri(yaml_parser_t *parser, int directive,
718 yaml_parser_scan_uri_escapes(yaml_parser_t *parser, int directive,
900 /* Is it a directive? */
2007 /* Scan the directive name. */
2012 /* Is it a YAML directive? */
2016 /* Scan the VERSION directive value. */
2030 /* Is it a TAG directive
2500 yaml_parser_scan_tag_handle(yaml_parser_t *parser, int directive, yaml_mark_t start_mark, yaml_char_t **handle) argument
2567 yaml_parser_scan_tag_uri(yaml_parser_t *parser, int directive, yaml_char_t *head, yaml_mark_t start_mark, yaml_char_t **uri) argument
2659 yaml_parser_scan_uri_escapes(yaml_parser_t *parser, int directive, yaml_mark_t start_mark, yaml_string_t *string) argument
[all...]
/freebsd-10.3-release/usr.bin/xlint/lint1/
H A Dscan.l80 static void directive(void);
157 ^#.*$ directive();
973 directive(void)
987 /* undefined or invalid # directive */
1012 warning("extra character(s) after directive");
1022 * If this is the first directive, the name is the name
/freebsd-10.3-release/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.sh72 -f Specify location of ntp.conf (used to make sure leapfile directive is
96 Ordinarily, the file is found using the "leapfile" directive in $NTPCONF.
315 # Parse ntp.conf for leapfile directive
H A Dupdate-leap.in167 log_fatal(LOG_ERR, "No leapfile directive in $NTPCONF; leapfile location not known");
436 Ordinarily, the leapfile is found using the 'leapfile' directive in
/freebsd-10.3-release/contrib/gcc/config/
H A Ddarwin.c89 output_objc_section_asm_op (const void *directive) argument
126 output_section_asm_op (directive);
1453 /* Emit an assembler directive to set visibility for a symbol. The
1491 const char *directive = (size == 8 ? ".quad" : ".long"); local
1496 fprintf (file, "\t%s\t", directive);
1501 fprintf (file, "\n\t%s L$set$%d", directive, darwin_dwarf_label_counter++);
/freebsd-10.3-release/crypto/openssl/util/
H A Dpod2man.pl90 major headers should be setout as a C<=head1> directive, and
226 a C<EE<lt>E<gt>> directive. Besides amp, lt, gt, and quot, recognized
239 =item Unrecognized pod directive: %s
241 (W) You specified a pod directive that isn't in the known list of
903 warn "$0: Unrecognized pod directive in paragraph $. of $ARGV: $Cmd\n";
/freebsd-10.3-release/crypto/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl47 # modes. To support legacy code a synthetic directive, .picmeup,
423 { package directive; # pick up directives, which start with .
800 if (directive->re(\$line)) {
801 printf "%s",directive->out();
/freebsd-10.3-release/contrib/libreadline/
H A Dbind.c1113 /* Handle a parser directive. STATEMENT is the line of the directive
1120 char *directive, *args; local
1122 /* Isolate the actual directive. */
1127 directive = &statement[i];
1140 if (_rl_stricmp (directive, parser_directives[i].name) == 0)
1146 /* display an error message about the unknown parser directive */
1147 _rl_init_file_error ("unknown parser directive");
1169 /* If this is a parser directive, act on it. */
/freebsd-10.3-release/contrib/binutils/gas/
H A Dread.c855 automatic alignment directive. What a hack
1222 /* Guts of .align directive. N is the power of two to which to align.
1784 as_warn (_("incompatible flag %i in line directive"),
1796 as_warn (_("unsupported flag %i in line directive"),
1855 internationalize the directive itself, but that we need a
1858 location of the name of the directive within the message. */
1860 = (err ? _(".error directive invoked in source file")
1861 : _(".warning directive invoked in source file"));
2061 /* Parse an attribute directive for VENDOR. */
2150 /* Parse a .gnu_attribute directive
[all...]
/freebsd-10.3-release/contrib/binutils/gas/config/
H A Dtc-ia64.c294 struct unw_rec_list *unwind_record; /* Unwind directive. */
1030 *ptr_msg = _("Bad .section directive: want a,o,s,w,x,M,S,G,T in string");
1173 as_bad (_("Unwind directive not followed by an instruction."));
2988 ".restore sp" directive at the end of a region to pop
3316 directive, and only call dwarf2_gen_line_info for those instructions. */
3336 unwind_diagnostic (const char * region, const char *directive) argument
3340 as_warn (".%s outside of %s", directive, region);
3345 as_bad (".%s outside of %s", directive, region);
3351 /* Return 1 if a directive is in a procedure, -1 if a directive is
3357 in_procedure(const char *directive) argument
3371 in_prologue(const char *directive) argument
3387 in_body(const char *directive) argument
[all...]
/freebsd-10.3-release/usr.bin/make/
H A Dparse.c250 static const struct directive { struct
645 * .WAIT directive.
814 "Unknown directive" : "Need an operator");
1035 "Unknown directive" : "Missing dependency operator");
2075 * Parse an .include directive and push the file onto the input stack.
2230 * Parse a .warning or .error directive
2234 * a warning if the directive is malformed.
2261 * Parse an .undef directive.
2283 * Parse a .for directive.
2326 * Got a line starting with a '.'. Check if this is a directive
[all...]

Completed in 315 milliseconds

12