HomeSort by relevance Sort by last modified time
    Searched defs:COLUMNS (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 47 private static final String[] COLUMNS = new String[] {
69 MatrixCursor cursor = new MatrixCursor(COLUMNS);
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionProvider.java 32 private static final String[] COLUMNS = {
50 MatrixCursor cursor = new MatrixCursor(COLUMNS);
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionProvider.java 32 private static final String[] COLUMNS = {
56 MatrixCursor cursor = new MatrixCursor(COLUMNS);
  /external/emma/core/java12/com/vladium/emma/report/
IReportProperties.java 54 String COLUMNS = "columns"; // comma-separated list
ReportProperties.java 325 final String columnList = getReportProperty (properties, type, IReportProperties.COLUMNS, false, IReportProperties.DEFAULT_COLUMNS);
333 if (! COLUMNS.get (columnName, out))
348 // [assertion: columnNames contains all columns for the report (some
389 // silently ignore columns not in the column list:
392 COLUMNS.get (columnName, out);
431 // silently ignore columns not in the column list:
434 COLUMNS.get (columnName, out);
558 private static final ObjectIntMap /* col name:String -> metadata:IItemMetadata */ COLUMNS; // set in <clinit>
564 final ObjectIntMap columns = new ObjectIntMap (); typedefs
566 columns.put (IReportProperties.ITEM_NAME_COLUMN, IItemAttribute.ATTRIBUTE_NAME_ID)
    [all...]
  /external/grub/docs/
kernel.c 26 /* The number of columns. */
27 #define COLUMNS 80
163 for (i = 0; i < COLUMNS * LINES * 2; i++)
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
234 if (xpos >= COLUMNS)
  /packages/apps/Launcher2/
print_db.py 10 COLUMNS = 4
43 columns = [d[0] for d in c.description]
47 return columns,rows
76 columns,rows = get_favorites(conn)
77 data = [dict(zip(columns,row)) for row in rows]
98 for col in columns:
100 for i in range(0,len(columns)):
101 col = columns[i]
128 for k in range(0,COLUMNS):
  /packages/apps/Phone/src/com/android/phone/
ButtonGridLayout.java 49 static private final int COLUMNS = 3;
51 static private final int NUM_CHILDREN = ROWS * COLUMNS;
73 // mWidth == COLUMNS x mWidthInc
123 mWidth = COLUMNS * mWidthInc;
154 for (int col = 0; col < COLUMNS; col++) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorBackedCursor.java 24 private static final String[] COLUMNS = {
63 return COLUMNS;
83 + " of " + COLUMNS.length);
118 + " of " + COLUMNS.length);
  /packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
PartialSuggestionProvider.java 40 private static final String[] COLUMNS = {
65 MutableMatrixCursor(String[] columns) {
66 super(columns);
108 MutableMatrixCursor cursor = new MutableMatrixCursor(COLUMNS);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CommonNicknameCache.java 50 public final static String[] COLUMNS = new String[] {
72 NicknameLookupPreloadQuery.COLUMNS,
125 String[] COLUMNS = new String[] {
134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
GlobalSearchSupport.java 87 public static final String[] COLUMNS = {
378 SearchSuggestionQuery.COLUMNS, selection, null, null, null, null, limit);
  /build/tools/kcm/
kcm.cpp 27 #define COLUMNS (3+4)
32 int values[COLUMNS];
359 char* s[COLUMNS];
360 for (int i=0; i<COLUMNS; i++) {
364 for (int i = 0; i < COLUMNS; i++) {
395 for (int i=1; i<COLUMNS && errorcount == 0; i++) {
405 unsigned short values[COLUMNS - 1]; // 6*2 bytes = 12
415 for (int i=0; i<COLUMNS - 1; i++) {
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 105 int ostart = data[i * COLUMNS + START];
106 int oend = data[i * COLUMNS + END];
108 data[i * COLUMNS + START] = start;
109 data[i * COLUMNS + END] = end;
110 data[i * COLUMNS + FLAGS] = flags;
130 mSpanData[mSpanCount * COLUMNS + START] = start;
131 mSpanData[mSpanCount * COLUMNS + END] = end;
132 mSpanData[mSpanCount * COLUMNS + FLAGS] = flags;
146 int ostart = data[i * COLUMNS + START];
147 int oend = data[i * COLUMNS + END]
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
NewDatabasePerformanceTests.java 174 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
202 .query("t1", COLUMNS, where[i], null, null, null, null);
213 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
239 .query("t1", COLUMNS, where[i], null, null, null, null);
250 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
279 .query("t1", COLUMNS, where[i], null, null, null, null);
290 private static final String[] COLUMNS = {"t1.a"};
316 mDatabase.query("t1 INNER JOIN t2 ON t1.b = t2.b", COLUMNS, null,
327 private static final String[] COLUMNS = {"t1.a"};
355 mDatabase.query("t1 INNER JOIN t2 ON t1.b = t2.b", COLUMNS, null
    [all...]
DatabasePerformanceTests.java 265 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
294 .query("t1", COLUMNS, where[i], null, null, null, null);
305 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
332 .query("t1", COLUMNS, where[i], null, null, null, null);
343 private static final String[] COLUMNS = {"count(*)", "avg(b)"};
373 .query("t1", COLUMNS, where[i], null, null, null, null);
384 private static final String[] COLUMNS = {"t1.a"};
411 mDatabase.query("t1 INNER JOIN t2 ON t1.b = t2.b", COLUMNS, null,
422 private static final String[] COLUMNS = {"t1.a"};
451 mDatabase.query("t1 INNER JOIN t2 ON t1.b = t2.b", COLUMNS, null
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
SplitAggregateView.java 59 String[] COLUMNS = new String[] {
159 SplitQuery.COLUMNS, null, null, null);
ContactPhotoLoader.java 63 private final String[] COLUMNS = new String[] { Photo._ID, Photo.PHOTO };
393 COLUMNS,
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_TestDataBuilder.java 54 String[] COLUMNS = new String[] {
76 Cursor cursor = mProvider.query(mUri, IdQuery.COLUMNS, null, null, null);
228 ". Available columns: " + TextUtils.join(", ", mCursor.getColumnNames()),
  /packages/apps/Browser/src/com/android/browser/search/
OpenSearchSearchEngine.java 57 // Indices of the columns in the below arrays.
64 // The suggestion columns used. If you are adding a new entry to these arrays make sure to
66 private static final String[] COLUMNS = new String[] {
234 return (mDescriptions != null ? COLUMNS : COLUMNS_WITHOUT_DESCRIPTION);
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 43 private static final String[] COLUMNS = new String[] { "_id", "number_1", "number_2" };
236 for (int i = 0; i < COLUMNS.length; i++) {
237 assertEquals(i, cursor.getColumnIndex(COLUMNS[i]));
240 assertTrue(Arrays.equals(COLUMNS, cursor.getColumnNames()));
  /frameworks/base/core/java/com/android/internal/widget/
ContactHeaderWidget.java 97 String[] COLUMNS = new String[] {
126 String[] COLUMNS = new String[] {
499 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS,
518 ContentUris.withAppendedId(Data.CONTENT_URI, photoId), PhotoQuery.COLUMNS,
  /packages/apps/Browser/src/com/android/browser/
BrowserProvider.java 76 // shared suggestion array index, make sure to match COLUMNS
87 // shared suggestion columns
88 private static final String[] COLUMNS = new String[] {
421 // items. The order of the result columns may be different as well. So retrieve the
480 return COLUMNS;
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 98 // The indexes of the default columns which must be consistent
330 // Ignore all 'not found' exceptions since the custom columns
331 // may be just a subset of the default columns.
449 private final String[] COLUMNS = new String[] {
579 COLUMNS,
  /frameworks/base/core/java/android/app/
DownloadManager.java 271 // this array must contain all public columns
272 private static final String[] COLUMNS = new String[] {
287 // columns to request from DownloadProvider
794 * @return a Cursor over the result set of downloads, with columns consisting of all the
    [all...]

Completed in 979 milliseconds

1 2