HomeSort by: relevance | last modified time | path
    Searched defs:keyword (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/gcc/c-family/
c-indentation.h 29 ENUM_BITFIELD (rid) keyword : 8; member in struct:token_indent_info
42 info.keyword = token->keyword;
52 guard_tinfo_to_string (enum rid keyword);
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-indentation.h 29 ENUM_BITFIELD (rid) keyword : 8; member in struct:token_indent_info
42 info.keyword = token->keyword;
52 guard_tinfo_to_string (enum rid keyword);
  /src/lib/libc/gen/
fmtmsg.c 58 static const struct keyword { struct
59 size_t len; /* strlen(keyword) */
60 const char * const keyword; member in struct:keyword
88 if (memcmp(str, keywords[i].keyword, keywords[i].len)
  /src/usr.sbin/eeprom/
main.c 178 * Separate the keyword from the argument (if any), find the keyword in
184 char *keyword, *arg; local
186 keyword = strdup(line);
187 if ((arg = strrchr(keyword, '=')) != NULL)
191 prep_action(keyword, arg);
194 of_action(keyword, arg);
198 op_action(keyword, arg);
201 ee_action(keyword, arg);
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc.h 46 char *keyword; member in struct:parse
57 const char *keyword; /* command key word */ member in struct:xcmd
  /src/external/gpl3/binutils/dist/gprofng/src/
gprofng.cc 75 "Usage: %s [OPTION(S)] COMMAND [KEYWORD] [ARGUMENTS]\n"), whoami);
164 "Usage: %s [--verbose] [--version] [--help] <tool-name> [<keyword>] <args>\n"
184 const char *keyword; member in struct:__anon10311
198 const char *keyword = argc > 1 ? argv[1] : ""; local
204 if (app_names[i].keyword == NULL)
209 if (!strcmp (keyword, app_names[i].keyword))
223 fprintf (stderr, GTXT ("%s: error: keyword '%s' is not supported\n"),
225 else if (*keyword == 0)
230 get_basename (get_name ()), tool_name, keyword);
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
gprofng.cc 75 "Usage: %s [OPTION(S)] COMMAND [KEYWORD] [ARGUMENTS]\n"), whoami);
163 "Usage: %s [--verbose] [--version] [--help] <tool-name> [<keyword>] <args>\n"
183 const char *keyword; member in struct:__anon11780
196 const char *keyword = argc > 1 ? argv[1] : ""; local
202 if (app_names[i].keyword == NULL)
207 if (!strcmp (keyword, app_names[i].keyword))
221 fprintf (stderr, GTXT ("%s: error: keyword '%s' is not supported\n"),
223 else if (*keyword == 0)
228 get_basename (get_name ()), tool_name, keyword);
    [all...]
  /src/external/gpl2/rcs/dist/src/
rcskeep.c 3 /* Extract RCS keyword string values from working files. */
47 * Scan for Name keyword. Improve quality of diagnostics.
120 /* Function: Tries to read keyword values for author, date,
132 char keyword[keylength+1]; local
160 /* try to get keyword */
161 tp = keyword;
166 if (keyword+keylength <= tp)
185 switch (trymatch(keyword)) {
252 workerror("closing %c missing on keyword", KDELIM);
276 workerror("badly terminated keyword value")
    [all...]
  /src/usr.bin/indent/
lexi.c 49 static const struct keyword { struct
330 return strcmp(key, ((const struct keyword *)elem)->name);
418 const struct keyword *kw = bsearch(token.s, keywords,
  /src/external/bsd/ntp/dist/ntpd/
ntp_scanner.c 66 * keyword() - Return the keyword associated with token T_ identifier.
68 * Example: keyword(T_Server) returns "server"
72 keyword( function
92 "(keyword #%u not found)", token);
885 * The ambiguity is in the keyword scanner, not ntp_parser.y.
888 * failing) to match an IP address or DNS name to a keyword,
889 * the association keywords use FOLLBY_STRING in the keyword
891 * a T_String, so it does not try to match a keyword but rather
  /src/external/bsd/ntp/dist/ntpq/
ntpq.h 84 const char *keyword; member in struct:parse
95 const char *keyword; /* command key word */ member in struct:xcmd
  /src/external/gpl2/gettext/dist/gettext-tools/src/
xgettext.h 51 /* Calling convention for a given keyword. */
63 /* Split keyword spec into keyword, argnum1, argnum2, argnumc. */
67 /* Set of alternative calling conventions for a given keyword. */
70 const char *keyword; /* the keyword, not NUL terminated */ member in struct:callshapes
71 size_t keyword_len; /* the keyword's length */
76 /* Insert a (keyword, callshape) pair into a hash table mapping keyword to
79 const char *keyword, size_t keyword_len
277 const char *keyword; \/* the keyword, not NUL terminated *\/ member in struct:arglist_parser
    [all...]
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-utils.c 115 Return the number of keyword arguments. */
290 /* Look up KEYWORD in KEYWORD_LIST.
291 The result is the index of the keyword in the list or -1 if not found. */
294 lookup_keyword (const SCM *keyword_list, SCM keyword)
300 if (scm_is_eq (keyword_list[i], keyword))
362 /* Process keyword arguments. */
384 SCM keyword = scm_car (rest);
386 i = lookup_keyword (keywords, keyword);
390 _("Unrecognized keyword: ~a"),
391 scm_list_1 (keyword), keyword)
382 SCM keyword = scm_car (rest); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-utils.c 115 Return the number of keyword arguments. */
290 /* Look up KEYWORD in KEYWORD_LIST.
291 The result is the index of the keyword in the list or -1 if not found. */
294 lookup_keyword (const SCM *keyword_list, SCM keyword)
300 if (scm_is_eq (keyword_list[i], keyword))
362 /* Process keyword arguments. */
384 SCM keyword = scm_car (rest);
386 i = lookup_keyword (keywords, keyword);
390 _("Unrecognized keyword: ~a"),
391 scm_list_1 (keyword), keyword)
382 SCM keyword = scm_car (rest); local
    [all...]
  /src/external/mit/isl/dist/
isl_stream.c 26 const struct isl_keyword *keyword = (const struct isl_keyword *)entry; local
28 return isl_bool_ok(!strcmp(keyword->name, val));
35 struct isl_keyword *keyword; local
52 keyword = entry->data;
53 return keyword->type;
56 keyword = isl_calloc_type(s->ctx, struct isl_keyword);
57 if (!keyword)
59 keyword->type = s->next_type++;
60 keyword->name = strdup(name);
61 if (!keyword->name)
320 struct isl_keyword *keyword; local
781 struct isl_keyword *keyword = *p; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gengtype-parse.cc 91 "a C++ keyword to ignore"
568 parse_error ("expected an option keyword, have %s", print_cur_token ());
707 /* Any C++ keyword like 'operator' means that we are not looking
817 const char *keyword = advance ();
818 if (strcmp (keyword, "public:") != 0
819 && strcmp (keyword, "private:") != 0
820 && strcmp (keyword, "protected:") != 0)
902 should ignore everything following this keyword up to the
814 const char *keyword = advance (); local
  /src/external/gpl3/gcc.old/dist/gcc/
gengtype-parse.cc 90 "a C++ keyword to ignore"
561 parse_error ("expected an option keyword, have %s", print_cur_token ());
700 /* Any C++ keyword like 'operator' means that we are not looking
810 const char *keyword = advance ();
811 if (strcmp (keyword, "public:") != 0
812 && strcmp (keyword, "private:") != 0
813 && strcmp (keyword, "protected:") != 0)
895 should ignore everything following this keyword up to the
807 const char *keyword = advance (); local
  /src/usr.bin/mail/
cmd3.c 1007 char *keyword = argv[0]; local
1024 if (strcasecmp(keyword, mtp->m_name) == 0)
1029 (void)printf("Unrecognized if-keyword: \"%s\"\n", keyword);
  /src/crypto/dist/ipsec-tools/src/racoon/
eaytest.c 734 char *keyword = "hehehe test secret!"; local
753 key = vmalloc(strlen(keyword));
754 memcpy(key->v, keyword, key->l);
  /src/external/gpl3/gdb/dist/gdb/
probe.c 827 const char *keyword = *csp;
828 size_t len = strlen (keyword);
830 if (strncmp (s, keyword, len) == 0 && isspace ((unsigned char)s[len]))
826 const char *keyword = *csp; local
  /src/external/gpl3/gdb.old/dist/gdb/
probe.c 827 const char *keyword = *csp;
828 size_t len = strlen (keyword);
830 if (strncmp (s, keyword, len) == 0 && isspace ((unsigned char)s[len]))
826 const char *keyword = *csp; local
  /src/bin/csh/
func.c 66 static int keyword(Char *);
745 } while ((d || (!(kwd = keyword(owp)) && c != ' '
750 * if we have read a keyword ( "if", "switch" or "while" ) then we do not
785 * keyword(wp) determines if wp is one of the built-n functions if,
789 * in a test to see if the string forms a keyword. Then doword stops
794 keyword(Char *wp) function
  /src/usr.bin/nc/
netcat.c 1591 const char *keyword;
1624 for (t = toskeywords; t->keyword != NULL; t++) {
1625 if (strcmp(s, t->keyword) == 0) {
1639 const char *keyword;
1650 for (t = tlskeywords; t->keyword != NULL; t++) {
1651 if (strcmp(s, t->keyword) == 0) {
1796 "\t-T keyword TOS value or TLS options\n"
1821 "[-T keyword] [-o staplefile]\n"
1551 const char *keyword; member in struct:toskeywords
1599 const char *keyword; member in struct:tlskeywords
  /src/usr.bin/unifdef/
unifdef.c 200 * Sometimes when editing a keyword the replacement text is longer, so
231 static char *keyword; /* used for editing #elif's */ variable
447 static void Mpass (void) { strncpy(keyword, "if ", 4); Pelif(); }
531 strlcpy(keyword, replacement, tline + sizeof(tline) - keyword);
610 keyword = tline + (cp - tline);
612 kwlen = cp - keyword;
613 /* no way can we deal with a continuation inside a keyword */
616 if (strlcmp("ifdef", keyword, kwlen) == 0 ||
617 strlcmp("ifndef", keyword, kwlen) == 0)
    [all...]
  /src/usr.sbin/npf/npfctl/
npf_show.c 324 * The main keyword mapping tables defining the syntax:
475 const char * keyword; member in struct:__anon8537
481 .keyword = "from",
487 .keyword = "to",
494 const char *kwd = refs[which].keyword;
524 const char * keyword; member in struct:__anon8538
529 .keyword = "from",
534 .keyword = "to",
540 const char *kwd = refs[which].keyword;

Completed in 53 milliseconds

1 2 3