HomeSort by relevance Sort by last modified time
    Searched full:rows (Results 101 - 125 of 530) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/html/
HTMLFrameSetElement.idl 27 attribute [ConvertNullToNullString] DOMString rows;
HTMLTableElement.idl 33 readonly attribute HTMLCollection rows;
HTMLTableSectionElement.h 61 PassRefPtr<HTMLCollection> rows();
  /external/webkit/WebCore/manual-tests/
bugzilla-4840.html 23 <iframe style="width: 100%; height: 200px;" src="data:text/html,<frameset cols=%22*, *%22><frameset rows=%22*, *%22><frame src=%22about:blank%22><frame src=%22about:blank%22></frameset><frame src=%22about:blank%22></frameset>"></iframe>
  /external/webkit/WebCore/storage/
SQLResultSet.h 45 SQLResultSetRowList* rows() const;
SQLResultSet.idl 35 readonly attribute SQLResultSetRowList rows;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ReorderingCursorWrapper.java 22 * Cursor wrapper that reorders rows according to supplied specific position mapping.
GlobalSearchSupport.java 330 @SuppressWarnings({"unchecked"}) ArrayList<ArrayList> rows = new ArrayList<ArrayList>(); local
331 rows.add(dialNumber);
332 rows.add(createContact);
334 return new ArrayListCursor(SEARCH_SUGGESTIONS_BASED_ON_PHONE_NUMBER_COLUMNS, rows);
432 @SuppressWarnings({"unchecked"}) ArrayList<ArrayList> rows = new ArrayList<ArrayList>(); local
434 rows.add(suggestionList.get(i).asList(projection));
438 : SEARCH_SUGGESTIONS_BASED_ON_NAME_COLUMNS, rows);
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 176 assertEquals("number of rows in ResultSet is wrong", 5, counter);
243 // assertEquals("number of rows in ResultSet is wrong", 1, counter);
278 assertTrue("expected rows number doesn't equal actual rows number",
322 assertTrue("expected rows number doesn't equal actual rows number",
356 assertTrue("expected rows number doesn't equal actual rows number",
392 assertTrue("expected rows number doesn't equal actual rows number"
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionView.java 31 * A view that has a known number of selectable rows, and maintains a notion of which
32 * row is selected. The rows take up the
34 * the rows.
  /external/webkit/WebCore/rendering/
RenderTableRow.cpp 117 // Table rows do not add translation.
166 // Table rows cannot ever be hit tested. Effectively they do not exist.
169 // FIXME: We have to skip over inline flows, since they can show up inside table rows
  /frameworks/base/awt/java/awt/image/
ReplicateScaleFilter.java 29 * The ReplicateScaleFilter class scales an source image by replicating rows and
30 * columns of pixels to scale up or omitting rows and columns of pixels to scale
58 * The integer array of source rows.
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 24 * A SQLite program that represents a query that reads the resulting rows into a CursorWindow.
53 * Reads rows into a buffer. This method acquires the database lock.
56 * @return number of total rows in the query
SQLiteDatabase.java 102 * But the command continues executing normally. Other rows before and
109 * When a UNIQUE constraint violation occurs, the pre-existing rows that
117 * resolution strategy deletes rows in order to satisfy a constraint,
118 * it does not invoke delete triggers on those rows.
    [all...]
  /frameworks/base/core/jni/
CursorWindow.h 36 // with an offset after the rows that points to the next chunk
92 * This class stores a set of rows from a database in a buffer. The begining of the
95 * the pre-allocated chunk isn't big enough to refer to all rows. Each row directory has a
android_database_SQLiteQuery.cpp 167 LOGE("startPos %d > actual rows %d", startPos, num);
285 // All rows processed, bail
286 LOG_WINDOW("Processed all rows");
307 LOG_WINDOW("Resetting statement %p after fetching %d rows in %d bytes\n\n\n\n", statement,
309 // LOGI("Filled window with %d rows in %d bytes", numRows, window->size() - window->freeSpace());
  /frameworks/base/core/tests/coretests/src/android/util/
InternalSelectionView.java 34 * A view that has a known number of selectable rows, and maintains a notion of which
35 * row is selected. The rows take up the
37 * the rows.
  /dalvik/libcore/sql/src/test/java/tests/SQLite/
StmtTest.java 291 String[] row0 = (String[]) count.rows.elementAt(0);
342 String[] row0 = (String[]) r.rows.elementAt(0);
345 String[] row1 = (String[]) r.rows.elementAt(1);
348 String[] row2 = (String[]) r.rows.elementAt(2);
395 String[] row0 = (String[]) r.rows.elementAt(0);
398 String[] row1 = (String[]) r.rows.elementAt(1);
401 String[] row2 = (String[]) r.rows.elementAt(2);
464 String[] row0 = (String[]) r.rows.elementAt(0);
467 String[] row1 = (String[]) r.rows.elementAt(1);
472 String[] row2 = (String[]) r.rows.elementAt(2)
    [all...]
  /external/webkit/WebCore/inspector/front-end/
StoragePanel.js 280 dataGridForResult: function(rows)
282 if (!rows.length)
288 for (var columnIdentifier in rows[0]) {
298 var length = rows.length;
302 var row = rows[i];
  /external/webkit/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 295 // Tell libpng to send us rows for interlaced pngs.
350 * Some of these rows will not be changed from the previous pass.
352 * The rows and passes are called in order, so you don't really
356 * For the non-NULL rows of interlaced images, you must call
358 * old row. You can call this function for NULL rows (it will
365 * where old_row is what was displayed for previous rows. Note
367 * the old row, so the rows do not have to be initialized. After
  /external/jpeg/
jpeglib.h 67 typedef JSAMPROW *JSAMPARRAY; /* ptr to some rows (a 2-D sample array) */
332 * restart_interval, or in MCU rows by setting restart_in_rows
337 int restart_in_rows; /* if > 0, MCU rows per restart interval */
371 JDIMENSION total_iMCU_rows; /* # of iMCU rows to be input to coef ctlr */
372 /* The coefficient controller receives data in units of MCU rows as defined
374 * There are v_samp_factor * DCTSIZE sample rows of each component in an
387 JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
471 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
480 * The map has out_color_components rows and actual_number_of_colors columns.
495 /* Current input scan number and number of iMCU rows completed in scan
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
ResultSet.java 33 * ahead of the first row. To move the cursor to the first and consecutive rows,
35 * long as there are more rows in the {@code ResultSet}, otherwise it returns
39 * only advance forward through the rows of data. This means that it is only
42 * be <i>scrolled</i> forward and backward through the rows of data. How such a
72 * either to modify the data of an existing row or to insert new data rows into
76 * method. For insertion of new rows, the cursor is first moved to a special row
111 * A constant used to indicate processing of the rows of a {@code ResultSet}
117 * A constant used to indicate processing of the rows of a {@code ResultSet}
123 * A constant used to indicate that the order of processing of the rows of a
231 * false} if the {@code ResultSet} contains no rows
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/
layout-objects.jd 92 <p>{@link android.widget.TableLayout} positions its children into rows
93 and columns. TableLayout containers do not display border lines for their rows, columns,
101 <p>The following sample layout has two rows and two cells in each. The accompanying screenshot shows the
236 <td>Displays a scrolling grid of m columns and n rows.</td>
277 <td>A tabular layout with an arbitrary number of rows and columns, each cell
278 holding the widget of your choice. The rows resize to fit the largest
  /external/clearsilver/python/examples/base/
hdfhelp.py 13 # rows = tbl.fetchAllRows()
14 # rows.hdfExport("CGI.rows", hdf_dataset)
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
SourceLatency.java 149 Log.d(TAG, src + ": " + cursor.getCount() + " rows in " + formatTime(elapsed)
244 Log.d(TAG, mSrc + ": " + cursor.getCount() + " rows in " + formatTime(elapsed)
297 + " rows in " + formatTime(elapsed));

Completed in 1339 milliseconds

1 2 3 45 6 7 8 91011>>