/illumos-gate/usr/src/cmd/expand/ |
H A D | expand.c | 65 register int c, column; local 134 column = 0; 150 column++; 151 } while (column & 07); 157 column++; 159 ((column - 1) % tabstops[0]) != 164 if (tabstops[n] > column) 168 column++; 171 while (column < tabstops[n]) { 173 column++; [all …]
|
/illumos-gate/usr/src/cmd/more/ |
H A D | more.c | 731 register int column; in getaline() local 737 column = 0; in getaline() 750 return (column); in getaline() 759 column = oldcolumn; in getaline() 767 if (hardtabs && column < promptlen && !hard) { in getaline() 769 column = 1 + (column | 7); in getaline() 774 for (--p; column & 7 && p < &Line[LINSIZ - 1]; column++) { in getaline() 777 if (column >= promptlen) promptlen = 0; in getaline() 781 column = 1 + (column | 7); in getaline() 782 else if ((c == '\b') && (ul_opt || !cr_opt) && (column > 0)) /* M008 */ in getaline() [all …]
|
/illumos-gate/usr/src/cmd/eqn/ |
H A D | e.y | 67 collist : column 68 | collist column 71 column : lcol '{' list '}' { column('L', $1); } 72 | ccol '{' list '}' { column('C', $1); } 73 | rcol '{' list '}' { column('R', $1); } 74 | col '{' list '}' { column('-', $1); }
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | conflict.test | 38 # t1 Content of "c" column of t1 assuming no error in $cmd 39 # t2 Content of "x" column of t2 96 # t1 Content of "c" column of t1 assuming no error in $cmd 97 # t2 Content of "x" column of t2 154 # t1 Content of "c" column of t1 assuming no error in $cmd 155 # t2 Content of "x" column of t2 209 # t1 Content of "c" column of t1 assuming no error in $cmd 210 # t2 Content of "x" column of t2 268 # t1 Content of "c" column of t1 assuming no error in $cmd 269 # t2 Content of "x" column of t2 [all …]
|
H A D | quote.test | 13 # focus of this file is the ability to specify table and column names 21 # Create a table with a strange name and with strange column names.
|
H A D | unique.test | 51 } {1 {column a is not unique}} 61 } {1 {column b is not unique}} 102 } {1 {column a is not unique}}
|
H A D | update.test | 46 # Unknown column name in an expression 51 } {1 {no such column: f3}} 55 } {1 {no such column: test2.f1}} 59 } {1 {no such column: f3}} 395 } {1 {no such column: x}} 407 } {1 {no such column: x}} 415 # Try doing updates on a unique column where the value does not 461 } {1 {column b is not unique}}
|
H A D | capi2.test | 115 } {1 {(1) no such column: bogus} {}} 127 } {1 {(1) no such column: bogus} {}} 133 } {1 {(1) no such column: bogus} {x;}} 139 } {1 {(1) no such column: bogus} {;;x;}} 182 } {1 {(19) column a is not unique}} 390 } {1 {column a is not unique}}
|
H A D | memdb.test | 164 # t1 Content of "c" column of t1 assuming no error in $cmd 165 # t2 Content of "x" column of t2 226 # t1 Content of "b" column of t1 assuming no error in $cmd 227 # t2 Content of "x" column of t3 257 if {$t0} {set t1 {column a is not unique}}
|
H A D | table.test | 278 # Try using keywords as table names or column names. 374 # Make sure we cannot have duplicate column names within a table. 380 } {1 {duplicate column name: a}} 458 } {1 {foreign key on c should reference only one column of table t4}} 466 } {1 {unknown column "x" in foreign key definition}} 474 } {1 {unknown column "x" in foreign key definition}}
|
H A D | select3.test | 97 } {1 {GROUP BY column number 0 out of range - should be between 1 and 2}} 102 } {1 {GROUP BY column number 3 out of range - should be between 1 and 2}} 180 # on the GROUP BY column.
|
H A D | rowid.test | 13 # focus of this file is testing the magic ROWID column that is 91 # We can insert or update the ROWID column. 151 } {1 {table t1 has no column named rowid}} 155 } {1 {table t1 has no column named _rowid_}} 159 } {1 {table t1 has no column named oid}} 163 } {1 {table t1 has no column named rowid}} 166 # column names.
|
H A D | select5.test | 58 } {1 {no such column: z}} 82 } {1 {no such column: z}}
|
/illumos-gate/usr/src/cmd/tsol/misc/ |
H A D | txzonemgr.sh | 371 --column="encryption" $(encryptionValues)) 380 --column="Key format and location" \ 534 --column="Installed Zones" ${zonelist[*]}) 946 --column="Remove Access to:" \ 947 --column="$templateHeading" \ 972 --column="Multilevel Ports (example: 80-81/tcp;111/udp;)" \ 1148 --column="#" \ 1149 --column="Network Configuration " \ 1150 --column="IP Type" \ 1151 --column="Available Interfaces" \ [all …]
|
/illumos-gate/usr/src/test/zfs-tests/include/ |
H A D | zpool_script.shlib | 27 # Get the new column name that the script created 37 # at least one new column value. Even if scripts return blank, zpool 45 log_fail "'$wholecmd' didn't create a new column value"
|
/illumos-gate/usr/src/cmd/pg/ |
H A D | pg.c | 1405 int column; in getaline() local 1420 for (column = 0, p = Line + savlength; ; ) { in getaline() 1426 return (column); in getaline() 1437 if (column + width > columns && !fflag) in getaline() 1444 column += width; in getaline() 1449 column = 1 + (column | 7); in getaline() 1452 if (column > 0) in getaline() 1453 column--; in getaline() 1456 column = 0; in getaline() 1461 if (column >= columns && !fflag) in getaline() [all …]
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/postscript/ |
H A D | ps.requests | 22 % Keywords begin with an @ in the first column. The value follows on the next line 24 % lines that begin with % in the first column.
|
/illumos-gate/usr/src/grub/grub-0.97/grub/ |
H A D | asmstub.c | 893 int column = 0; in hex_dump() local 907 column += 2; in hex_dump() 915 if (column < MAX_COLUMN) in hex_dump() 918 column++; in hex_dump() 923 column = 0; in hex_dump()
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | ast-model.c | 28 gint column, GValue *value); 313 gint column, in ast_get_value() argument 319 if (column != 1) in ast_get_value()
|
/illumos-gate/usr/src/tools/sgs/sgsmsg/ |
H A D | sgsmsg.c | 602 size_t column = 1; in output_data() local 627 if (column == 1) { in output_data() 644 if (column++ == 10) in output_data() 645 column = 1; in output_data() 648 if (column == 1) in output_data()
|
/illumos-gate/usr/src/cmd/sgs/libld/common/ |
H A D | resolve.c | 1085 int row, column; /* State table coordinates */ local 1134 column = SYM_TENTATIVE; 1140 column = SYM_TENTATIVE; 1145 column = SYM_UNDEFINED; 1148 column = SYM_DEFINED; 1157 column = SYM_TENTATIVE; 1163 DBG_CALL(Dbg_syms_resolving(ofl, ndx, sdp->sd_name, row, column, 1182 Action[row][column](sdp, nsym, ifl, ofl, ndx, nshndx, nsdflags);
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | mvcur.c | 283 column(outseq, ocol, ncol) in column() function 404 column(try, oldcol, newcol); 409 column(&col0seq, 0, newcol);
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | mvcur.c | 283 column(struct Sequence *outseq, int ocol, int ncol) in column() function 392 column(try, oldcol, newcol); in __m_mvcur() 397 column(&col0seq, 0, newcol); in __m_mvcur()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/ |
H A D | ppsearch.c | 554 if ((pp.column + strlen(xp->name)) >= COLUMN_MAX) in search() 557 pp.column = COLUMN_TAB; in search() 562 pp.column += sfprintf(pp.filedeps.sp, "%c%s", index, xp->name); in search() 822 if ((pp.column + strlen(file)) >= COLUMN_MAX) in ppsearch() 825 pp.column = COLUMN_TAB; in ppsearch() 830 pp.column += sfprintf(pp.filedeps.sp, "%c%s", index, file); in ppsearch()
|
/illumos-gate/usr/src/uts/common/io/arn/ |
H A D | arn_phy.c | 184 uint32_t numBits, uint32_t firstBit, uint32_t column) in ath9k_phy_modify_rx_buffer() argument 197 (column * 8); in ath9k_phy_modify_rx_buffer() 200 (column * 8)) & mask; in ath9k_phy_modify_rx_buffer()
|