HomeSort by relevance Sort by last modified time
    Searched full:row (Results 701 - 725 of 4359) sorted by null

<<21222324252627282930>>

  /external/chromium_org/media/base/
video_frame_unittest.cc 29 for (int row = 0; row < frame->coded_size().height(); ++row) {
30 int color = (row < first_black_row) ? 0xFF : 0x00;
36 for (int row = 0; row < frame->coded_size().height(); row += 2) {
74 for (int row = 0; row < yv12_frame->coded_size().height(); ++row) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableRow.h 46 // retrieves the "row" header (a th tag in the rightmost column)
54 // in the row, but their col/row spans overlap into it
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.cc 63 for (size_t row = 0; row < height; ++row) {
64 result = stream->Write(src_y + row * y_pitch, width, NULL, error);
70 for (size_t row = 0; row < half_height; ++row) {
71 result = stream->Write(src_u + row * u_pitch, half_width, NULL, error);
77 for (size_t row = 0; row < half_height; ++row)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surface.c 330 uint16_t *row = (uint16_t *)dst_map; local
332 *row++ = (uint16_t) zstencil;
339 uint32_t *row = (uint32_t *)dst_map; local
341 *row++ = zstencil;
356 uint32_t *row = (uint32_t *)dst_map; local
358 uint32_t tmp = *row & dst_mask;
359 *row++ = tmp | (zstencil & ~dst_mask);
374 uint64_t *row = (uint64_t *)dst_map; local
376 *row++ = zstencil;
389 uint64_t *row = (uint64_t *)dst_map local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
eval.test 45 # Delete a row out from under a read cursor in the middle of
46 # collecting the arguments for a single row in a result set.
62 # Modify a row while it is being read.
  /external/chromium_org/ui/webui/resources/css/
table.css 41 .table-row {
47 .table-row-cell {
52 .table-row-cell > * {
  /external/javasqlite/src/main/java/SQLite/
Callback.java 59 * Reports row data of the query result.
60 * This method is invoked for each row of the
64 * @param rowdata string array holding the column values of the row
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 168 for (int r = lod; r < getWidth() - (2 * lod); r += lod) { // row
199 for (int row = getWidth() - lod; row >= 1 + lod; row -= 2 * lod) {
200 int idx = (row) * getWidth() - 1 - lod;
202 idx = (row - lod) * getWidth() - 1;
204 if (row > lod + 1) { //if not the last one
205 idx = (row - lod) * getWidth() - 1 - lod;
207 idx = (row - lod) * getWidth() - 1;
214 for (int row = getWidth() - lod; row > lod; row -= lod) {
    [all...]
  /external/llvm/test/CodeGen/X86/
loop-strength-reduce-2.ll 24 define void @test(i32 %row, i32 %N.in) nounwind {
34 %tmp = getelementptr [16 x [16 x i32]]* @A, i32 0, i32 %row, i32 %tmp2 ; <i32*> [#uses=1]
37 %tmp7 = getelementptr [16 x [16 x i32]]* @A, i32 0, i32 %row, i32 %tmp5.upgrd.1 ; <i32*> [#uses=1]
  /external/markdown/markdown/extensions/
imagelinks.py 72 for row in rows:
73 for photo_url, title in row:
99 rows.append([]) # start a new row
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 330 uint16_t *row = (uint16_t *)dst_map; local
332 *row++ = (uint16_t) zstencil;
339 uint32_t *row = (uint32_t *)dst_map; local
341 *row++ = zstencil;
356 uint32_t *row = (uint32_t *)dst_map; local
358 uint32_t tmp = *row & dst_mask;
359 *row++ = tmp | (zstencil & ~dst_mask);
374 uint64_t *row = (uint64_t *)dst_map; local
376 *row++ = zstencil;
389 uint64_t *row = (uint64_t *)dst_map local
    [all...]
  /external/oprofile/gui/ui/
oprof_start.base.ui 276 <widget row="0" column="0" >
287 <widget row="1" column="0" rowspan="2" colspan="2" >
298 <widget row="3" column="0" rowspan="2" colspan="2" >
309 <widget row="5" column="0" >
320 <widget row="6" column="0" >
331 <widget row="7" column="0" >
342 <widget row="8" column="0" rowspan="2" colspan="2" >
353 <widget row="10" column="0" >
364 <spacer row="11" column="1" >
385 <widget row="5" column="1"
    [all...]
  /external/skia/tests/
Matrix44Test.cpp 91 for (int row = 0; row < 4; ++row) {
93 placeholderMatrix->setDouble(row, col, row * col);
103 for (int row = 0; row < 4; ++row) {
105 REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col)))
    [all...]
  /frameworks/base/core/java/android/widget/
TableLayout.java 35 * each defining a row (actually, you can have other children, which will be
37 * their rows, columns, or cells. Each row has zero or more cells; each cell can
39 * as the row with the most cells. A table can leave cells empty. Cells can span
42 * <p>The width of a column is defined by the row with the widest cell in that
63 * <p> Cells must be added to a row in increasing column order, both in code and
66 * a column number, it will be considered an empty cell in that row. See the
71 * will be displayed as a single row that spans all the table columns.</p>
317 * takes up as much as available space as possible in its row.</p>
343 * <p>Makes the given column shrinkable or not. When a row is too wide, the
370 * <p>Applies the columns collapse status to a new row added to thi
381 final TableRow row = (TableRow) child; local
503 final TableRow row = (TableRow) child; local
    [all...]
  /frameworks/base/docs/html/design/patterns/
compatibility.jd 22 <div class="layout-content-row">
39 <div class="layout-content-row">
55 <div class="layout-content-row">
  /frameworks/rs/driver/runtime/
rs_matrix.c 174 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) {
175 m->m[row * 4 + col] = v;
179 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) {
180 return m->m[row * 4 + col];
184 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) {
185 m->m[row * 3 + col] = v;
189 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) {
190 return m->m[row * 3 + col];
194 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) {
195 m->m[row * 2 + col] = v
    [all...]
  /packages/apps/Browser/res/raw/
folder_view.ktpl 37 .row {
77 <a href="<%= parent_url %>" class="row">
87 <a href="<%= url %>" class="row">
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 277 int mRowCount = 1; // assume at least 1 child fits in a row
323 LinearLayout row = (LinearLayout) convertView; local
324 if (row.getChildCount() > rowCount) {
325 row.removeViews(rowCount, row.getChildCount() - rowCount);
329 if (row.getChildCount() > i) {
330 cv = row.getChildAt(i);
334 View v = childAdapter.getView(realChildPosition, cv, row);
340 row.addView(v);
342 row.removeViewAt(i)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 48 # Build the insert statement for each row of the current table
56 for row in query_res:
57 yield("%s;" % row[0])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 48 # Build the insert statement for each row of the current table
56 for row in query_res:
57 yield("%s;" % row[0])
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableRowRule.java 49 // the table row will enforce match_parent and wrap_content for width and height
60 // Also apply table-specific actions on the table row such that you can
61 // select something in a table row and still get offered actions on the surrounding
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
searchcvs.php 75 $row = mysql_fetch_row($count); variable
76 $rows = $row[0];
88 while ($row = mysql_fetch_assoc($result))
90 $file = basename($row["cvsname"], ",v");
91 $row["cvsname"] = preg_replace("#^/cvsroot/[^\/]+/(.+),v$#", "$1", $row["cvsname"]);
93 print "<div>{$row['date']}</div>";
94 print ($row["bugid"] ? "[<a href=\"https://bugs.eclipse.org/bugs/show_bug.cgi?id={$row['bugid']}\">{$row['bugid']}</a>] " : "")
    [all...]
  /external/jpeg/
rdtarga.c 55 jvirt_sarray_ptr whole_image; /* Needed if funny input row order */
56 JDIMENSION current_row; /* Current logical row number to read */
70 /* This saves the correct pixel-row-expansion method for preload_image */
167 * Read one row of pixels.
268 * row order. The entire image has already been read into whole_image
269 * with proper conversion of pixel format, but it's in a funny row order.
278 /* Compute row of source that maps to current_row of normal order */
283 /* Fetch that row from virtual array */
303 JDIMENSION row; local
306 /* Read the data into a virtual array in input-file row order. *
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdtarga.c 55 jvirt_sarray_ptr whole_image; /* Needed if funny input row order */
56 JDIMENSION current_row; /* Current logical row number to read */
70 /* This saves the correct pixel-row-expansion method for preload_image */
167 * Read one row of pixels.
268 * row order. The entire image has already been read into whole_image
269 * with proper conversion of pixel format, but it's in a funny row order.
278 /* Compute row of source that maps to current_row of normal order */
283 /* Fetch that row from virtual array */
303 JDIMENSION row; local
306 /* Read the data into a virtual array in input-file row order. *
    [all...]
  /frameworks/base/docs/html/design/get-started/
principles.jd 10 <div class="layout-content-row">
28 <div class="layout-content-row">
45 <div class="layout-content-row">
63 <div class="layout-content-row">
80 <div class="layout-content-row">
96 <div class="layout-content-row">
113 <div class="layout-content-row">
130 <div class="layout-content-row">
147 <div class="layout-content-row">
164 <div class="layout-content-row">
    [all...]

Completed in 1490 milliseconds

<<21222324252627282930>>