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

1 2 3

  /src/usr.bin/tabs/
Makefile 3 PROG= tabs
Makefile 3 PROG= tabs
tabs.c 1 /* $NetBSD: tabs.c,v 1.6 2021/08/27 18:28:41 rillig Exp $ */
36 __RCSID("$NetBSD: tabs.c,v 1.6 2021/08/27 18:28:41 rillig Exp $");
75 "usage: tabs [-n|-a|-a2|-c|-c2|-c3|-f|-p|-s|-u] [+m[n]]"
77 " tabs [-T type] [+[n]] n1[,n2,...]\n");
85 char *term, *arg, *token, *end, *tabs = NULL, *p; local in function:main
112 tabs = argv[i];
120 tabs = argv[i + 1];
146 if (tabs == NULL && spec != NULL)
147 tabs = strdup(spec);
149 if (tabs != NULL
    [all...]
tabs.c 1 /* $NetBSD: tabs.c,v 1.6 2021/08/27 18:28:41 rillig Exp $ */
36 __RCSID("$NetBSD: tabs.c,v 1.6 2021/08/27 18:28:41 rillig Exp $");
75 "usage: tabs [-n|-a|-a2|-c|-c2|-c3|-f|-p|-s|-u] [+m[n]]"
77 " tabs [-T type] [+[n]] n1[,n2,...]\n");
85 char *term, *arg, *token, *end, *tabs = NULL, *p; local in function:main
112 tabs = argv[i];
120 tabs = argv[i + 1];
146 if (tabs == NULL && spec != NULL)
147 tabs = strdup(spec);
149 if (tabs != NULL
    [all...]
  /src/bin/csh/USD.doc/
Makefile 6 SRCS= tabs csh.1 csh.2 csh.3 csh.4 csh.ap csh.g
Makefile 6 SRCS= tabs csh.1 csh.2 csh.3 csh.4 csh.ap csh.g
  /src/lib/libc/gen/
errlist.awk 38 function tabs(desc) { function
56 printf("\t\"%s\",%s/* %d - %s */\n", desc, tabs(desc), number, name);
60 printf("\t\"%s\\0\"%s/* %d - %s */\n", desc, tabs(desc), number, name);
errlist.awk 38 function tabs(desc) { function
56 printf("\t\"%s\",%s/* %d - %s */\n", desc, tabs(desc), number, name);
60 printf("\t\"%s\\0\"%s/* %d - %s */\n", desc, tabs(desc), number, name);
  /src/usr.bin/rpcgen/
rpc_tblout.c 162 int tabs; local in function:printit
168 /* round up to tabs required */
169 tabs = (TABSTOP - len + TABSIZE - 1) / TABSIZE;
170 f_print(fout, "%s", &tabstr[TABCOUNT - tabs]);
rpc_tblout.c 162 int tabs; local in function:printit
168 /* round up to tabs required */
169 tabs = (TABSTOP - len + TABSIZE - 1) / TABSIZE;
170 f_print(fout, "%s", &tabstr[TABCOUNT - tabs]);
  /src/distrib/sets/
fmt-list 52 local function tabs(str, width) function
54 local tabs = ("\t"):rep((width - strwidth + 7) // 8)
55 if tabs == "" then
58 assert(tabs ~= "")
59 return tabs
63 assert_equals(tabs("", 8), "\t")
64 assert_equals(tabs("1234567", 8), "\t")
65 assert_equals(tabs("", 64), "\t\t\t\t\t\t\t\t")
269 -- The flags are already aligned, 4 tabs to the right of the category.
281 -- Amend the entries by the tabs used for alignment
    [all...]
fmt-list 52 local function tabs(str, width) function
54 local tabs = ("\t"):rep((width - strwidth + 7) // 8)
55 if tabs == "" then
58 assert(tabs ~= "")
59 return tabs
63 assert_equals(tabs("", 8), "\t")
64 assert_equals(tabs("1234567", 8), "\t")
65 assert_equals(tabs("", 64), "\t\t\t\t\t\t\t\t")
269 -- The flags are already aligned, 4 tabs to the right of the category.
281 -- Amend the entries by the tabs used for alignment
    [all...]
  /src/usr.bin/comm/
comm.c 58 static const char *tabs[] = { "", "\t", "\t\t" }; variable in typeref:typename:const char * []
108 p = tabs;
comm.c 58 static const char *tabs[] = { "", "\t", "\t\t" }; variable in typeref:typename:const char * []
108 p = tabs;
  /src/lib/libform/
internals.h 95 _formi_tab_t *tabs; member in struct:_formi_field_lines
internals.h 95 _formi_tab_t *tabs; member in struct:_formi_field_lines
  /src/sys/dev/wscons/
wsemul_vt100_subr.c 334 KASSERT(vd->tabs != NULL);
337 if (vd->tabs[i]) {
480 if (vd->tabs) {
482 if (vd->tabs[n])
501 KASSERT(vd->tabs != NULL);
504 vd->tabs[vd->ccol] = 0;
507 memset(vd->tabs, 0, vd->ncols);
784 KASSERT(vd->tabs != NULL);
786 memset(vd->tabs, 0, vd->ncols);
806 vd->tabs[pos - 1] = 1
    [all...]
wsemul_vt100_subr.c 334 KASSERT(vd->tabs != NULL);
337 if (vd->tabs[i]) {
480 if (vd->tabs) {
482 if (vd->tabs[n])
501 KASSERT(vd->tabs != NULL);
504 vd->tabs[vd->ccol] = 0;
507 memset(vd->tabs, 0, vd->ncols);
784 KASSERT(vd->tabs != NULL);
786 memset(vd->tabs, 0, vd->ncols);
806 vd->tabs[pos - 1] = 1
    [all...]
wsemul_vt100.c 230 vd->tabs = 0;
260 vd->tabs = malloc(1024, M_DEVBUF, M_WAITOK);
282 f(vd->tabs)
349 if (vd->tabs) {
350 memset(vd->tabs, 0, vd->ncols);
352 vd->tabs[i] = 1;
482 if (vd->tabs) {
486 if (vd->tabs[n])
595 KASSERT(vd->tabs != 0);
596 vd->tabs[vd->ccol] = 1
    [all...]
wsemul_vt100.c 230 vd->tabs = 0;
260 vd->tabs = malloc(1024, M_DEVBUF, M_WAITOK);
282 f(vd->tabs)
349 if (vd->tabs) {
350 memset(vd->tabs, 0, vd->ncols);
352 vd->tabs[i] = 1;
482 if (vd->tabs) {
486 if (vd->tabs[n])
595 KASSERT(vd->tabs != 0);
596 vd->tabs[vd->ccol] = 1
    [all...]
vt100_base.h 55 char *tabs; member in struct:vt100base_data
vt100_base.h 55 char *tabs; member in struct:vt100base_data
  /src/sbin/pppoectl/
pppoectl.c 61 static void print_dns(const char *ifname, int dns1, int dns2, int s, int tabs);
600 print_dns(const char *ifname, int dns1, int dns2, int s, int tabs)
610 for (i = 0; i < tabs; i++)
612 if (tabs > 0)
621 for (i = 0; i < tabs; i++)
623 if (tabs > 0)
pppoectl.c 61 static void print_dns(const char *ifname, int dns1, int dns2, int s, int tabs);
600 print_dns(const char *ifname, int dns1, int dns2, int s, int tabs)
610 for (i = 0; i < tabs; i++)
612 if (tabs > 0)
621 for (i = 0; i < tabs; i++)
623 if (tabs > 0)
  /src/usr.bin/make/unit-tests/
escape.exp 47 VAR1BSNLtt=:first line two tabs on second line:
48 VAR1BSNLxx=:first line many spaces and tabs [ ] on second line:

Completed in 34 milliseconds

1 2 3