HomeSort by relevance Sort by last modified time
    Searched refs:rows (Results 26 - 50 of 158) sorted by null

12 3 4 5 6 7

  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
TableResultX.java 27 this.rows = tr.rows;
  /external/openssl/crypto/bio/
b_dump.c 82 int i,j,rows,trc; local
103 rows=(len/dump_width);
104 if ((rows*dump_width)<len)
105 rows++;
106 for(i=0;i<rows;i++)
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxmodes.c 62 GrResizeWindow (FSwindow, si.cols, si.rows) ;
  /external/webkit/WebCore/accessibility/
AccessibilityTable.h 64 AccessibilityChildrenVector& rows();
AccessibilityARIAGridRow.cpp 65 // 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/WebCore/storage/
SQLStatement.cpp 115 SQLResultSetRowList* rows = resultSet->rows(); local
118 rows->addColumn(statement.getColumnName(i));
122 rows->addResult(statement.getColumnValue(i));
145 // sqlite3_total_changes() here instead of sqlite3_changed, because that includes rows modified from within a trigger
  /external/webkit/WebCore/html/
HTMLTableElement.h 63 PassRefPtr<HTMLCollection> rows();
104 void addSharedGroupDecls(bool rows, Vector<CSSMutableStyleDeclaration*>&);
HTMLTextAreaElement.idl 37 attribute long rows;
HTMLTextAreaElement.cpp 111 int rows = attr->value().toInt(); local
112 if (rows <= 0)
113 rows = defaultRows;
114 if (m_rows != rows) {
115 m_rows = rows;
414 void HTMLTextAreaElement::setRows(int rows)
416 setAttribute(rowsAttr, String::number(rows));
HTMLTableElement.idl 33 readonly attribute HTMLCollection rows;
  /packages/apps/Launcher2/
print_db.py 11 ROWS = 4
44 rows = []
46 rows.append(row)
47 return columns,rows
76 columns,rows = get_favorites(conn)
77 data = [dict(zip(columns,row)) for row in rows]
107 for row in rows:
126 for j in range(0,ROWS):
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 138 Map<String, ContentValues> rows = mContentQueryMap.getRows(); local
139 assertEquals(ORIGINAL_ROW_COUNT, rows.size());
140 assertTrue(rows.containsKey(NAME0));
141 assertEquals(VALUE0, rows.get(NAME0).getAsString(DummyProvider.VALUE));
142 assertTrue(rows.containsKey(NAME1));
143 assertEquals(VALUE1, rows.get(NAME1).getAsString(DummyProvider.VALUE));
148 rows = mContentQueryMap.getRows();
149 assertFalse(rows.containsKey(NAME0));
151 rows = mContentQueryMap.getRows();
152 assertFalse(rows.containsKey(NAME0))
    [all...]
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 136 int rows = frameSet()->totalRows(); local
141 for (int r = 0; r < rows; r++) {
217 // Count the total length of all of the fixed columns/rows -> totalFixed
218 // Count the number of columns/rows which are fixed -> countFixed
225 // Count the total percentage of all of the percentage columns/rows -> totalPercent
226 // Count the number of columns/rows which are percentages -> countPercent
233 // Count the total relative of all the relative columns/rows -> totalRelative
234 // Count the number of columns/rows which are relative -> countRelative
243 // Fixed columns/rows are our first priority. If there is not enough space to fit all fixed
244 // columns/rows we need to proportionally adjust their size.
417 int rows = frameSet()->totalRows(); local
438 int rows = frameSet()->totalRows(); local
473 size_t rows = frameSet()->totalRows(); local
525 int rows = frameSet()->totalRows(); local
648 int rows = frameSet()->totalRows(); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_sw.c 110 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 / 2
    [all...]
  /external/clearsilver/python/examples/base/
odb_test.py 106 # create new rows and insert them
215 # fetch 1 rows
217 rows = tbl.fetchRows( ('agent_id', 1) )
218 if len(rows) != 1:
225 # fetch All rows
227 rows = tbl.fetchAllRows()
228 if len(rows) != TEST_INSERT_COUNT:
229 for a_row in rows:
231 raise "fetchAllRows() did not return TEST_INSERT_COUNT(%d) rows!" % (TEST_INSERT_COUNT)
233 output("PASSED! fetchall rows")
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 103 line_buff -= line_incr * ( target->rows - 1 );
988 FT_Int rows, count; local
    [all...]
  /frameworks/ex/common/java/com/android/common/
ArrayListCursor.java 35 public ArrayListCursor(String[] columnNames, ArrayList<ArrayList> rows) {
53 int rowCount = rows.size();
57 mRows[i] = rows.get(i);
  /libcore/luni/src/test/java/tests/SQLite/
FunctionContextTest.java 80 String row[] = (String[]) res.rows.elementAt(0);
103 String row[] = (String[]) res.rows.elementAt(0);
126 String row[] = (String[]) res.rows.elementAt(0);
192 String row[] = (String[]) res.rows.elementAt(0);
239 String row[] = (String[]) res.rows.elementAt(0);
244 assertEquals(((String[]) res2.rows.elementAt(0))[0], val);
278 String row[] = (String[]) res.rows.elementAt(0);
  /external/chromium/third_party/icu/source/common/
uresdata.c 539 Row *rows; member in struct:TempTable
842 pTempTable->rows[i].keyIndex=ds->readUInt16(pKey16[i]);
843 pTempTable->rows[i].sortIndex=i;
847 pTempTable->rows[i].keyIndex=udata_readInt32(ds, pKey32[i]);
848 pTempTable->rows[i].sortIndex=i;
851 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
877 oldIndex=pTempTable->rows[i].sortIndex;
892 oldIndex=pTempTable->rows[i].sortIndex;
911 oldIndex=pTempTable->rows[i].sortIndex;
965 Row rows[STACK_ROW_CAPACITY] local
    [all...]
ucnv_io.c 1098 TempRow *rows; member in struct:TempAliasTable
1132 TempRow rows[STACK_ROW_CAPACITY]; local
    [all...]
  /external/icu4c/common/
uresdata.c 649 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_CAPACITY] local
    [all...]
ucnv_io.c 1098 TempRow *rows; member in struct:TempAliasTable
1132 TempRow rows[STACK_ROW_CAPACITY]; local
    [all...]
  /external/libvpx/vp8/common/
onyx.h 214 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]);
215 int vp8_set_active_map(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols);
postproc.h 16 void sym (unsigned char *dst, int pitch, int rows, int cols,int flimit)
20 int dst_pitch, int rows, int cols, int flimit)
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.h 84 void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS);

Completed in 1132 milliseconds

12 3 4 5 6 7