Searched refs:rows (Results 126 - 150 of 325) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLCollection09.js81 the "rows" attribute. Invoke the item(index) method with an index
106 rowsnodeList = testNode.rows;
H A DHTMLTableElement07.js78 The rows attribute returns a collection of all the rows in the table,
81 Retrieve the rows attribute from the second TABLE element and
114 rowsnodeList = testNode.rows;
H A DHTMLTableSectionElement13.js78 The rows attribute specifies the collection of rows in this table section.
81 the rows length attribute.
104 rowsnodeList = testNode.rows;
H A DHTMLTableSectionElement14.js78 The rows attribute specifies the collection of rows in this table section.
81 the rows length attribute.
104 rowsnodeList = testNode.rows;
H A DHTMLTableSectionElement15.js78 The rows attribute specifies the collection of rows in this table section.
81 the rows length attribute.
104 rowsnodeList = testNode.rows;
H A Dtable07.js78 The collection of rows in this table section.
79 The value of attribute rows of the tablesection element is read and checked against the expected value.
105 vcollection = vsection.rows;
H A Dtable15.js78 The collection of rows in this table section.
79 The value of attribute rows of the tablesection element is read and checked against the expected value.
105 vcollection = vsection.rows;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTable.h66 AccessibilityChildrenVector& rows();
H A DAccessibilityARIAGridRow.cpp65 // The contiguous disclosed rows will be the rows in the table that
71 // Search for rows that match the correct level.
72 // Only take the subsequent rows from this one that are +1 from this row's level.
78 AccessibilityChildrenVector& allRows = static_cast<AccessibilityTable*>(parent)->rows();
105 AccessibilityChildrenVector& allRows = static_cast<AccessibilityTable*>(parent)->rows();
/external/webkit/Source/WebCore/storage/
H A DSQLStatement.cpp113 SQLResultSetRowList* rows = resultSet->rows(); local
116 rows->addColumn(statement.getColumnName(i));
120 rows->addResult(statement.getColumnValue(i));
143 // sqlite3_total_changes() here instead of sqlite3_changed, because that includes rows modified from within a trigger
/external/webkit/Source/WebCore/html/
H A DHTMLTableElement.h60 PassRefPtr<HTMLCollection> rows();
69 void addSharedGroupDecls(bool rows, Vector<CSSMutableStyleDeclaration*>&);
H A DHTMLTextAreaElement.cpp119 int rows = attr->value().toInt(); local
120 if (rows <= 0)
121 rows = defaultRows;
122 if (m_rows != rows) {
123 m_rows = rows;
421 void HTMLTextAreaElement::setRows(int rows) argument
423 setAttribute(rowsAttr, String::number(rows));
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_matrix.h30 EAPI Ewk_Tile_Matrix *ewk_tile_matrix_new(Ewk_Tile_Unused_Cache *tuc, unsigned long cols, unsigned long rows, Evas_Colorspace cspace, void (*render_cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *update), const void *data);
33 EAPI void ewk_tile_matrix_resize(Ewk_Tile_Matrix *tm, unsigned long cols, unsigned long rows);
H A Dewk_tiled_backing_store.c81 long cols, rows; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon14805
100 unsigned long cols, rows; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon14809::__anon14811
259 for (i = 0; i < priv->view.rows; i++) {
502 || (unsigned long)(m_row) >= priv->model.cur.rows) {
688 end = priv->view.items + priv->view.rows;
694 priv->view.rows = 0;
729 (tuc, priv->model.cur.cols, priv->model.cur.rows, priv->cspace,
810 priv->model.cur.rows = 1;
812 priv->model.old.rows = 0;
909 long cols, rows, old_row local
1405 unsigned long cols, rows; local
[all...]
/external/opencv/cv/src/
H A Dcvpyramids.cpp87 worktype* rows[PD_SZ]; /* array of rows pointers. dim(rows) is PD_SZ */ \
100 /* set first and last indices of buffer rows which are need to be filled */ \
105 /* assign rows pointers */ \
108 rows[y1] = buffer + k; \
113 row01 = rows[0]; \
114 row23 = rows[2]; \
115 row4 = rows[4]; \
117 /* fill new buffer rows wit
[all...]
H A Dcvfilter.cpp61 rows = 0;
74 rows = 0;
87 rows = 0;
99 int min_rows = max_ky*2 + 3, rows = MAX(min_rows,10), row_sz; local
116 buf_size = rows*row_sz;
184 rows = (uchar**)ptr;
307 uchar* row1 = border_mode == IPL_BORDER_CONSTANT ? const_row : rows[max_ky];
309 for( i = 0; i < top_rows && rows[i] == 0; i++ )
310 rows[i] = row1;
312 row1 = border_mode == IPL_BORDER_CONSTANT ? const_row : rows[row_coun
[all...]
/external/skia/samplecode/
H A DSampleWarp.cpp216 void init(const SkRect& bounds, int rows, int cols,
221 int rows() const { return fRows; } function in class:Mesh
268 void Mesh::init(const SkRect& bounds, int rows, int cols, argument
270 SkASSERT(rows > 0 && cols > 0);
273 fRows = rows;
277 fCount = (rows + 1) * (cols + 1);
282 fIndexCount = rows * cols * 6;
286 const SkScalar dx = bounds.width() / rows;
289 const SkScalar dtx = texture.width() / rows;
294 for (int x = 0; x <= rows;
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderFrameSet.cpp137 int rows = frameSet()->totalRows(); local
142 for (int r = 0; r < rows; r++) {
218 // Count the total length of all of the fixed columns/rows -> totalFixed
219 // Count the number of columns/rows which are fixed -> countFixed
226 // Count the total percentage of all of the percentage columns/rows -> totalPercent
227 // Count the number of columns/rows which are percentages -> countPercent
234 // Count the total relative of all the relative columns/rows -> totalRelative
235 // Count the number of columns/rows which are relative -> countRelative
244 // Fixed columns/rows are our first priority. If there is not enough space to fit all fixed
245 // columns/rows w
418 int rows = frameSet()->totalRows(); local
439 int rows = frameSet()->totalRows(); local
474 size_t rows = frameSet()->totalRows(); local
526 int rows = frameSet()->totalRows(); local
649 int rows = frameSet()->totalRows(); local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c110 int rows, int cols, int mod );
114 int rows, int cols, int mod );
128 int rows, int cols, int mod );
132 int rows, int cols, int mod );
138 int rows, int cols, int mod )
155 y = rows / 2;
208 int rows, int cols, int mod )
227 y = rows / 2;
292 int rows, int cols, int mod )
309 y = rows /
135 Color16DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
205 Color24DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
289 Color32DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
364 Color16DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
437 Color24DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
535 Color32DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
612 Color16DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
656 Color24DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
706 Color32DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
754 Color16DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
798 Color24DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
854 Color32DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
[all...]
/external/freetype/src/sfnt/
H A Dttsbit.c103 line_buff -= line_incr * ( target->rows - 1 );
988 FT_Int rows, count; local
1000 rows = map->rows;
1004 for ( count = 0; count < rows; count++ )
1020 if ( count >= rows )
1029 ( rows - count ) * line_len );
1035 map->rows -= count;
1036 rows -= count;
1045 line = (FT_Byte*)map->buffer + ( rows
[all...]
/external/opencv/cxcore/src/
H A Dcximage.cpp88 CV_CALL( img = cvCreateImageHeader( cvSize(m->cols,m->rows),
215 CvMatrix::CvMatrix( int rows, int cols, int type, CvMemStorage* storage, bool alloc_data ) argument
220 cvInitMatHeader( matrix, rows, cols, type, alloc_data ?
221 cvMemStorageAlloc( storage, rows*cols*CV_ELEM_SIZE(type) ) : 0 );
242 CV_CALL( m = cvCreateMat( src->rows, src->cols, src->type ));
275 CV_CALL( temp_mat = cvCreateMat( m->rows, m->cols,
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DTiledImageOpenVG.cpp105 int rows = (bottomIndex - topIndex) + 1;
109 (rows <= (m_tiles.size() / m_numColumns)) ? rows : (m_tiles.size() / m_numColumns));
/external/chromium/chrome/browser/importer/
H A Din_process_importer_bridge.cc58 const std::vector<history::URLRow> &rows,
63 rows, visit_source));
57 SetHistoryItems( const std::vector<history::URLRow> &rows, history::VisitSource visit_source) argument
/external/icu4c/common/
H A Duresdata.c649 Row *rows; member in struct:TempTable
833 pTempTable->rows[i].keyIndex=ds->readUInt16(pKey16[i]);
834 pTempTable->rows[i].sortIndex=i;
838 pTempTable->rows[i].keyIndex=udata_readInt32(ds, pKey32[i]);
839 pTempTable->rows[i].sortIndex=i;
842 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
868 oldIndex=pTempTable->rows[i].sortIndex;
883 oldIndex=pTempTable->rows[i].sortIndex;
902 oldIndex=pTempTable->rows[i].sortIndex;
956 Row rows[STACK_ROW_CAPACIT local
[all...]
/external/libvpx/vp8/common/
H A Donyx.h218 int vp8_set_roimap(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
219 int vp8_set_active_map(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols);

Completed in 732 milliseconds

1234567891011>>