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

12

/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
H A Dlog2_tab.h28 static const Word16 table[33] = variable
/frameworks/base/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[65] = variable
/frameworks/base/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
H A Dpvmp3_mdct_18_gcc.s46 ldr r2,table
324 table: label
/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 DCellSpan.java17 package android.widget.layout.table;
25 * Exercise table layout with cells spanning.
H A DFixedWidth.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
H A DHorizontalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
H A DVerticalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
H A DWeight.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a weight.
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 DCellSpanTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.CellSpan;
27 * {@link android.widget.layout.table.CellSpan} is
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 DHorizontalGravityTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.HorizontalGravity;
28 * {@link android.widget.layout.table.HorizontalGravity} is
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 DWeightTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.Weight;
27 * {@link android.widget.layout.table.Weight} is
/frameworks/base/media/libstagefright/
H A DSampleIterator.cpp33 SampleIterator::SampleIterator(SampleTable *table) argument
34 : mTable(table),
/frameworks/base/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 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/base/graphics/java/android/graphics/
H A DTableMaskFilter.java24 public TableMaskFilter(byte[] table) { argument
25 if (table.length < 256) {
26 throw new RuntimeException("table.length must be >= 256");
28 native_instance = nativeNewTable(table);
43 private static native int nativeNewTable(byte[] table); argument
/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/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/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java87 * Decode a content URL into the table, projection, and arguments
91 public String table; field in class:SettingsProvider.SqlArguments
98 this.table = url.getPathSegments().get(0);
99 if (!DatabaseHelper.isValidTable(this.table)) {
100 throw new IllegalArgumentException("Bad root path: " + this.table);
109 this.table = url.getPathSegments().get(0);
110 if (!DatabaseHelper.isValidTable(this.table)) {
111 throw new IllegalArgumentException("Bad root path: " + this.table);
113 if ("system".equals(this.table) || "secure".equals(this.table)) {
290 fullyPopulateCache(String table, SettingsCache cache) argument
363 lookupValue(String table, SettingsCache cache, String key) argument
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java601 * Query the table for the number of rows in the table.
602 * @param db the database the table is in
603 * @param table the name of the table to query
604 * @return the number of rows in the table
606 public static long queryNumEntries(SQLiteDatabase db, String table) { argument
607 Cursor cursor = db.query(table, countProjection,
770 * This class allows users to do multiple inserts into a table but
794 * @param tableName the name of the table t
[all...]
/frameworks/base/services/camera/libcameraservice/
H A DFakeCamera.cpp202 uint32_t *param, uint8_t *table[])
211 uint8_t *y_tab = table[0];
212 uint8_t *cb_tab = table[1];
213 uint8_t *cr_tab = table[2];
300 uint8_t *table[3]; local
301 table[0] = gYTable;
302 table[1] = gCbTable + 384;
303 table[2] = gCrTable + 384;
305 ccrgb16toyuv_wo_colorkey(rgb, yuv, param, table);
201 ccrgb16toyuv_wo_colorkey(uint8_t *rgb16, uint8_t *yuv420, uint32_t *param, uint8_t *table[]) argument

Completed in 930 milliseconds

12