Searched refs:cols (Results 1 - 25 of 271) sorted by relevance

1234567891011

/macosx-10.9.5/ncurses-42/ncurses/form/
H A Dfrm_scale.c39 | Function : int scale_form( const FORM *form, int *rows, int *cols )
48 scale_form(const FORM *form, int *rows, int *cols) argument
50 T((T_CALLED("scale_form(%p,%p,%p)"), form, rows, cols));
60 if (cols)
61 *cols = form->cols;
H A Dfld_info.c40 | int *rows, int *cols,
51 int *rows, int *cols,
57 rows, cols,
66 if (cols)
67 *cols = field->cols;
50 field_info(const FIELD *field, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DStringify.pm15 my @cols = $self->columns('Stringify');
16 @cols = $self->primary_column unless @cols;
17 my $ret = join "/", map { $self->get_column($_) || '' } @cols;
H A DGetSet.pm10 my ($self, @cols) = @_;
11 if (@cols > 1) {
12 return map { $self->get_column($_) } @cols;
H A DColumnGroups.pm26 my ($class, $group, @cols) = @_;
27 $class->mk_group_accessors(column => @cols);
28 $class->add_columns(@cols);
29 $class->_register_column_group($group => @cols);
33 my ($class, @cols) = @_;
34 $class->result_source_instance->add_columns(@cols);
38 my ($class, $group, @cols) = @_;
45 $class->set_primary_key(@cols);
46 $groups->{'Essential'}{$_} ||= 1 for @cols;
51 $groups->{'Primary'}{$cols[
[all...]
H A DTempColumns.pm13 my ($class, $group, @cols) = @_;
15 return $class->next::method($group, @cols) unless $group eq 'TEMP';
17 my %new_cols = map { $_ => 1 } @cols;
27 $class->_register_column_group($group => @cols);
28 $class->mk_group_accessors('temp' => @cols);
/macosx-10.9.5/ncurses-42/ncurses/menu/
H A Dm_scale.c54 scale_menu(const MENU * menu, int *rows, int *cols) argument
56 T((T_CALLED("scale_menu(%p,%p,%p)"), menu, rows, cols));
65 if (cols)
66 *cols = menu->width;
H A Dm_format.c46 | Function : int set_menu_format(MENU *menu, int rows, int cols)
59 set_menu_format(MENU * menu, int rows, int cols) argument
63 T((T_CALLED("set_menu_format(%p,%d,%d)"), menu, rows, cols));
65 if (rows < 0 || cols < 0)
78 if (cols == 0)
79 cols = menu->fcols;
85 menu->fcols = cols;
87 assert(rows > 0 && cols > 0);
88 total_rows = (menu->nitems - 1) / cols + 1;
90 minimum(menu->nitems, cols)
123 menu_format(const MENU * menu, int *rows, int *cols) argument
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dfold.c89 static void fold(Sfio_t *in, Sfio_t *out, register int width, const char *cont, size_t contsize, char *cols) argument
94 cols[0] = 0;
105 if(cols['\b']==0 && (n=sfvalue(in))<=width)
115 while((n=cols[*(unsigned char*)cp++])==0);
154 if(cols[' '])
177 char cols[1<<CHAR_BIT]; local
180 memset(cols, 0, sizeof(cols));
181 cols['\t'] = T_TAB;
182 cols['\
[all...]
/macosx-10.9.5/groff-38/groff/src/devices/grohtml/
H A Dhtml-table.h63 typedef struct cols { struct
67 struct cols *next;
68 } cols; typedef in typeref:struct:cols
75 cols *get_column (int coln);
77 int modify_column (cols *c, int hstart, int hend, char align);
85 int is_gap (cols *c);
91 int get_right (cols *c);
100 cols *columns; /* column entries */
102 cols *last_col; /* last column started */
105 void remove_cols (cols *
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/PBQP/
H A DMath.h116 Matrix(unsigned rows, unsigned cols) :
117 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
122 Matrix(unsigned rows, unsigned cols, PBQPNum initVal) :
123 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
124 std::fill(data, data + (rows * cols), initVal);
129 rows(m.rows), cols(
[all...]
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_matrix.rb10 def mkmatrix(rows, cols)
14 row = Array.new(cols, 0)
15 (0 .. (cols - 1)).each do |j|
24 def mmult(rows, cols, m1, m2)
27 row = Array.new(cols, 0)
28 (0 .. (cols - 1)).each do |j|
30 (0 .. (cols - 1)).each do |k|
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastwinsize.c26 * return terminal rows and cols
72 astwinsize(int fd, register int* rows, register int* cols) argument
81 if (cols) *cols = ws.ws_col;
92 if (cols) *cols = ts.ts_cols;
103 if (cols) *cols = ws.bytesx;
113 if (cols) *cols
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/curses/
H A Dhello.rb9 (lines - 5) / 2, (cols - width) / 2)
22 setpos((lines - 5) / 2, (cols - 10) / 2)
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tktable/
H A Dbasic.rb14 cols = 8
18 ((-(cols))..cols).each{|y|
25 table = Tk::TkTable.new(:rows=>rows, :cols=>cols, :variable=>ary,
H A Dmaxsize.rb15 cols = 10
19 ((-(cols))..cols).each{|y|
26 table = Tk::TkTable.new(:rows=>rows, :cols=>cols, :variable=>ary,
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/
H A DSQLite.pm70 my $cols = $1;
73 $cols =~ s/\-\-.*\n/\n/g;
77 my $cols_no_bracketed_commas = $cols;
79 ( extract_bracketed( $cols, "()", "[^(]*" ) )[0] )
110 my $cols = $1;
111 $cols =~ s/\s+$//;
112 my @cols = map { lc } split(/\s*,\s*/, $cols);
113 my $name = join(q{_}, @cols) . '_unique';
114 push(@uniqs, [ $name => \@cols ]);
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DSQLite.pm70 my $cols = $1;
73 $cols =~ s/\-\-.*\n/\n/g;
77 my $cols_no_bracketed_commas = $cols;
79 ( extract_bracketed( $cols, "()", "[^(]*" ) )[0] )
110 my $cols = $1;
111 $cols =~ s/\s+$//;
112 my @cols = map { lc } split(/\s*,\s*/, $cols);
113 my $name = join(q{_}, @cols) . '_unique';
114 push(@uniqs, [ $name => \@cols ]);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DCustomFilterMesh.h46 static PassRefPtr<CustomFilterMesh> create(GraphicsContext3D* context, unsigned cols, unsigned rows, const FloatRect& meshBox, CustomFilterMeshType meshType) argument
48 return adoptRef(new CustomFilterMesh(context, cols, rows, meshBox, meshType));
62 CustomFilterMesh(GraphicsContext3D*, unsigned cols, unsigned rows, const FloatRect& meshBox, CustomFilterMeshType);
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/DBI/
H A DColumnGrouper.pm12 my @cols = $colg->group_cols($group);
110 my @cols = map $self->add_column($_), @names;
111 $_->add_group($group) foreach @cols;
112 $self->{_groups}->{$group} = \@cols;
118 my @colg = $cols->group_cols($group);
119 my @groups = $cols->groups_for(@cols);
133 my ($self, @cols) = @_;
134 return _uniq(map $_->groups, @cols);
139 my @cols
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/DBI/
H A DColumnGrouper.pm12 my @cols = $colg->group_cols($group);
112 my @cols = map $self->add_column($_), @names;
113 $_->add_group($group) foreach @cols;
114 $self->{_groups}->{$group} = \@cols;
120 my @colg = $cols->group_cols($group);
121 my @groups = $cols->groups_for(@cols);
135 my ($self, @cols) = @_;
136 return _uniq(map $_->groups, @cols);
141 my @cols
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dtkterm56 set cols 80 ;# number of columns in term
133 set env(COLUMNS) $cols
211 stty rows $rows columns $cols < $spawn_out(slave,name)
217 -relief sunken -bd 1 -width $cols -height $rows -wrap none -setgrid 1
252 global cols cur_col cur_row
258 set space_rem_on_line [expr $cols - $cur_col]
267 global rows cols cur_row cur_col term
270 set blankline [format %*s $cols ""]\n
285 global rows cols term
288 if {$colsNew > $cols} {
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dlbuf.h32 int cols; member in struct:lbuf
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/
H A Dmetakit.py29 cols = []
35 cols.append([None])
51 cols[c].append(text)
56 cols[c][0] = widths[c] * '-'
57 cols[c].append(cols[c][0])
63 print '', justs[c](cols[c][r], widths[c]),
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/controlwidget/
H A DradioMatrix.tcl175 set cols $options(-columns)
177 # Only really need # of cols.
180 if {$cols eq ""} {
181 set cols [expr ($len + $rows - 1)/$rows]
187 for {set i 0} {$i < $cols} {incr i} {
217 # See arrangeHorizontally for the overall picture, just swap cols
221 set cols $options(-columns)
225 set rows [expr ($len + $cols -1)/$cols]

Completed in 165 milliseconds

1234567891011