HomeSort by: relevance | last modified time | path
    Searched refs:whitespace (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl2/texinfo/dist/makeinfo/tests/
node-whitespace 2 # Test whitespace collapse in node names.
7 ../makeinfo $srcdir/node-whitespace.txi
8 test -s node-whitespace.info
11 rm -f node-whitespace.info
  /src/usr.bin/make/unit-tests/
sh-leading-plus.exp 4 echo 'whitespace in leading part'
5 whitespace in leading part
sh-leading-at.exp 6 whitespace in leading part
opt-file.exp 3 line-with-trailing-whitespace
sh-leading-hyphen.exp 10 whitespace in leading part
cond-func-defined.mk 12 # Horizontal whitespace (space tab) after the opening parenthesis is ignored.
17 # Horizontal whitespace (space tab) before the closing parenthesis is ignored.
22 # The argument of a function must not directly contain whitespace.
28 # If necessary, the whitespace can be generated by an expression.
cmdline.mk 42 # variable assignments in makefiles. In the command line, trailing whitespace
46 # Preserving '#' and trailing whitespace has the benefit that when passing
48 # Leading whitespace in the variable value is discarded though, which makes
cond-func.mk 25 # Horizontal whitespace (space tab) after the opening parenthesis is ignored.
30 # Horizontal whitespace (space tab) before the closing parenthesis is ignored.
35 # The argument of a function must not directly contain whitespace.
41 # If necessary, the whitespace can be generated by an expression.
47 # in a function argument. As with whitespace, these can be generated
  /src/sys/arch/i386/stand/dosboot/
doscommain.c 45 static int whitespace(char);
48 whitespace(char c) function
74 if (whitespace(PSP->cmd[i])) {
85 * (end only if next char is whitespace)
95 if (whitespace(PSP->cmd[i + 1])) {
  /src/sys/arch/acorn32/stand/lib/
srt1.c 42 static int whitespace(char);
44 static int whitespace(char c) { function
101 if (whitespace(args[i])) {
113 * (end only if next char is whitespace)
125 if (whitespace(args[i + 1])) {
  /src/usr.sbin/tcpdchk/
inetcf.c 76 static char whitespace[] = " \t\r\n"; variable
138 service = strtok(buf, whitespace); /* service */
142 strtok((char *) 0, whitespace); /* endpoint */
143 protocol = strtok((char *) 0, whitespace);
144 (void) strtok((char *) 0, whitespace); /* wait */
145 if ((user = strtok((char *) 0, whitespace)) == 0)
150 if ((path = strtok((char *) 0, whitespace)) == 0)
163 if ((path = strtok((char *) 0, whitespace)) == 0)
166 if ((arg0 = strtok((char *) 0, whitespace)) == 0) {
177 if ((arg0 = strtok((char *) 0, whitespace)) == 0)
    [all...]
  /src/external/gpl2/texinfo/dist/info/
info.h 52 #if !defined (whitespace)
53 # define whitespace(c) ((c == ' ') || (c == '\t')) macro
54 #endif /* !whitespace */
57 # define whitespace_or_newline(c) (whitespace (c) || (c == '\n'))
  /src/external/gpl3/gdb/dist/readline/readline/
histlib.h 41 #ifndef whitespace
42 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) macro
vi_mode.c 387 if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
389 if (!whitespace (rl_line_buffer[rl_point + 1]))
545 /* Skip until whitespace. */
546 while (!whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
549 /* Now skip whitespace. */
550 while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
561 /* If we are at the start of a word, move back to whitespace so
563 if (!whitespace (rl_line_buffer[rl_point]) &&
564 whitespace (rl_line_buffer[rl_point - 1]))
567 while (rl_point > 0 && whitespace (rl_line_buffer[rl_point])
    [all...]
kill.c 321 while (rl_point && whitespace (rl_line_buffer[rl_point - 1]))
324 while (rl_point && (whitespace (rl_line_buffer[rl_point - 1]) == 0))
337 deletes backward to directory separator (`/') or whitespace. */
355 /* First move backwards through whitespace */
356 while (rl_point && whitespace (c))
370 if (i == 0 || whitespace (c))
372 rl_point = i + whitespace (c);
378 while (rl_point && (whitespace (c) || c == '/'))
384 while (rl_point && (whitespace (c) == 0) && c != '/')
bind.c 1122 /* Skip leading whitespace. */
1123 while (*line && whitespace (*line))
1289 for (i = 0; args[i] && !whitespace (args[i]); i++);
1336 /* if "version" is separated from the operator by whitespace, or the
1337 operand is separated from the operator by whitespace, restore it.
1338 We're more liberal with allowed whitespace for this variable. */
1342 for (i = 7; whitespace (args[i]); i++)
1356 for ( ; args[i] && whitespace (args[i]); i++)
1377 /* optional - check for trailing garbage on the line, allow whitespace
1380 for ( ; args[i] && whitespace (args[i]); i++
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
histlib.h 41 #ifndef whitespace
42 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) macro
vi_mode.c 387 if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
389 if (!whitespace (rl_line_buffer[rl_point + 1]))
545 /* Skip until whitespace. */
546 while (!whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
549 /* Now skip whitespace. */
550 while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
561 /* If we are at the start of a word, move back to whitespace so
563 if (!whitespace (rl_line_buffer[rl_point]) &&
564 whitespace (rl_line_buffer[rl_point - 1]))
567 while (rl_point > 0 && whitespace (rl_line_buffer[rl_point])
    [all...]
kill.c 321 while (rl_point && whitespace (rl_line_buffer[rl_point - 1]))
324 while (rl_point && (whitespace (rl_line_buffer[rl_point - 1]) == 0))
337 deletes backward to directory separator (`/') or whitespace. */
355 /* First move backwards through whitespace */
356 while (rl_point && whitespace (c))
370 if (i == 0 || whitespace (c))
372 rl_point = i + whitespace (c);
378 while (rl_point && (whitespace (c) || c == '/'))
384 while (rl_point && (whitespace (c) == 0) && c != '/')
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
check_lint.sh 20 COMMON_LINT_FILTER=-build/include,-build/header_guard,-legal/copyright,-whitespace/comments,-readability/casting,\
24 ASAN_LIT_TEST_LINT_FILTER=${ASAN_TEST_LINT_FILTER},-whitespace/line_length
27 TSAN_LIT_TEST_LINT_FILTER=${TSAN_TEST_LINT_FILTER},-whitespace/line_length
30 LSAN_LIT_TEST_LINT_FILTER=${LSAN_RTL_LINT_FILTER},-whitespace/line_length
  /src/share/misc/
NetBSD.el 62 (eval-when-compile (require 'whitespace nil t))
64 (defcustom netbsd-knf-whitespace-check nil
65 "Enable NetBSD KNF whitespace cleanup when saving the buffer.
67 `whitespace-auto-cleanup',
68 `whitespace-abort-on-error',
69 `whitespace-check-leading-whitespace',
70 `whitespace-check-trailing-whitespace',
71 `whitespace-check-spacetab-whitespace'
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/examples/
fileman.c 147 /* Remove leading and trailing whitespace from the line.
174 while (line[i] && whitespace (line[i]))
178 while (line[i] && !whitespace (line[i]))
193 while (whitespace (line[i]))
217 /* Strip whitespace from the start and end of STRING. Return a pointer
225 for (s = string; whitespace (*s); s++)
232 while (t > s && whitespace (*t))
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
fileman.c 147 /* Remove leading and trailing whitespace from the line.
174 while (line[i] && whitespace (line[i]))
178 while (line[i] && !whitespace (line[i]))
193 while (whitespace (line[i]))
217 /* Strip whitespace from the start and end of STRING. Return a pointer
225 for (s = string; whitespace (*s); s++)
232 while (t > s && whitespace (*t))
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-c-7 90 nuke-trailing-whitespace-p:nil
  /src/external/gpl2/texinfo/dist/makeinfo/
defun.c 104 Contiguous whitespace characters are converted to a token
116 { /* Replace arbitrary whitespace by a single space. */
117 if (whitespace (*scan_string))
120 while (whitespace (*scan_string))
140 if ((c == 0) || (c == '{') || (whitespace (c)))
185 /* Otherwise a token is delimited by whitespace, parentheses,
200 if (!c || whitespace (c) || DEFUN_SELF_DELIMITING (c)
462 if (*scan_args && **scan_args && !whitespace (**scan_args)
479 warning ("`%c' follows defined name `%s' instead of whitespace",

Completed in 53 milliseconds

1 2 3 4 5 6