HomeSort by: relevance | last modified time | path
    Searched refs:tokens (Results 1 - 18 of 18) sorted by relevancy

  /src/lib/libc/locale/
newlocale.c 48 const char *tokens[_LC_LAST - 1]; local in function:__weak_alias
64 tokens[0] = (const char *)&head[0];
65 tail = __UNCONST(strchr(tokens[0], '/'));
71 (*l)(tokens[0], dst);
84 tokens[i] = (const char *)tail;
85 tail = __UNCONST(strchr(tokens[i], '/'));
92 tokens[howmany] = tail;
93 tail = __UNCONST(strchr(tokens[howmany], '/'));
101 (*l)(tokens[i], dst);
generic_lc_all.c 59 const char *tokens[_LC_LAST], *s, *t; local in function:_generic_LC_ALL_setlocale
67 tokens[1] = &head[0];
68 tail = __UNCONST(strchr(tokens[1], '/'));
71 tokens[i] = tokens[1];
75 tokens[i] = (const char *)tail;
76 tail = __UNCONST(strchr(tokens[i], '/'));
81 tokens[_LC_LAST - 1] = (const char *)tail;
82 tail = __UNCONST(strchr(tokens[i], '/'));
86 if ((*sl)(tokens[1], locale) != NULL
    [all...]
  /src/lib/libc/stdlib/
getsubopt.c 65 getsubopt(char **optionp, char * const *tokens, char **valuep)
70 _DIAGASSERT(tokens != NULL);
112 for (cnt = 0; *tokens; ++tokens, ++cnt)
113 if (!strcmp(suboptarg, *tokens))
  /src/sys/dev/microcode/siop/
ncr53cxxx.c 49 } tokens[MAXTOKENS]; variable in typeref:struct:__anon2627f25e0108[]
434 fprintf (listfp, " %d tokens\n", ntokens);
437 if (tokens[i].type)
438 fprintf (listfp,"'%c'\n", tokens[i].type);
440 fprintf (listfp, "%s\n", tokens[i].name);
443 if (ntokens >= 2 && tokens[0].type == 0 &&
444 tokens[1].type == ':') {
445 define_symbol (tokens[0].name, dsps, S_LABEL, F_DEFINED);
581 tokens[ntokens].name = malloc (strlen (string) + 1);
582 strcpy (tokens[ntokens].name, string)
    [all...]
  /src/usr.bin/make/unit-tests/
sh-errctl.exp 1 job_pipe -1 -1, maxjobs 1, tokens 1, compat 0
opt-debug-jobs.exp 1 job_pipe -1 -1, maxjobs 1, tokens 1, compat 0
cond-token-number.mk 3 # Tests for number tokens in .if conditions.
cond-token-plain.mk 3 # Tests for plain tokens (that is, string literals without quotes)
  /src/bin/sh/
arith_token.c 61 #error Arithmetic tokens are out of order.
arithmetic.c 66 #error Arithmetic tokens are out of order.
  /src/sbin/umbctl/
umbctl.c 192 char * tokens[3] = { buf, NULL, NULL }; local in function:_umbctl_file
217 tokens[1] = p + 1;
220 tokens[1] = NULL;
221 ret |= _umbctl_set(ifname, &umbp, (p != NULL) ? 2 : 1, tokens)
  /src/usr.bin/mklocale/
mklocaledb.c 115 const token_t tokens[]; member in struct:__anon73ce18b30208
258 token = &category->tokens[0];
  /src/bin/ksh/
c_test.c 587 static const char *const tokens[] = { local in function:ptest_isa
600 ret = strcmp(*te->pos.wp, tokens[(int) meta]) == 0;
  /src/usr.bin/xlint/lint1/
lint1.h 552 balanced_token *tokens; member in struct:balanced_token_sequence
561 balanced_token_sequence tokens; member in union:balanced_token::__anondcf084d01e0a
debug.c 589 const balanced_token *tok = seq->tokens + i;
592 debug_balanced_token_sequence(&tok->u.tokens);
README.md 8 * The lexer in `scan.l` and `lex.c` splits the input into tokens.
9 * The parser in `cgram.y` creates types and expressions from the tokens.
  /src/lib/librumpuser/
rumpuser_port.h 100 getsubopt(char **optionp, char * const *tokens, char **valuep)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 298 # Alternative tokens and their replacements. For full list, see section 2.5
299 # Alternative tokens [lex.digraph] in the C++ standard.
2482 # not around "::" tokens that might appear.
3381 # If any of the resulting tokens are not compile time constants then
3383 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))
3386 for tok in tokens:

Completed in 24 milliseconds