Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 501) sorted by relevance

12345678910>>...21

/external/icu4c/common/
Dpropsvec.c43 uint32_t *v, *row; in upvec_open() local
70 row=pv->v; in upvec_open()
71 uprv_memset(row, 0, pv->rows*columns*4); in upvec_open()
72 row[0]=0; in upvec_open()
73 row[1]=0x110000; in upvec_open()
74 row+=columns; in upvec_open()
76 row[0]=cp; in upvec_open()
77 row[1]=cp+1; in upvec_open()
78 row+=columns; in upvec_open()
93 uint32_t *row; in _findRow() local
[all …]
/external/elfutils/doc/
Delfutils.sgml186 <row>
190 </row>
193 <row>
197 </row>
198 <row>
203 </row>
204 <row>
208 </row>
209 <row>
213 </row>
[all …]
/external/skia/gpu/src/
DGrRectanizer.cpp68 void initRow(Row* row, int rowHeight) { in initRow() argument
69 row->fLoc.set(0, fNextStripY); in initRow()
70 row->fRowHeight = rowHeight; in initRow()
93 Row* row = &fRows[HeightToRowIndex(height)]; in addRect() local
94 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height); in addRect()
96 if (0 == row->fRowHeight) { in addRect()
100 this->initRow(row, height); in addRect()
102 if (!row->canAddWidth(width, this->width())) { in addRect()
108 this->initRow(row, height); in addRect()
112 GrAssert(row->fRowHeight == height); in addRect()
[all …]
DGrRectanizer_fifo.cpp68 void initRow(Row* row, int rowHeight) { in initRow() argument
69 row->fLoc.set(0, fNextStripY); in initRow()
70 row->fRowHeight = rowHeight; in initRow()
93 Row* row = &fRows[HeightToRowIndex(height)]; in addRect() local
94 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height); in addRect()
96 if (0 == row->fRowHeight) { in addRect()
100 this->initRow(row, height); in addRect()
102 if (!row->canAddWidth(width, this->width())) { in addRect()
108 this->initRow(row, height); in addRect()
112 GrAssert(row->fRowHeight == height); in addRect()
[all …]
/external/libvpx/vp8/encoder/
Dmcomp.c43 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * Weight) >>… in vp8_mv_bit_cost()
53 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * error_per_… in mv_err_cost()
62 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col)>> 1]) + 128) >> 8; in mv_bits()
74 x->ss[search_site_count].mv.row = 0; in vp8_init_dsmotion_compensation()
83 x->ss[search_site_count].mv.row = -Len; in vp8_init_dsmotion_compensation()
89 x->ss[search_site_count].mv.row = Len; in vp8_init_dsmotion_compensation()
95 x->ss[search_site_count].mv.row = 0; in vp8_init_dsmotion_compensation()
101 x->ss[search_site_count].mv.row = 0; in vp8_init_dsmotion_compensation()
121 x->ss[search_site_count].mv.row = 0; in vp8_init3smotion_compensation()
130 x->ss[search_site_count].mv.row = -Len; in vp8_init3smotion_compensation()
[all …]
/external/webkit/Source/WebCore/html/
DHTMLTableRowElement.cpp74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) { in rowIndex() local
75 if (row == this) in rowIndex()
77 if (row->hasTagName(trTag)) in rowIndex()
85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) { in rowIndex() local
86 if (row == this) in rowIndex()
88 if (row->hasTagName(trTag)) in rowIndex()
95 for (Node *row = foot->firstChild(); row; row = row->nextSibling()) { in rowIndex() local
96 if (row == this) in rowIndex()
98 if (row->hasTagName(trTag)) in rowIndex()
/external/markdown/markdown/extensions/
Dtables.py55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border): argument
64 cells = self._split_row(row, border)
76 def _split_row(self, row, border): argument
79 if row.startswith('|'):
80 row = row[1:]
81 if row.endswith('|'):
82 row = row[:-1]
83 return row.split('|')
/external/chromium/chrome/browser/
Dpossible_url_model.cc111 const GURL& PossibleURLModel::GetURL(int row) { in GetURL() argument
112 if (row < 0 || row >= RowCount()) { in GetURL()
116 return results_[row].url; in GetURL()
119 const std::wstring& PossibleURLModel::GetTitle(int row) { in GetTitle() argument
120 if (row < 0 || row >= RowCount()) { in GetTitle()
124 return results_[row].title; in GetTitle()
127 string16 PossibleURLModel::GetText(int row, int col_id) { in GetText() argument
128 if (row < 0 || row >= RowCount()) { in GetText()
134 string16 title = WideToUTF16Hack(GetTitle(row)); in GetText()
144 string16 url = results_[row].display_url.display_url(); in GetText()
[all …]
Dcustom_home_pages_table_model.cc134 string16 CustomHomePagesTableModel::GetText(int row, int column_id) { in GetText() argument
136 DCHECK(row >= 0 && row < RowCount()); in GetText()
137 return entries_[row].title.empty() ? FormattedURL(row) : entries_[row].title; in GetText()
140 SkBitmap CustomHomePagesTableModel::GetIcon(int row) { in GetIcon() argument
141 DCHECK(row >= 0 && row < RowCount()); in GetIcon()
142 return entries_[row].icon.isNull() ? *default_favicon_ : entries_[row].icon; in GetIcon()
145 string16 CustomHomePagesTableModel::GetTooltip(int row) { in GetTooltip() argument
146 return entries_[row].title.empty() ? string16() : in GetTooltip()
148 entries_[row].title, FormattedURL(row)); in GetTooltip()
174 const history::URLRow* row, in OnGotTitle() argument
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java557 String row[] = { "" }; in getSchemas() local
558 tr.newrow(row); in getSchemas()
567 String row[] = { "" }; in getCatalogs() local
568 tr.newrow(row); in getCatalogs()
577 String row[] = new String[1]; in getTableTypes() local
578 row[0] = "TABLE"; in getTableTypes()
579 tr.newrow(row); in getTableTypes()
580 row = new String[1]; in getTableTypes()
581 row[0] = "VIEW"; in getTableTypes()
582 tr.newrow(row); in getTableTypes()
[all …]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.ui16 <item row="1" column="3" >
23 <item row="0" column="0" colspan="4" >
32 <item row="0" column="0" >
39 <item row="0" column="1" >
49 <item row="1" column="0" >
56 <item row="1" column="1" >
90 <item row="2" column="0" >
97 <item row="2" column="1" >
121 <item row="3" column="0" >
128 <item row="3" column="1" >
[all …]
Dwpagui.ui21 <item row="0" column="0" >
28 <item row="0" column="1" >
31 <item row="1" column="0" >
38 <item row="1" column="1" >
41 <item row="2" column="0" colspan="2" >
51 <item row="0" column="0" colspan="5" >
60 <item row="0" column="0" >
67 <item row="1" column="0" >
74 <item row="2" column="0" >
81 <item row="3" column="0" >
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpagui.ui21 <item row="0" column="0" >
28 <item row="0" column="1" >
31 <item row="1" column="0" >
38 <item row="1" column="1" >
41 <item row="2" column="0" colspan="2" >
51 <item row="0" column="0" colspan="5" >
60 <item row="0" column="0" >
67 <item row="1" column="0" >
74 <item row="2" column="0" >
81 <item row="3" column="0" >
[all …]
Dnetworkconfig.ui16 <item row="1" column="3" >
23 <item row="0" column="0" colspan="4" >
32 <item row="0" column="0" >
39 <item row="0" column="1" >
49 <item row="1" column="0" >
56 <item row="1" column="1" >
100 <item row="2" column="0" >
107 <item row="2" column="1" >
131 <item row="3" column="0" >
138 <item row="3" column="1" >
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_yuv_sw.c617 unsigned short* row; in Color16DitherYUY2Mod1X() local
624 row = (unsigned short*) out; in Color16DitherYUY2Mod1X()
641 *row++ = (unsigned short)(rgb_2_pix[ L + cr_r ] | in Color16DitherYUY2Mod1X()
646 *row++ = (unsigned short)(rgb_2_pix[ L + cr_r ] | in Color16DitherYUY2Mod1X()
652 row += mod; in Color16DitherYUY2Mod1X()
662 unsigned char* row; in Color24DitherYUY2Mod1X() local
669 row = (unsigned char*) out; in Color24DitherYUY2Mod1X()
689 *row++ = (value ) & 0xFF; in Color24DitherYUY2Mod1X()
690 *row++ = (value >> 8) & 0xFF; in Color24DitherYUY2Mod1X()
691 *row++ = (value >> 16) & 0xFF; in Color24DitherYUY2Mod1X()
[all …]
/external/webkit/Source/WebCore/accessibility/
DAccessibilityTable.cpp150 for (int row = 0; row < numRows; ++row) { in isDataTable() local
154 RenderTableCell* cell = firstBody->primaryCellAt(row, col); in isDataTable()
170 if (!row && isTHCell) in isDataTable()
203 if (row < 5 && row == alternatingRowColorCount) { in isDataTable()
216 if (!row && headersInFirstRowCount == numCols && numCols > 1) in isDataTable()
328 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(rowObject); in addChildren() local
331 if (appendedRows.contains(row)) in addChildren()
334 row->setRowIndex((int)m_rows.size()); in addChildren()
335 m_rows.append(row); in addChildren()
336 if (!row->accessibilityIsIgnored()) in addChildren()
[all …]
DAccessibilityARIAGrid.cpp67 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child); in addChild() local
68 if (appendedRows.contains(row)) in addChild()
72 unsigned rowCellCount = row->children().size(); in addChild()
76 row->setRowIndex((int)m_rows.size()); in addChild()
77 m_rows.append(row); in addChild()
81 if (!row->accessibilityIsIgnored()) in addChild()
82 m_children.append(row); in addChild()
84 m_children.append(row->children()); in addChild()
86 appendedRows.add(row); in addChild()
141 AccessibilityTableCell* AccessibilityARIAGrid::cellForColumnAndRow(unsigned column, unsigned row) in cellForColumnAndRow() argument
[all …]
/external/v8/tools/
Dprocess-heap-prof.py64 for row in logreader:
65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap':
66 sample_time = float(row[3])/1000.0
72 elif row[0] == 'heap-sample-end' and row[1] == 'Heap':
75 elif row[0] == itemname and sampling:
76 print(row[1]),
78 print('%d' % (int(row[2]))),
80 print('%d' % (int(row[3]))),
/external/webkit/Source/WebCore/rendering/
DRenderTableSection.h48 void addCell(RenderTableCell*, RenderTableRow* row);
79 Row* row; member
85 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; } in cellAt() argument
86 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; } in cellAt() argument
87 RenderTableCell* primaryCellAt(int row, int col) in primaryCellAt() argument
89 CellStruct& c = (*m_grid[row].row)[col]; in primaryCellAt()
119 int getBaseline(int row) { return m_grid[row].baseline; } in getBaseline() argument
/external/chromium/chrome/browser/ui/gtk/
Dgtk_chrome_cookie_view.cc31 GtkWidget* InitRowLabel(int row, int label_id, GtkWidget* details_table) { in InitRowLabel() argument
36 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); in InitRowLabel()
41 GtkWidget* InitDetailRow(int row, int label_id, in InitDetailRow() argument
43 GtkWidget* name_label = InitRowLabel(row, label_id, details_table); in InitDetailRow()
49 1, 2, row, row + 1); in InitDetailRow()
54 GtkWidget* InitComboboxRow(int row, int label_id, in InitComboboxRow() argument
58 GtkWidget* name_label = InitRowLabel(row, label_id, details_table); in InitComboboxRow()
73 1, 2, row, row + 1); in InitComboboxRow()
299 int row = 0; in BuildWidgets() local
300 self->first_label_ = InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL, in BuildWidgets()
[all …]
/external/webkit/Source/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp359 Vector3 row[3], pdum3; in decompose() local
363 row[i][0] = localMatrix[i][0]; in decompose()
364 row[i][1] = localMatrix[i][1]; in decompose()
365 row[i][2] = localMatrix[i][2]; in decompose()
369 result.scaleX = v3Length(row[0]); in decompose()
370 v3Scale(row[0], 1.0); in decompose()
373 result.skewXY = v3Dot(row[0], row[1]); in decompose()
374 v3Combine(row[1], row[0], row[1], 1.0, -result.skewXY); in decompose()
377 result.scaleY = v3Length(row[1]); in decompose()
378 v3Scale(row[1], 1.0); in decompose()
[all …]
/external/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.ui19 <item row="1" column="3" >
26 <item rowspan="1" row="0" column="0" colspan="4" >
35 <item row="0" column="0" >
42 <item row="0" column="1" >
52 <item row="1" column="0" >
59 <item row="1" column="1" >
93 <item row="2" column="0" >
100 <item row="2" column="1" >
124 <item row="3" column="0" >
131 <item row="3" column="1" >
[all …]
/external/qemu/distrib/libpng-1.2.19/
Dpngwtran.c87 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument
92 row != NULL && row_info != NULL && in png_do_pack()
105 sp = row; in png_do_pack()
106 dp = row; in png_do_pack()
136 sp = row; in png_do_pack()
137 dp = row; in png_do_pack()
168 sp = row; in png_do_pack()
169 dp = row; in png_do_pack()
213 png_do_shift(png_row_infop row_info, png_bytep row, png_color_8p bit_depth) in png_do_shift() argument
217 if (row != NULL && row_info != NULL && in png_do_shift()
[all …]
/external/libpng/
Dpngwtran.c92 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument
98 row != NULL && row_info != NULL && in png_do_pack()
111 sp = row; in png_do_pack()
112 dp = row; in png_do_pack()
142 sp = row; in png_do_pack()
143 dp = row; in png_do_pack()
174 sp = row; in png_do_pack()
175 dp = row; in png_do_pack()
219 png_do_shift(png_row_infop row_info, png_bytep row, png_color_8p bit_depth) in png_do_shift() argument
224 if (row != NULL && row_info != NULL && in png_do_shift()
[all …]
/external/jpeg/
Djquant1.c467 int row; in color_quantize() local
472 for (row = 0; row < num_rows; row++) { in color_quantize()
473 ptrin = input_buf[row]; in color_quantize()
474 ptrout = output_buf[row]; in color_quantize()
497 int row; in color_quantize3() local
501 for (row = 0; row < num_rows; row++) { in color_quantize3()
502 ptrin = input_buf[row]; in color_quantize3()
503 ptrout = output_buf[row]; in color_quantize3()
527 int row; in quantize_ord_dither() local
531 for (row = 0; row < num_rows; row++) { in quantize_ord_dither()
[all …]

12345678910>>...21