Searched refs:col (Results 1 - 25 of 715) sorted by relevance

1234567891011>>

/macosx-10.10.1/text_cmds-88/vis/
H A Dfoldit.c47 foldit(chunk, col, max)
49 int col, max;
63 col = 0;
66 col = (col + 8) &~ 07;
69 col = col ? col - 1 : 0;
72 col++;
74 if (col > (ma
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorDragToAdjustNumberController.css27 cursor: col-resize;
/macosx-10.10.1/man-16/man/src/
H A Dmwi18 zcat $i | col -bx | sed '1,/^NAME/d; /^[A-Z][A-Z]/q' | tail -1
/macosx-10.10.1/vim-55/runtime/tools/
H A Dmve.awk21 col=RLENGTH-2
22 printf("%s, line %d, col %d : %s\n", file,line,col,msg)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tcltklib/
H A Dlines2.rb12 col = "blue"
14 col = "red"
17 # TkcLine.new($a, i, 0, 0, 500 - i, "-fill", col)
27 col = "blue"
29 col = "red"
32 TkcLine.new($a, i, 0, 0, 500 - i, "-fill", col)
H A Dlines3.rb12 col = "blue"
14 col = "red"
17 # $a.create(TkcLine, i, 0, 0, 500 - i, "fill"=>col)
27 col = "blue"
29 col = "red"
32 $a.create(TkcLine, i, 0, 0, 500 - i, "fill"=>col)
H A Dlines4.rb12 col = "blue"
14 col = "red"
17 # TkCore::INTERP.__invoke($a.path, "create", "line", i.to_s, '0', '0', (500 - i).to_s, "-fill", col)
27 col = "blue"
29 col = "red"
32 TkCore::INTERP.__invoke($a.path, "create", "line", i.to_s, '0', '0', (500 - i).to_s, "-fill", col)
H A Dlines1.rb12 col = "blue"
14 col = "red"
17 # $a.e("create line", i, 0, 0, 500 - i, "-fill", col)
27 col = "blue"
29 col = "red"
32 $a.e("create line", i, 0, 0, 500 - i, "-fill", col)
H A Dsample2.rb80 def get_disk(row, col)
81 return @data[row][col]
84 def reverse_to(row, col, my_disk, dir_y, dir_x)
86 x = col
101 end until y == row && x == col
104 def put_disk(row, col, disk)
105 @data[row][col] = disk
107 notify_observers(row, col)
109 reverse_to(row, col, disk, *dir)
125 def count_point_to(row, col, my_dis
[all...]
/macosx-10.10.1/text_cmds-88/fold/
H A Dfold.c147 int col, i, indx, space; local
150 col = indx = 0;
154 col = indx = 0;
157 if ((col = newpos(col, ch)) > width) {
169 col = 0;
171 col = newpos(col, buf[i]);
174 col = indx = 0;
176 col
200 newpos(int col, wint_t ch) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistSort.tcl21 # Sorts the contents of the tablelist widget win by its col'th column. Returns
24 proc tablelist::sortByColumn {win col} {
34 if {[catch {::$win columnindex $col} result] != 0} {
38 return -code error "column index \"$col\" out of range"
40 set col $result
41 if {[::$win columncget $col -showlinenumbers]} {
48 if {[set idx [lsearch -exact [::$win sortcolumnlist] $col]] >= 0 &&
59 if {[catch {::$win sortbycolumn $col -$sortOrder} result] == 0} {
70 # Adds the col'th column of the tablelist widget win to the latter's list of
74 proc tablelist::addToSortColumns {win col} {
[all...]
H A DtablelistConfig.tcl384 for {set col 0} {$col < $data(colCount)} {incr col} {
385 if {$data($col-maxwidth) > 0} {
386 set data($col-maxPixels) \
387 [charsToPixels $win $val $data($col-maxwidth)]
423 for {set col 0} {$col < $data(colCount)} {incr col} {
424 set w $data(hdrTxtFrLbl)$col
[all...]
/macosx-10.10.1/lsof-53/lsof/
H A Dusage.c48 _PROTOTYPE(static int print_in_col,(int col, char *cp));
80 print_in_col(col, cp)
81 int col; /* column number */
85 switch (col) {
94 col = 0;
96 col++;
98 return(col);
339 int col, i; local
499 col = print_in_col(1, "-?|-h list help");
500 col
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Dfirework.c89 explode(int row, int col) argument
93 mvprintw(row, col, "-");
98 mvprintw(row - 1, col - 1, " - ");
99 mvprintw(row + 0, col - 1, "-+-");
100 mvprintw(row + 1, col - 1, " - ");
105 mvprintw(row - 2, col - 2, " --- ");
106 mvprintw(row - 1, col - 2, "-+++-");
107 mvprintw(row + 0, col - 2, "-+#+-");
108 mvprintw(row + 1, col - 2, "-+++-");
109 mvprintw(row + 2, col
[all...]
H A Dinserts.c143 int col; local
184 for (col = margin + 1; col < COLS; col += MY_TABSIZE)
185 mvwvline(work, row, col, '.', limit - 2);
240 for (col = 0; col < length; col += n_opt) {
241 col2 = ColOf(buffer, col, margin);
243 InsNStr(buffer + col, LE
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/ClassBrowser/
H A DClassBrowser.py61 def browser_willDisplayCell_atRow_column_(self, browser, cell, row, col):
62 cell.setLeaf_(not self.columns[col][row].__subclasses__())
63 cell.setStringValue_(self.columns[col][row].__name__)
65 def browser_numberOfRowsInColumn_(self, browser, col):
66 if col == 0:
68 del self.columns[col:]
69 cls = self.columns[col - 1][browser.selectedRowInColumn_(col - 1)]
80 col = len(self.columns)
83 col
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/ClassBrowser/
H A DClassBrowser.py61 def browser_willDisplayCell_atRow_column_(self, browser, cell, row, col):
62 cell.setLeaf_(not self.columns[col][row].__subclasses__())
63 cell.setStringValue_(self.columns[col][row].__name__)
65 def browser_numberOfRowsInColumn_(self, browser, col):
66 if col == 0:
68 del self.columns[col:]
69 cls = self.columns[col - 1][browser.selectedRowInColumn_(col - 1)]
80 col = len(self.columns)
83 col
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/ClassBrowser/
H A DClassBrowser.py61 def browser_willDisplayCell_atRow_column_(self, browser, cell, row, col):
62 cell.setLeaf_(not self.columns[col][row].__subclasses__())
63 cell.setStringValue_(self.columns[col][row].__name__)
65 def browser_numberOfRowsInColumn_(self, browser, col):
66 if col == 0:
68 del self.columns[col:]
69 cls = self.columns[col - 1][browser.selectedRowInColumn_(col - 1)]
80 col = len(self.columns)
83 col
[all...]
/macosx-10.10.1/postfix-255/postfix/mantools/
H A Dspell6 mantools/html2readme $i | col -b | spell | fgrep -vxf proto/stop
/macosx-10.10.1/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/Relationship/
H A DHasA.pm33 my $col = $rel->accessor;
36 defined(my $value = $self->_attrs($col)) or return;
37 my $meta = $self->meta_info($rel->name => $col);
55 return $self->_attribute_store($col, $value)
61 return $self->_croak("Can't inflate $col to $a_class using '$value': "
69 return $self->_attribute_store($col, $value)
75 "Can't inflate $col to $a_class " . "via $inflator using '$value'")
82 my $col = $self->accessor;
85 return unless $self->_attribute_exists($col);
86 $self->_attribute_store($col
[all...]
/macosx-10.10.1/libarchive-30/libarchive/doc/text/
H A DMakefile6 nroff -mdoc ../../libarchive/archive_entry.3 | col -b > archive_entry.3.txt
9 nroff -mdoc ../../libarchive/archive_read.3 | col -b > archive_read.3.txt
12 nroff -mdoc ../../libarchive/archive_read_disk.3 | col -b > archive_read_disk.3.txt
15 nroff -mdoc ../../libarchive/archive_util.3 | col -b > archive_util.3.txt
18 nroff -mdoc ../../libarchive/archive_write.3 | col -b > archive_write.3.txt
21 nroff -mdoc ../../libarchive/archive_write_disk.3 | col -b > archive_write_disk.3.txt
24 nroff -mdoc ../../libarchive/cpio.5 | col -b > cpio.5.txt
27 nroff -mdoc ../../libarchive/libarchive-formats.5 | col -b > libarchive-formats.5.txt
30 nroff -mdoc ../../libarchive/libarchive.3 | col -b > libarchive.3.txt
33 nroff -mdoc ../../libarchive/libarchive_internals.3 | col
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DCommonToken.cpp15 CommonToken::CommonToken() : Token(), line(1), col(1), text("")
21 , col(1)
28 , col(1)
/macosx-10.10.1/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_in_wch.c47 int row, col; local
53 getyx(win, row, col);
55 *wcval = win->_line[row].text[col];
/macosx-10.10.1/ruby-106/ruby/ext/psych/lib/psych/
H A Dsyntax_error.rb8 def initialize file, line, col, offset, problem, context
11 message = "(%s): %s at line %d column %d" % [filename, err, line, col]
15 @column = col
/macosx-10.10.1/groff-38/groff/src/devices/grohtml/
H A Doutput.cpp148 : fp(f), max_line_length(n), col(0), fixed_point(0), newlines(0)
171 if (col != 0) {
173 col = 0;
186 if (col != 0)
191 col = 0;
198 if (col != 0)
200 col = 0;
222 if ((col + n + last_word.get_length() + 1 > max_line_length) && (newlines)) {
224 col = last_word.flush(fp);
236 if ((col
[all...]

Completed in 370 milliseconds

1234567891011>>