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

  /src/tests/usr.bin/indent/
lsym_lparen_or_lbracket.c 259 (semicolon) = 3;
305 (semicolon) = 3;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
iasmgcc.d 58 case TOK.semicolon:
128 p.token.value != TOK.semicolon &&
156 case TOK.semicolon:
179 p.token.value != TOK.semicolon &&
205 case TOK.semicolon:
226 p.token.value != TOK.semicolon &&
259 if (p.token.value == TOK.semicolon || p.token.value == TOK.endOfFile)
262 // No semicolon followed after instruction template, treat as extended asm.
286 if (p.token.value == TOK.semicolon || p.token.value == TOK.endOfFile)
290 p.check(TOK.semicolon);
    [all...]
parse.d 147 if (token.value != TOK.semicolon)
186 while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
337 if (nextv == TOK.leftCurly || nextv == TOK.colon || nextv == TOK.semicolon)
366 check(TOK.semicolon);
895 while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
968 if (token.value == TOK.semicolon)
971 * Accept single semicolon as an empty
1030 case TOK.semicolon:
1039 while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
1102 case TOK.semicolon
    [all...]
cparse.d 267 check(TOK.semicolon, "statement");
391 case TOK.semicolon:
406 check(TOK.semicolon, "terminating `;` required after do-while statement");
419 if (token.value == TOK.semicolon)
428 if (token.value == TOK.semicolon)
436 check(TOK.semicolon, "`for` condition");
552 auto exp = token.value == TOK.semicolon ? null : cparseExpression();
553 check(TOK.semicolon, "`return` statement");
560 check(TOK.semicolon, "`break` statement");
566 check(TOK.semicolon, "`continue` statement")
    [all...]
tokens.h 47 semicolon, member in class:TOK
tokens.d 38 semicolon,
773 TOK.semicolon: ";",
lexer.d 1010 t.value = TOK.semicolon;
1154 case TOK.semicolon:
1819 t.value = TOK.semicolon;
  /src/crypto/dist/ipsec-tools/src/setkey/
setkey.c 321 char line[1024], *semicolon, *comment; local
351 semicolon = strchr(line, ';');
352 while (semicolon) {
353 char saved_char = *++semicolon;
354 *semicolon = '\0';
367 *semicolon = saved_char;
368 linelen = strlen(semicolon);
369 memmove(line, semicolon, linelen + 1);
370 semicolon = strchr(line, ';');
372 semicolon = NULL
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
scanner.h 40 // includes a semicolon (or newline for that matter) and/or a comment region
42 // directly following a non-escaped, non-quoted semicolon must be included
68 const uint64_t semicolon = semicolons & start; local
71 end = (newlines & -semicolon) | (quotes & (-quote - quote));
135 uint64_t semicolon; member in struct:block
156 block->semicolon = simd_find_8x64(&block->input, ';') & ~block->escaped;
161 if (block->in_comment || block->semicolon) {
164 block->semicolon,
  /src/external/gpl2/groff/dist/font/devps/
text.enc 42 semicolon 59
  /src/usr.bin/sed/
compile.c 178 semicolon: EATSPACE();
184 goto semicolon;
238 goto semicolon;
259 goto semicolon;
261 goto semicolon;
350 goto semicolon;
361 goto semicolon;
363 goto semicolon;
  /src/usr.bin/make/unit-tests/
varmod-subst.exp 28 1 two 3 semicolon
varmod-subst.mk 222 @echo ${:U1 2 3:S;2;two;:Q} semicolon
  /src/sys/arch/ia64/stand/common/
help.common 143 by setting the bootfile variable to a semicolon-separated list of
340 Multiple paths can be separated with a semicolon.
  /src/crypto/external/apache2/openssl/dist/crypto/http/
http_client.c 814 const char *semicolon; local
819 || (semicolon = strchr(value, ';')) == NULL
820 || (size_t)(semicolon - value) != strlen(rctx->expected_ct)
822 semicolon - value)
  /src/usr.bin/make/
parse.c 2861 char *semicolon = FindSemicolon(line); local
2862 if (*semicolon != '\0') {
2864 *semicolon = '\0';
2865 shellcmd = semicolon + 1;
  /src/external/gpl3/autoconf/dist/
maint.mk 238 dummy=; : so we do not need a semicolon before each use; \
243 dummy=; : so we do not need a semicolon before each use; \
428 dummy=; : so we do not need a semicolon before each use; \
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 221 'whitespace/semicolon',
1686 # Match first brace, semicolon, or closed parenthesis.
1704 # a semicolon, this is probably a forward declaration. Pop
2138 # seen a semicolon and returned early.
2435 # You should always have a space after a semicolon
2440 error(filename, linenum, 'whitespace/semicolon', 3,
2465 # You shouldn't have a space before a semicolon at the end of the line.
2467 # the semicolon there.
2469 error(filename, linenum, 'whitespace/semicolon', 5,
2470 'Semicolon defining empty statement. Use {} instead.'
    [all...]

Completed in 85 milliseconds