Searched defs:table (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/layout/table/
H A DAddColumn.java17 package com.android.frameworktest.layout.table;
30 * This test adds an extra row with an extra column in the table.
41 final TableLayout table = (TableLayout) findViewById(R.id.table);
49 table.addView(newRow, new TableLayout.LayoutParams());
H A DCellSpan.java17 package com.android.frameworktest.layout.table;
25 * Exercise table layout with cells spanning.
H A DFixedWidth.java17 package com.android.frameworktest.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
H A DHorizontalGravity.java17 package com.android.frameworktest.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
H A DVerticalGravity.java17 package com.android.frameworktest.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
H A DWeight.java17 package com.android.frameworktest.layout.table;
25 * Exercise table layout with cells having a weight.
/frameworks/base/tests/FrameworkTest/tests/src/com/android/frameworktest/layout/table/
H A DAddColumnTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.AddColumn;
30 * {@link com.android.frameworktest.layout.table.AddColumn} is
31 * setup to exercise the case of adding row programmatically in a table.
47 mTable = (TableLayout) activity.findViewById(R.id.table);
H A DFixedWidthTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.FixedWidth;
27 * {@link com.android.frameworktest.layout.table.FixedWidth} is
H A DHorizontalGravityTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.HorizontalGravity;
28 * {@link com.android.frameworktest.layout.table.HorizontalGravity} is
H A DWeightTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.Weight;
27 * {@link com.android.frameworktest.layout.table.Weight} is
H A DCellSpanTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.CellSpan;
27 * {@link com.android.frameworktest.layout.table.CellSpan} is
H A DVerticalGravityTest.java17 package com.android.frameworktest.layout.table;
19 import com.android.frameworktest.layout.table.VerticalGravity;
29 * {@link com.android.frameworktest.layout.table.VerticalGravity} is
/frameworks/base/awt/java/awt/
H A DGradientPaintContext.java33 * The size of noncyclic part of color lookup table
38 * The index mask to lookup color in the table
68 * The lookup gradient color table
70 int[] table; field in class:GradientPaintContext
118 table = new int[1];
119 table[0] = c1;
130 * Create color index lookup table. Calculate 256 step trasformation from
145 table = new int[cyclic ? LOOKUP_SIZE + LOOKUP_SIZE : LOOKUP_SIZE];
147 table[i] =
159 table[LOOKUP_SIZ
[all...]
/frameworks/base/awt/javax/imageio/plugins/jpeg/
H A DJPEGQTable.java25 * The JPEGQTable class represents a single JPEG quantization table and provides
48 * The table.
77 * The K1Luminance indicates standard table K.1 from JPEG specification and
83 * The K1Div2Luminance indicates K.1 table from JPEG specification with all
89 * The K2Chrominance indicates K.2 table from JPEG specification and
95 * The Constant K2Div2Chrominance indicates K.2 table from JPEG
105 * @param table
106 * the quantization table.
108 public JPEGQTable(int[] table) { argument
109 if (table
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DMccTable.java29 static ArrayList<MccEntry> table; field in class:MccTable
70 index = Collections.binarySearch(table, m);
75 return table.get(index);
152 table = new ArrayList<MccEntry>(240);
156 * The table below is built from two resources:
166 * This table has not been verified.
171 table.add(new MccEntry(202,"gr",2)); //Greece
172 table.add(new MccEntry(204,"nl",2,"Europe/Amsterdam","nl")); //Netherlands (Kingdom of the)
173 table.add(new MccEntry(206,"be",2)); //Belgium
174 table
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java53 * Decode a content URL into the table, projection, and arguments
57 public String table; field in class:SettingsProvider.SqlArguments
64 this.table = url.getPathSegments().get(0);
72 this.table = url.getPathSegments().get(0);
73 if ("gservices".equals(this.table) || "system".equals(this.table)
74 || "secure".equals(this.table)) {
87 this.table = url.getPathSegments().get(0);
97 * Get the content URI of a row added to a table.
98 * @param tableUri of the entire table
[all...]
/frameworks/base/core/java/android/content/
H A DAbstractTableMerger.java70 String table, Uri tableURL, String deletedTable,
74 mTable = table;
90 * ContentProvider. The localCursor is on a table from the local ContentProvider
99 * @param localCursor The Cursor into the local table, which points to the row that
330 // If this record is in the deleted table then update the server version
331 // in the deleted table, if necessary, and then ignore it here.
336 Log.v(TAG, "remote record " + serverSyncId + " is in the deleted table");
69 AbstractTableMerger(SQLiteDatabase database, String table, Uri tableURL, String deletedTable, Uri deletedTableURL) argument
H A DSyncableContentProvider.java87 * AbstractTableMerger} for each table they wish to merge. It
96 * AbstractTableMerger}, one for each table that should be merged.
205 * @param table the table to delete from
210 String table, String accountColumnName);
209 deleteRowsForRemovedAccounts(Map<String, Boolean> accounts, String table, String accountColumnName) argument
H A DAbstractSyncableContentProvider.java224 * android.content.AbstractTableMerger} for each table they wish to merge. It
233 * android.content.AbstractTableMerger}, one for each table that should be merged.
587 for (String table : tables) {
588 deleteRowsForRemovedAccounts(accounts, table,
603 * @param table the table to delete from
608 String table, String accountColumnName) {
610 Cursor c = db.query(table, sAccountProjection, null, null,
620 numDeleted = db.delete(table, accountColumnName + "=?", new String[]{account});
623 + " records from table "
607 deleteRowsForRemovedAccounts(Map<String, Boolean> accounts, String table, String accountColumnName) argument
[all...]
/frameworks/base/camera/libcameraservice/
H A DFakeCamera.cpp201 int32_t ccrgb16toyuv_wo_colorkey(uint8_t *rgb16,uint8_t *yuv422,uint32_t *param,uint8_t *table[]) argument
210 uint8_t *y_tab = table[0];
211 uint8_t *cb_tab = table[1];
212 uint8_t *cr_tab = table[2];
297 uint8_t *table[3]; local
298 table[0] = gYTable;
299 table[1] = gCbTable + 384;
300 table[2] = gCrTable + 384;
302 ccrgb16toyuv_wo_colorkey(rgb, yuv, param, table);
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java586 * Query the table for the number of rows in the table.
587 * @param db the database the table is in
588 * @param table the name of the table to query
589 * @return the number of rows in the table
591 public static long queryNumEntries(SQLiteDatabase db, String table) { argument
592 Cursor cursor = db.query(table, countProjection,
657 * This class allows users to do multiple inserts into a table but
681 * @param tableName the name of the table t
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java197 /** Used to make temp table names unique */
556 /** Maps table names to info about what to which _sync_time column to set
564 for (String table : mSyncUpdateInfo.keySet()) {
565 SyncUpdateInfo info = mSyncUpdateInfo.get(table);
567 tables.put(table, info.deletedTable);
583 * @param masterTable The table to set _sync_time to NULL in
584 * @param deletedTable The deleted table that corresponds to the
585 * master table
586 * @param foreignKey The key that refers to the primary key in table
595 /** The table containin
818 markTableSyncable(String table, String deletedTable) argument
833 markTableSyncable(String table, String foreignKey, String updateTable) argument
851 markTableSyncable(String table, String foreignKey, String updateTable, String deletedTable) argument
876 rowUpdated(String table, long rowId) argument
961 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
999 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1037 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1074 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1171 insert(String table, String nullColumnHack, ContentValues values) argument
1193 insertOrThrow(String table, String nullColumnHack, ContentValues values) argument
1209 replace(String table, String nullColumnHack, ContentValues initialValues) argument
1231 replaceOrThrow(String table, String nullColumnHack, ContentValues initialValues) argument
1251 insertWithOnConflict(String table, String nullColumnHack, ContentValues initialValues, ConflictAlgorithm algorithm) argument
1346 delete(String table, String whereClause, String[] whereArgs) argument
1386 update(String table, ContentValues values, String whereClause, String[] whereArgs) argument
1402 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, ConflictAlgorithm algorithm) argument
[all...]
/frameworks/base/tests/FrameworkTest/tests/src/android/content/
H A DAbstractTableMergerTest.java276 public MockTableMerger(SQLiteDatabase database, String table, Uri tableURL, argument
278 super(database, table, tableURL, deletedTable, deletedTableURL);
551 protected void deleteRowsForRemovedAccounts(Map<String, Boolean> accounts, String table, argument
/frameworks/base/tools/aapt/
H A DImages.cpp1071 ResourceTable* table, const sp<AaptFile>& file)
1078 return compileXmlFile(assets, file, table);
1070 postProcessImage(const sp<AaptAssets>& assets, ResourceTable* table, const sp<AaptFile>& file) argument
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp86 static jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table,
90 jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table, argument
96 (jint)table->getTableCookie(block));

Completed in 1363 milliseconds

12