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

12 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 41 // click events coming from these columns.
43 // for indexing into column subarrays (i.e. columns[1][COL_NAME])
52 protected String[][] columns; field in class:DataTable
68 * @param columns An array specifying the name of each column and the field
73 public DataTable(String[][] columns) {
74 int rows = columns.length;
75 this.columns = new String[rows][2];
77 System.arraycopy(columns[i], 0, this.columns[i], 0, 2);
88 for (int i = 0; i < columns.length; i++)
    [all...]
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 117 String[] columns = new String[] { local
125 return mDictionary.getWordMatches(query, columns);
130 String[] columns = new String[] { local
135 return mDictionary.getWordMatches(query, columns);
140 String[] columns = new String[] { local
144 return mDictionary.getWord(rowId, columns);
152 * word, using the given item Uri and provide all the columns originally provided with the
156 String[] columns = new String[] { local
163 return mDictionary.getWord(rowId, columns);
DictionaryDatabase.java 44 //The columns we'll include in the dictionary table
64 * Builds a map for all columns that may be requested, which will be given to the
66 * all columns, even if the value is the key. This allows the ContentProvider to request
67 * columns w/o the need to know real column names and create the alias itself.
86 * @param columns The columns to include, if null then all are included
89 public Cursor getWord(String rowId, String[] columns) {
93 return query(selection, selectionArgs, columns);
96 * SELECT <columns> FROM <table> WHERE rowid = <rowId>
104 * @param columns The columns to include, if null then all are include
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SparseFieldMatrix.java 44 private final int columns; field in class:SparseFieldMatrix
54 columns= 0;
63 * @param columnDimension the number of columns in the new matrix
71 this.columns = columnDimension;
82 columns = other.getColumnDimension();
93 columns = other.getColumnDimension();
96 for (int j = 0; j < columns; j++) {
134 return columns;
187 return row * columns + column;
FieldMatrixChangingVisitor.java 36 * @param columns number of columns of the matrix
42 void start(int rows, int columns,
FieldMatrixPreservingVisitor.java 36 * @param columns number of columns of the matrix
42 void start(int rows, int columns,
Array2DRowRealMatrix.java 72 * @param columnDimension the number of columns in the new matrix
463 final int columns = getColumnDimension(); local
464 visitor.start(rows, columns, 0, rows - 1, 0, columns - 1);
467 for (int j = 0; j < columns; ++j) {
479 final int columns = getColumnDimension(); local
480 visitor.start(rows, columns, 0, rows - 1, 0, columns - 1);
483 for (int j = 0; j < columns; ++j) {
531 final int columns = getColumnDimension() local
547 final int columns = getColumnDimension(); local
    [all...]
DefaultFieldMatrixChangingVisitor.java 48 public void start(int rows, int columns,
DefaultFieldMatrixPreservingVisitor.java 48 public void start(int rows, int columns,
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
EmptyCursor.java 32 public EmptyCursor(String[] columns) {
33 this.mColumns = columns;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java 29 * The number of rows and columns is determined at runtime. Each
78 int columns = (r - l) / cellWidth; local
79 if (columns < 0) {
80 columns = 1;
96 if (i >= (columns-1)) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrixCursor.java 16 public void __constructor__(String[] columns) {
17 __constructor__(columns, 0);
20 public void __constructor__(String[] columns, int initialCapacity) {
21 columnNameArray = columns;
ShadowSQLiteQueryBuilder.java 16 String[] columns, String where, String groupBy, String having,
25 if (columns != null) {
26 sb.append(Join.join(", ", (Object[]) columns));
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) {
100 return query(db, table, columns, null, null, orderBy, null);
106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy,
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseDatabaseHelperUpgradeTest.java 130 public void assertHasColumns(TableColumn[] columns) {
131 for (final TableColumn column : columns) {
137 * Assert the TableStructure has every column in @param columns, and nothing else.
139 public void assertSame(TableColumn[] columns) {
140 assertHasColumns(columns);
141 if (columns.length != mColumns.size()) {
154 public final TableColumn[] columns; field in class:BaseDatabaseHelperUpgradeTest.TableListEntry
157 public TableListEntry(String name, TableColumn[] columns) {
158 this(name, columns, /* shouldBeInNewDb = */ true);
161 public TableListEntry(String name, TableColumn[] columns, boolean shouldBeInNewDb)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ContactsFacade.java 104 String[] columns = cursor.getColumnNames(); local
105 for (int i = 0; i < columns.length; i++) {
106 result.add(columns[i]);
117 String[] columns = { "_id" }; local
118 Cursor cursor = mContentResolver.query(CONTACTS_URI, columns, null, null, null);
132 String[] columns; local
135 columns = new String[] { "_id", "name", "primary_phone", "primary_email", "type" };
138 columns = new String[attributes.length()];
140 columns[i] = attributes.getString(i);
144 for (String s : columns) {
205 String[] columns; local
265 String[] columns = jsonToArray(attributes); local
    [all...]
  /art/tools/ahat/src/
HtmlDoc.java 81 public void table(Column... columns) {
82 if (columns.length == 0) {
83 throw new IllegalArgumentException("No columns specified");
86 mCurrentTableColumns = columns;
88 for (int i = 0; i < columns.length - 1; i++) {
89 ps.format("<th>%s</th>", columns[i].heading.html());
94 ps.format("<th align=\"left\">%s</th>", columns[columns.length - 1].heading.html());
Doc.java 51 * Start a table with the given columns.
53 * An IllegalArgumentException is thrown if no columns are provided.
58 void table(Column... columns);
75 * The number of values must match the number of columns provided for the
  /external/autotest/server/site_tests/cellular_StaleModemReboot/
cellular_StaleModemReboot.py 135 columns = item.split(':')
136 columns = [x.strip() for x in columns]
137 if len(columns) > 1:
138 modem_status_dict[columns[0]] = columns[1]
140 modem_status_dict[columns[0]] = ''
  /external/toybox/lib/
linestack.c 79 // Show width many columns, negative means from right edge.
81 // if escout, send it unprintable chars, returns columns output or -1 for
83 // Returns width in columns, moves *str to end of data consumed.
87 int columns = 0, col, bytes; local
97 if (width-columns<col) break;
99 } else if (!escout || 0>(col = escout(out, width-columns, &end))) {
111 if (width-columns<col) buf[col = width-columns] = 0;
115 columns += col;
120 return columns;
    [all...]
  /external/opencv3/samples/winrt/JavaScript/sample-utils/
sample-utils.css 34 -ms-grid-columns: 100px 1fr 100px;
50 -ms-grid-columns:1fr;
71 -ms-grid-columns:1fr;
86 -ms-grid-columns: auto auto;
179 -ms-grid-columns: 40px 1fr 40px;
187 -ms-grid-columns: 20px 1fr 20px;
197 -ms-grid-columns: auto;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/provider/
SharedImageProvider.java 106 Object[] columns = new Object[projection.length]; local
109 columns[i] = 0;
111 columns[i] = uri;
113 columns[i] = path.getName();
115 columns[i] = path.length();
118 cursor.addRow(columns);
  /external/autotest/client/site_tests/platform_TraceClockMonotonic/
platform_TraceClockMonotonic.py 78 columns = line.split()
79 entry_timestamp = float(columns[3].replace(':',''))
80 sample_timestamp = float(columns[6])
  /external/icu/icu4c/source/common/
propsvec.h 35 * which is set via the upvec_open() "columns" parameter.
37 * Internally, two additional columns are stored.
71 * @param columns Number of value integers (uint32_t) per row.
74 upvec_open(int32_t columns, UErrorCode *pErrorCode);
117 * (Therefore, it starts at 0 increases in increments of the columns value.)
129 int32_t rowIndex, uint32_t *row, int32_t columns,
171 int32_t rowIndex, uint32_t *row, int32_t columns,
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayout.java 32 * The number of rows and columns is determined at runtime. Each
89 int columns = (r - l) / cellWidth; local
90 if (columns < 0) {
91 columns = 1;
107 if (i >= (columns-1)) {

Completed in 1011 milliseconds

12 3 4 5 6 7 8 91011>>