Searched defs:table (Results 1 - 25 of 79) sorted by path

1234

/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp29 const audio_coef_t * table) {
33 mTable = table;
26 AudioCoefInterpolator(size_t nInDims, const size_t inDims[], size_t nOutDims, const audio_coef_t * table) argument
/frameworks/av/media/libstagefright/
H A DFLACExtractor.cpp595 } table[] = { local
606 for (unsigned i = 0; i < sizeof(table)/sizeof(table[0]); ++i) {
607 if (table[i].mChannels >= getChannels() &&
608 table[i].mBitsPerSample == getBitsPerSample()) {
609 mCopy = table[i].mCopy;
H A DSampleIterator.cpp33 SampleIterator::SampleIterator(SampleTable *table) argument
34 : mTable(table),
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dlsp_lsf_tbl.cpp37 Description: Added #ifdef __cplusplus and removed "extern" from table
80 extern const Word16 table[];
81 const Word16 table[65] = variable
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Disp_isf.cpp58 approximated by a look-up table and interpolation.
107 /* Look-up table for transformations */
109 /* table of cos(x) in Q15 */
111 static const int16 table[129] = variable
168 /* isp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 128 */
170 L_tmp = mul_16by16_to_int32(table[ind + 1] - table[ind], offset);
171 isp[i] = add_int16(table[in
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dlog2_tab.h28 static const Word16 table[33] = variable
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c78 /* clipping table, defined in h264bsd_intra_prediction.c */
1225 i32 table[21*16]; local
1247 b1 = table;
1314 ptrC = table + partWidth;
1412 i32 table[21*16]; local
1434 b1 = table;
1499 ptrC = table + partWidth;
1616 i32 table[21*16]; local
1639 h1 = table + tableWidth;
1703 ptrJ = table
[all...]
/frameworks/av/media/mtp/
H A DMtpDebug.cpp371 static const char* getCodeName(uint16_t code, const CodeEntry* table) { argument
372 const CodeEntry* entry = table;
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java191 private List<String> listForUser(IContentProvider provider, int userHandle, String table) { argument
192 final Uri uri = "system".equals(table) ? Settings.System.CONTENT_URI
193 : "secure".equals(table) ? Settings.Secure.CONTENT_URI
194 : "global".equals(table) ? Settings.Global.CONTENT_URI
214 System.err.println("List failed in " + table + " for user " + userHandle);
229 final String table, final String key) {
231 if ("system".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SYSTEM;
232 else if ("secure".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SECURE;
233 else if ("global".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_GLOBAL;
235 System.err.println("Invalid table; n
228 getForUser(IContentProvider provider, int userHandle, final String table, final String key) argument
253 putForUser(IContentProvider provider, int userHandle, final String table, final String key, final String value) argument
274 deleteForUser(IContentProvider provider, int userHandle, final String table, final String key) argument
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java772 * Query the table for the number of rows in the table.
773 * @param db the database the table is in
774 * @param table the name of the table to query
775 * @return the number of rows in the table
777 public static long queryNumEntries(SQLiteDatabase db, String table) { argument
778 return queryNumEntries(db, table, null, null);
782 * Query the table for the number of rows in the table
790 queryNumEntries(SQLiteDatabase db, String table, String selection) argument
807 queryNumEntries(SQLiteDatabase db, String table, String selection, String[] selectionArgs) argument
821 queryIsEmpty(SQLiteDatabase db, String table) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java928 * Mark this table as syncable. When an update occurs in this table the
931 * @param table the table to mark as syncable
932 * @param deletedTable The deleted table that corresponds to the
933 * syncable table
937 public void markTableSyncable(String table, String deletedTable) { argument
941 * Mark this table as syncable, with the _sync_dirty residing in another
942 * table. When an update occurs in this table th
953 markTableSyncable(String table, String foreignKey, String updateTable) argument
1033 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1074 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1113 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1156 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1200 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1238 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1341 insert(String table, String nullColumnHack, ContentValues values) argument
1367 insertOrThrow(String table, String nullColumnHack, ContentValues values) argument
1387 replace(String table, String nullColumnHack, ContentValues initialValues) argument
1413 replaceOrThrow(String table, String nullColumnHack, ContentValues initialValues) argument
1438 insertWithOnConflict(String table, String nullColumnHack, ContentValues initialValues, int conflictAlgorithm) argument
1494 delete(String table, String whereClause, String[] whereArgs) argument
1522 update(String table, ContentValues values, String whereClause, String[] whereArgs) argument
1540 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) { argument
100 return query(db, table, columns, null, null, orderBy, null);
106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy, argument
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
115 public int update(SQLiteDatabase db, String table, ContentValues values) { argument
116 return db.update(table, values, getSelection(), getSelectionArgs());
122 public int delete(SQLiteDatabase db, String table) { argument
123 return db.delete(table, getSelection(), getSelectionArgs());
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp109 static jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table,
113 jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table, argument
119 static_cast<jint>(table->getTableCookie(block)));
1995 // overflow the local reference table of the VM.
/frameworks/base/core/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java100 private void testRowNameContentUri(Uri table, String nameField, String valueField, argument
108 r.insert(table, v);
109 Uri uri = Uri.parse(table.toString() + "/" + testKey);
131 c = r.query(table, null, "name='" + testKey + "'", null, null);
195 // The bookmarks table (and everything else) uses standard row number content URIs.
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DAddColumn.java17 package android.widget.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 DAddColumnTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.AddColumn;
30 * {@link android.widget.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 DCellSpan.java17 package android.widget.layout.table;
25 * Exercise table layout with cells spanning.
H A DCellSpanTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.CellSpan;
27 * {@link android.widget.layout.table.CellSpan} is
H A DFixedWidth.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
H A DFixedWidthTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.FixedWidth;
27 * {@link android.widget.layout.table.FixedWidth} is
H A DHorizontalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
H A DHorizontalGravityTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.HorizontalGravity;
28 * {@link android.widget.layout.table.HorizontalGravity} is
H A DVerticalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
H A DVerticalGravityTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.VerticalGravity;
29 * {@link android.widget.layout.table.VerticalGravity} is
H A DWeight.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a weight.

Completed in 457 milliseconds

1234