Home
last modified time | relevance | path

Searched refs:firstRow (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/chrome/browser/resources/
Dabout_memory_linux.css9 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1),
10 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4),
11 table.list#browserComparison tr.firstRow th:nth-child(1) {
15 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2),
16 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(5),
17 table.list#memoryDetails tr.firstRow th:nth-child(2) {
Dabout_memory.css172 table.list .firstRow th {
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
Doverview_unittests.js121 var firstRow = container.querySelectorAll('tr')[1];
122 equal(firstRow.querySelector('td:nth-child(1)').textContent, 'layout-tests');
123 …equal(firstRow.querySelector('td:nth-child(1) a').hash, '#group=MockGroup&testType=layout-tests&te…
124 equal(firstRow.querySelector('td:nth-child(2)').textContent, '2 / 4');
125 equal(firstRow.querySelector('td:nth-child(3)').textContent, '50%');
126 …equal(firstRow.querySelector('td:nth-child(4)').innerHTML, '<div class="flaky-bar" style="width:25…
/external/chromium_org/third_party/icu/source/common/
Dpropsvec.c156 uint32_t *firstRow, *lastRow; in upvec_setValue() local
186 firstRow=_findRow(pv, start); in upvec_setValue()
194 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); in upvec_setValue()
221 firstRow=newVectors+(firstRow-pv->v); in upvec_setValue()
241 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
242 uprv_memmove(firstRow+columns, firstRow, count*4); in upvec_setValue()
246 firstRow[1]=firstRow[columns]=(uint32_t)start; in upvec_setValue()
247 firstRow+=columns; in upvec_setValue()
264 firstRow+=column; in upvec_setValue()
268 *firstRow=(*firstRow&mask)|value; in upvec_setValue()
[all …]
/external/icu4c/common/
Dpropsvec.c157 uint32_t *firstRow, *lastRow; in upvec_setValue() local
187 firstRow=_findRow(pv, start); in upvec_setValue()
195 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); in upvec_setValue()
222 firstRow=newVectors+(firstRow-pv->v); in upvec_setValue()
242 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
243 uprv_memmove(firstRow+columns, firstRow, count*4); in upvec_setValue()
247 firstRow[1]=firstRow[columns]=(uint32_t)start; in upvec_setValue()
248 firstRow+=columns; in upvec_setValue()
265 firstRow+=column; in upvec_setValue()
269 *firstRow=(*firstRow&mask)|value; in upvec_setValue()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGradientGeneratedImage.cpp53 …int firstRow = static_cast<int>(floorf((((destRect.y() - phase.y()) / scale.height()) - srcRect.y… in drawPattern() local
77 for (int j = firstRow; ; j++) { in drawPattern()
80 ASSERT(j > firstRow || dstY <= destRect.y()); in drawPattern()
81 ASSERT(j == firstRow || dstY > destRect.y()); in drawPattern()
/external/chromium_org/tools/perf/utils/results_viewer/src/
Dmain.js50 var firstRow = dataSet[1];
58 'parser':getColumnParser(firstRow[index])});
157 var firstRow = this.dataSet_[1];
169 if (isNumeric(firstRow[selectedColumnIndex])) {
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
Dimage_util.js624 context, image, firstRow, rowCount) { argument
625 var lastRow = Math.min(firstRow + rowCount, image.height);
628 image, 0, firstRow, image.width, lastRow - firstRow,
629 -image.width / 2, firstRow - image.height / 2,
630 image.width, lastRow - firstRow);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprog_statevars.c293 const GLuint firstRow = (GLuint) state[2]; in _mesa_fetch_state() local
298 ASSERT(firstRow >= 0); in _mesa_fetch_state()
299 ASSERT(firstRow < 4); in _mesa_fetch_state()
335 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state()
343 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state()
1003 const GLuint firstRow = (GLuint) state[2]; in _mesa_program_state_string() local
1012 if (firstRow == lastRow) in _mesa_program_state_string()
1013 sprintf(tmp, ".row[%d]", firstRow); in _mesa_program_state_string()
1015 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
/external/mesa3d/src/mesa/program/
Dprog_statevars.c293 const GLuint firstRow = (GLuint) state[2]; in _mesa_fetch_state() local
298 ASSERT(firstRow >= 0); in _mesa_fetch_state()
299 ASSERT(firstRow < 4); in _mesa_fetch_state()
335 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state()
343 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state()
1003 const GLuint firstRow = (GLuint) state[2]; in _mesa_program_state_string() local
1012 if (firstRow == lastRow) in _mesa_program_state_string()
1013 sprintf(tmp, ".row[%d]", firstRow); in _mesa_program_state_string()
1015 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFixedTableLayout.cpp140 RenderObject* firstRow = section->firstChild(); in calcWidthArray() local
141 for (RenderObject* child = firstRow->firstChild(); child; child = child->nextSibling()) { in calcWidthArray()
DRenderTableSection.cpp1273 const Row& firstRow = m_grid[0].row; in firstLineBoxBaseline() local
1274 for (size_t i = 0; i < firstRow.size(); ++i) { in firstLineBoxBaseline()
1275 const CellStruct& cs = firstRow.at(i); in firstLineBoxBaseline()
/external/chromium/chrome/browser/resources/shared/css/
Dabout_memory.css202 table.list .firstRow th {
/external/chromium_org/third_party/iaccessible2/
Dia2_api_all.idl187 long firstRow; ///< 0 based, inclusive
3678 A struct of (type(insert, delete, update), firstRow, lastRow, firstColumn, lastColumn).
4050 A struct of (type(insert, delete, update), firstRow, lastRow, firstColumn, lastColumn).