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

12

/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.cpp550 } table[] = { local
558 for (unsigned i = 0; i < sizeof(table)/sizeof(table[0]); ++i) {
559 if (table[i].mChannels == getChannels() &&
560 table[i].mBitsPerSample == getBitsPerSample()) {
561 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/mp3dec/src/asm/
H A Dpvmp3_mdct_18_arm.s48 ldr r2,table
326 table label
H A Dpvmp3_mdct_18_wm.asm46 ldr r2,table
324 table label
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c76 /* clipping table, defined in h264bsd_intra_prediction.c */
1223 i32 table[21*16]; local
1245 b1 = table;
1312 ptrC = table + partWidth;
1410 i32 table[21*16]; local
1432 b1 = table;
1497 ptrC = table + partWidth;
1614 i32 table[21*16]; local
1637 h1 = table + tableWidth;
1701 ptrJ = table
[all...]
/frameworks/av/media/mtp/
H A DMtpDebug.cpp370 static const char* getCodeName(uint16_t code, const CodeEntry* table) { argument
371 const CodeEntry* entry = table;
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java169 final String table, final String key) {
171 if ("system".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SYSTEM;
172 else if ("secure".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SECURE;
173 else if ("global".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_GLOBAL;
175 System.err.println("Invalid table; no put performed");
176 throw new IllegalArgumentException("Invalid table " + table);
188 System.err.println("Can't read key " + key + " in " + table + " for user " + userHandle);
194 final String table, final String key, final String value) {
196 if ("system".equals(table)) callPutComman
168 getForUser(IContentProvider provider, int userHandle, final String table, final String key) argument
193 putForUser(IContentProvider provider, int userHandle, final String table, final String key, final String value) argument
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java752 * Query the table for the number of rows in the table.
753 * @param db the database the table is in
754 * @param table the name of the table to query
755 * @return the number of rows in the table
757 public static long queryNumEntries(SQLiteDatabase db, String table) { argument
758 return queryNumEntries(db, table, null, null);
762 * Query the table for the number of rows in the table
770 queryNumEntries(SQLiteDatabase db, String table, String selection) argument
787 queryNumEntries(SQLiteDatabase db, String table, String selection, String[] selectionArgs) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java924 * Mark this table as syncable. When an update occurs in this table the
927 * @param table the table to mark as syncable
928 * @param deletedTable The deleted table that corresponds to the
929 * syncable table
933 public void markTableSyncable(String table, String deletedTable) { argument
937 * Mark this table as syncable, with the _sync_dirty residing in another
938 * table. When an update occurs in this table th
949 markTableSyncable(String table, String foreignKey, String updateTable) argument
1029 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1070 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1109 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1152 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1196 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1234 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1337 insert(String table, String nullColumnHack, ContentValues values) argument
1363 insertOrThrow(String table, String nullColumnHack, ContentValues values) argument
1383 replace(String table, String nullColumnHack, ContentValues initialValues) argument
1409 replaceOrThrow(String table, String nullColumnHack, ContentValues initialValues) argument
1435 insertWithOnConflict(String table, String nullColumnHack, ContentValues initialValues, int conflictAlgorithm) argument
1488 delete(String table, String whereClause, String[] whereArgs) argument
1513 update(String table, ContentValues values, String whereClause, String[] whereArgs) argument
1528 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DClientCertRequestHandler.java44 SslClientCertLookupTable table) {
48 mTable = table;
41 ClientCertRequestHandler(BrowserFrame browserFrame, int handle, String host_and_port, SslClientCertLookupTable table) argument
H A DSslCertLookupTable.java34 private final Bundle table; field in class:SslCertLookupTable
44 table = new Bundle();
54 table.putInt(host, sslError.getPrimaryError());
66 return table.containsKey(host) && sslError.getPrimaryError() <= table.getInt(host);
70 table.clear();
/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.cpp81 static jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table,
85 jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table, argument
91 (jint)table->getTableCookie(block));
1512 // overflow the local reference table of the VM.
/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

Completed in 385 milliseconds

12