HomeSort by relevance Sort by last modified time
    Searched refs:columnCount (Results 1 - 25 of 68) sorted by null

1 2 3

  /frameworks/base/core/java/android/database/
MatrixCursor.java 31 private final int columnCount;
42 this.columnCount = columnNames.length;
48 this.data = new Object[columnCount * initialCapacity];
65 if (column < 0 || column >= columnCount) {
67 + column + ", # of columns: " + columnCount);
75 return data[mPos * columnCount + column];
87 int endIndex = rowCount * columnCount;
89 int start = endIndex - columnCount;
103 if (columnValues.length != columnCount) {
105 + columnCount + ", columnValues.length =
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityARIAGrid.h 58 void addChild(AccessibilityObject*, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount);
AccessibilityARIAGridCell.cpp 85 unsigned columnCount = static_cast<AccessibilityTable*>(parent)->columnCount();
86 if (!columnCount)
93 rowRange.first = k / columnCount;
AccessibilityARIAGrid.cpp 62 void AccessibilityARIAGrid::addChild(AccessibilityObject* child, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount)
73 if (rowCellCount > columnCount)
74 columnCount = rowCellCount;
106 unsigned columnCount = 0;
110 addChild(child.get(), appendedRows, columnCount);
122 addChild(grandChild, appendedRows, columnCount);
127 for (unsigned i = 0; i < columnCount; ++i) {
148 if (column >= columnCount() || row >= rowCount())
AccessibilityTable.h 69 unsigned columnCount();
  /external/webkit/Source/WebCore/storage/
SQLStatementSync.cpp 90 int columnCount = statement.columnCount();
93 for (int i = 0; i < columnCount; i++)
97 for (int i = 0; i < columnCount; i++)
SQLStatement.cpp 112 int columnCount = statement.columnCount();
115 for (int i = 0; i < columnCount; i++)
119 for (int i = 0; i < columnCount; i++)
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
QueryService.java 77 final int columnCount = c.getColumnCount();
80 for (int i = 0; i < columnCount; i++) {
88 for (int i = 0; i < columnCount; i++) {
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
eventhistory.h 31 int columnCount(const QModelIndex &parent = QModelIndex()) const;
eventhistory.cpp 27 int EventListModel::columnCount(const QModelIndex &) const
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.h 25 int columnCount(const QModelIndex &parent = QModelIndex()) const;
eventhistory.cpp 21 int EventListModel::columnCount(const QModelIndex &) const
  /external/webkit/Source/WebCore/platform/sql/
SQLiteStatement.cpp 270 int SQLiteStatement::columnCount()
284 if (columnCount() <= col)
296 if (columnCount() <= col)
307 if (columnCount() <= col)
335 if (columnCount() <= col)
346 if (columnCount() <= col)
357 if (columnCount() <= col)
368 if (columnCount() <= col)
380 if (columnCount() <= col)
404 if (columnCount() <= col)
    [all...]
SQLiteStatement.h 74 int columnCount();
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 160 int columnCount = columns.length;
161 HashMap<String, Integer> map = new HashMap<String, Integer>(columnCount, 1);
162 for (int i = 0; i < columnCount; i++) {
  /external/webkit/Source/WebCore/rendering/
ColumnInfo.h 54 unsigned columnCount() const { return m_columnCount; }
  /frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
R.java 44 public static int columnCount=0x7f010002;
159 depending on the value of this flag. In the horizontal case, a columnCount
248 <tr><td><code>{@link #GridLayout_columnCount android.support.v7.gridlayout:columnCount}</code></td><td> The maximum number of columns to create when automatically positioning children.</td></tr>
318 @attr name android:columnCount
354 depending on the value of this flag. In the horizontal case, a columnCount
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 87 * @param columnCount
92 public void setColumnCount(int columnCount) throws SQLException;
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileListFragment.java 71 int columnCount = res.getInteger(R.integer.contact_tile_column_count_in_favorites);
74 columnCount, mDisplayType);
131 public void setColumnCount(int columnCount) {
132 mAdapter.setColumnCount(columnCount);
ContactTileAdapter.java 136 public void setColumnCount(int columnCount) {
137 mColumnCount = columnCount;
524 int columnCount = mItemViewType == ViewTypes.FREQUENT ? 1 : mColumnCount;
527 for (int columnCounter = 0; columnCounter < columnCount; columnCounter++) {
  /external/icu4c/i18n/unicode/
dtfmtsym.h 402 * @param columnCount Output param to receive number of columns.
406 const UnicodeString** getZoneStrings(int32_t& rowCount, int32_t& columnCount) const;
416 * @param columnCount The number of columns (count of second index).
419 void setZoneStrings(const UnicodeString* const* strings, int32_t rowCount, int32_t columnCount);
  /external/icu4c/test/intltest/
tsdtfmsy.cpp 332 int32_t rowCount = 0, columnCount = 0;
333 const UnicodeString **strings = en.getZoneStrings(rowCount, columnCount);
334 fr.setZoneStrings(strings, rowCount, columnCount);
335 const UnicodeString **strings1 = fr.getZoneStrings(rowCount, columnCount);
337 for(int32_t j = 0; j < columnCount; j++) {
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.h 171 int columnCount();
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 686 int columnCount = st.column_count();
687 assertNotNull(columnCount);
688 assertEquals( 3, columnCount);
698 columnCount = st.column_count();
699 assertNotNull(columnCount);
700 assertEquals( 3, columnCount);
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 387 final int columnCount = cursor.getColumnCount();
388 for (int i = 0; i < columnCount; i++) {

Completed in 626 milliseconds

1 2 3