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

1234567891011>>

/macosx-10.9.5/text_cmds-87/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.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DAccessorMapping.pm10 foreach my $col (@cols) {
11 my($accessor, $col) = ref $col ? @$col : (undef, $col);
14 if( defined $accessor and ($accessor ne $col)) {
18 $ro_meth = $class->accessor_name_for($col);
19 $wo_meth = $class->mutator_name_for($col);
22 # warn "class: $class / col: $col / r
[all...]
H A DColumnsAsHash.pm52 for my $col ($self->columns) {
53 if( exists $self->{$col} ) {
54 warn "Skipping mapping $col to a hash key because it exists";
57 tie $self->{$col}, 'DBIx::Class::CDBICompat::Tied::ColumnValue',
58 $self, $col;
70 my($class, $obj, $col) = @_;
71 my $self = [$obj, $col];
79 my($obj, $col) = @$self;
83 carp "Column '$col' of '$class/$id' was fetched as a hash"
86 return $obj->column_info($col)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLiteStatement.h76 bool isColumnNull(int col);
77 bool isColumnDeclaredAsBlob(int col);
78 String getColumnName(int col);
79 SQLValue getColumnValue(int col);
80 String getColumnText(int col);
81 double getColumnDouble(int col);
82 int getColumnInt(int col);
83 int64_t getColumnInt64(int col);
84 const void* getColumnBlob(int col, int& size);
85 String getColumnBlobAsString(int col);
[all...]
H A DSQLiteStatement.cpp281 bool SQLiteStatement::isColumnNull(int col) argument
283 ASSERT(col >= 0);
287 if (columnCount() <= col)
290 return sqlite3_column_type(m_statement, col) == SQLITE_NULL;
293 bool SQLiteStatement::isColumnDeclaredAsBlob(int col) argument
295 ASSERT(col >= 0);
301 return equalIgnoringCase(String("BLOB"), String(reinterpret_cast<const UChar*>(sqlite3_column_decltype16(m_statement, col))));
304 String SQLiteStatement::getColumnName(int col) argument
306 ASSERT(col >= 0);
310 if (columnCount() <= col)
315 getColumnValue(int col) argument
345 getColumnText(int col) argument
356 getColumnDouble(int col) argument
367 getColumnInt(int col) argument
378 getColumnInt64(int col) argument
389 getColumnBlobAsString(int col) argument
411 getColumnBlobAsVector(int col, Vector<char>& result) argument
437 getColumnBlob(int col, int& size) argument
465 returnTextResults(int col, Vector<String>& v) argument
487 returnIntResults(int col, Vector<int>& v) argument
507 returnInt64Results(int col, Vector<int64_t>& v) argument
527 returnDoubleResults(int col, Vector<double>& v) argument
[all...]
/macosx-10.9.5/man-16/man/src/
H A Dmwi18 zcat $i | col -bx | sed '1,/^NAME/d; /^[A-Z][A-Z]/q' | tail -1
/macosx-10.9.5/vim-53/runtime/tools/
H A Dmve.awk21 col=RLENGTH-2
22 printf("%s, line %d, col %d : %s\n", file,line,col,msg)
/macosx-10.9.5/ruby-104/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.9.5/text_cmds-87/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.9.5/CPANInternal-140/Sub-Exporter/t/
H A Dutil-merge.t40 my %col;
44 defaults => ($col{defaults} = { x => 10 }),
45 etc => ($col{etc} = { home => "Kansas" }),
56 stack => [ 'Thing', 'stack', { x => 20, y => 30 }, \%col ],
57 kcats => [ \%col, { x => 10, y => 3 }, 'kcats', 'Thing' ],
58 bogus => [ 'Thing', 'bogus', {}, \%col ],
59 klame => [ 'Thing', 'klame', { bar => 99 }, \%col ],
60 other => [ 'Thing', 'other', { home => "Kansas" }, \%col ],
61 plain => [ 'Thing', 'plain', { foo => 10 }, \%col ],
/macosx-10.9.5/tcl-102/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.9.5/lsof-52/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.9.5/ncurses-42/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/apr-30/apr-util/apr-util/test/
H A Dnw_misc.c13 uint16_t row, col; local
15 GetScreenSize(&row, &col);
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dspell6 mantools/html2readme $i | col -b | spell | fgrep -vxf proto/stop
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/DBI/Relationship/
H A DHasA.pm34 my $col = $self->accessor;
37 defined(my $value = $self->_attrs($col)) or return;
38 my $meta = $self->meta_info(has_a => $col);
56 return $self->_attribute_store($col, $value)
62 return $self->_croak("Can't inflate $col to $a_class using '$value': "
70 return $self->_attribute_store($col, $value)
76 "Can't inflate $col to $a_class " . "via $inflator using '$value'")
83 my $col = $self->accessor;
86 return unless $self->_attribute_exists($col);
87 $self->_attribute_store($col
[all...]
/macosx-10.9.5/CPANInternal-140/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...]

Completed in 317 milliseconds

1234567891011>>