Searched refs:rows (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/macosx-10.10/ncurses-44/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.10/ncurses-44/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.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDetailsSectionGroup.js26 WebInspector.DetailsSectionGroup = function(rows) {
32 this.rows = rows;
47 get rows()
52 set rows(rows)
56 this._rows = rows || [];
H A DEventListenerSectionGroup.js31 var rows = [];
32 rows.push(new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Node"), this._nodeTextOrLink()));
33 rows.push(new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Function"), this._functionTextOrLink()));
34 rows.push(new WebInspector.DetailsSectionSimpleRow(WebInspector.UIString("Type"), this._type()));
36 WebInspector.DetailsSectionGroup.call(this, rows);
/macosx-10.10/tcl-105/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:__anon12844
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.10/llvmCore-3425.0.34/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.10/ksh-23/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.10/tcl-105/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.10/WebCore-7600.1.25/Modules/webdatabase/
H A DSQLResultSet.idl35 readonly attribute SQLResultSetRowList rows;
/macosx-10.10/ruby-106/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.10/ruby-106/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.10/WebCore-7600.1.25/rendering/style/
H A DGridCoordinate.h43 // A span in a single direction (either rows or columns). Note that |resolvedInitialPosition|
81 // This represents a grid area that spans in both rows' and columns' direction.
87 , rows(0, 0)
93 , rows(r)
99 return columns == o.columns && rows == o.rows;
108 GridSpan rows; member in class:WebCore::GridCoordinate
/macosx-10.10/ruby-106/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.10/ruby-106/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.10/tcl-105/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.10/WebCore-7600.1.25/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.10/CPANInternal-159.1/Template-Toolkit-2.25/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.10/ICU-531.30/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.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/Bookmarks/
H A DDNDArrayController.py32 def tableView_writeRows_toPasteboard_(self, tv, rows, pboard):
36 # If the number of rows is not 1, then we only support our own types.
40 if len(rows) != 1:
46 row = rows[0]
58 # add rows array for local move
59 pboard.setPropertyList_forType_(rows, MovedRowsType)
61 # create new array of selected rows for remote drop
84 rows = info.draggingPasteboard().propertyListForType_(MovedRowsType)
85 indexSet = self.indexSetFromRows_(rows)
87 # set selected rows t
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/Bookmarks/
H A DDNDArrayController.py32 def tableView_writeRows_toPasteboard_(self, tv, rows, pboard):
36 # If the number of rows is not 1, then we only support our own types.
40 if len(rows) != 1:
46 row = rows[0]
58 # add rows array for local move
59 pboard.setPropertyList_forType_(rows, MovedRowsType)
61 # create new array of selected rows for remote drop
84 rows = info.draggingPasteboard().propertyListForType_(MovedRowsType)
85 indexSet = self.indexSetFromRows_(rows)
87 # set selected rows t
[all...]

Completed in 363 milliseconds

1234567891011>>