Searched refs:rows (Results 1 - 25 of 329) 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));
58 if (rows)
59 *rows = form->rows;
H A Dfld_info.c40 | int *rows, int *cols,
51 int *rows, int *cols,
57 rows, cols,
64 if (rows)
65 *rows = field->rows;
50 field_info(const FIELD *field, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument
/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));
63 if (rows)
64 *rows = menu->height;
H A Dm_format.c35 * Set and get maximum numbers of rows and columns in menus *
46 | Function : int set_menu_format(MENU *menu, int rows, int cols)
48 | Description : Sets the maximum number of rows and columns of items
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)
76 if (rows == 0)
77 rows = menu->frows;
84 menu->frows = rows;
87 assert(rows >
123 menu_format(const MENU * menu, int *rows, int *cols) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_win.c60 #define rows ws_row macro
67 #define rows ts_lines macro
74 int rows; member in struct:__anon12837
102 winsize.rows = 0;
108 exp_win_rows_set(rows)
109 char *rows;
111 winsize.rows = atoi(rows);
118 static char rows [20]; local
120 sprintf(rows,"
181 static char rows [20]; local
[all...]
H A Dexp_win.h14 void exp_win_rows_set _ANSI_ARGS_ ((char* rows));
19 void exp_win2_rows_set _ANSI_ARGS_ ((int fd, char* rows));
/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(
[all...]
/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
80 if (rows) *rows = ws.ws_row;
91 if (rows) *rows = ts.ts_lines;
102 if (rows) *rows = ws.bytesy;
112 if (rows) *rows
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/controlwidget/
H A DradioMatrix.tcl33 # -rows Number of rows.
37 # If -values is provided, only one of -rows/-columns can be provided.
38 # If -values is not provided, both -rows and -columns must be provided
70 option -rows {1}
96 # If the values have not been provided, then use the rows/columns
100 set totalValues [expr $options(-columns) * $options(-rows)]
147 ($options(-rows) eq "" || $options(-columns) eq "")} {
148 error "If -values is not supplied, but -rows and -coumns must be."
150 if {($options(-rows) n
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/CloudKeychainProxy/scripts/
H A Dsshauser29 set rows [stty rows]
31 stty rows $rows columns $cols < $spawn_out(slave,name)
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_matrix.rb10 def mkmatrix(rows, cols)
12 mx = Array.new(rows)
13 (0 .. (rows - 1)).each do |bi|
24 def mmult(rows, cols, m1, m2)
25 m3 = Array.new(rows)
26 (0 .. (rows - 1)).each do |bi|
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tktable/
H A Dbasic.rb13 rows = 8
17 ((-(rows))..rows).each{|x|
25 table = Tk::TkTable.new(:rows=>rows, :cols=>cols, :variable=>ary,
H A Dmaxsize.rb14 rows = 40000
18 ((-(rows))..rows).each{|x|
26 table = Tk::TkTable.new(:rows=>rows, :cols=>cols, :variable=>ary,
/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/ruby-104/ruby/lib/
H A Dmatrix.rb35 # * Matrix[*rows]
36 # * Matrix.[](*rows)
37 # * Matrix.rows(rows, copy = true)
49 # To access Matrix elements/columns/rows/submatrices/properties:
131 attr_reader :rows
132 protected :rows
140 def Matrix.[](*rows)
141 rows(rows, fals
152 def Matrix.rows(rows, copy = true) singleton method in class:Matrix
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLResultSet.idl35 readonly attribute SQLResultSetRowList rows;
/macosx-10.9.5/ruby-104/ruby/test/csv/
H A Dtest_table.rb17 @rows = [ CSV::Row.new(%w{A B C}, [1, 2, 3]),
20 @table = CSV::Table.new(@rows)
23 [CSV::Row.new(%w{A B C}, %w{A B C}, true)] + @rows
41 rows = @table.by_row
43 assert_equal(:row, rows.mode)
44 assert_equal(@table, rows)
54 assert_equal(@rows.first.headers, @table.headers)
62 @rows.each_index { |i| assert_equal(@rows[i], @table[i]) }
66 @rows
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dtkterm53 set rows 24 ;# number of rows in term
54 set rowsDumb $rows ;# number of rows in term when in dumb mode - this can
115 # for {set i 1} {$i<=$rows} {incr i} {
132 set env(LINES) $rows
211 stty rows $rows columns $cols < $spawn_out(slave,name)
217 -relief sunken -bd 1 -width $cols -height $rows -wrap none -setgrid 1
267 global rows col
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DRequestTimingView.js87 var rows = [];
96 rows.push(row);
132 for (var i = 0; i < rows.length; ++i) {
137 td.textContent = rows[i].title;
148 bar.className = "network-timing-bar " + rows[i].className;
149 bar.style.left = scale * rows[i].start + "px";
150 bar.style.right = scale * (total - rows[i].end) + "px";
151 bar.style.backgroundColor = rows[i].color;
157 if (total - rows[i].end < rows[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTableSectionElement.cpp62 RefPtr<HTMLCollection> children = rows();
84 RefPtr<HTMLCollection> children = rows();
97 int rows = 0; local
101 rows++;
105 return rows;
148 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() function in class:WebCore::HTMLTableSectionElement
H A DHTMLTableSectionElement.idl28 readonly attribute HTMLCollection rows;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DTable.pm44 my ($size, $rows, $cols, $coloff, $overlap, $error);
69 # calculate number of columns based on a specified number of rows
70 if ($rows = $params->{ ROWS }) {
71 if ($size < $rows) {
72 $rows = $size; # pad?
77 $coloff = $rows - $overlap;
82 # calculate number of rows based on a specified number of columns
86 $rows = 1;
92 $rows = $coloff + $overlap;
96 $rows
184 sub rows { subroutine
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DTable.pm44 my ($size, $rows, $cols, $coloff, $overlap, $error);
69 # calculate number of columns based on a specified number of rows
70 if ($rows = $params->{ ROWS }) {
71 if ($size < $rows) {
72 $rows = $size; # pad?
77 $coloff = $rows - $overlap;
82 # calculate number of rows based on a specified number of columns
86 $rows = 1;
92 $rows = $coloff + $overlap;
96 $rows
184 sub rows { subroutine
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dpropsvec.c32 int32_t rows; member in struct:UPropsVectors
68 pv->rows=2+(UPVEC_MAX_CP-UPVEC_FIRST_SPECIAL_CP);
70 /* set the all-Unicode row and the special-value rows */
72 uprv_memset(row, 0, pv->rows*columns*4);
98 limit=pv->rows;
184 /* find the rows whose ranges overlap with the input range */
186 /* find the first and last rows, always successful */
192 * input range (only possible for the first and last rows)
198 /* split first/last rows if necessary */
200 int32_t count, rows; local
336 int32_t i, columns, valueColumns, rows, count; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/search/
H A Dsubquery.t20 attrs => { rows => 5 },
31 artist_id => { 'in' => $art_rs->search({}, { rows => 1 })->get_column( 'id' )->as_query },
42 $cdrs->search({}, { rows => 1 })->get_column('id')->as_query,
54 $cdrs->search({}, { rows => 1 })->get_column('id')->as_query,

Completed in 193 milliseconds

1234567891011>>