Searched refs:table (Results 1 - 25 of 41) sorted by relevance

12

/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
H A Dlsp_lsf.cpp50 Description: Placed table declarations in a .c file, rather than an included
63 Description: Added #ifdef __cplusplus around extern'ed table.
111 extern const Word16 table[];
140 table = cosine table
152 The transformation from lsp[i] to lsf[i] is approximated by a look-up table
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[in
[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/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/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/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/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java74 * Decode a content URL into the table, projection, and arguments
78 public String table; field in class:SettingsProvider.SqlArguments
85 this.table = url.getPathSegments().get(0);
86 if (!DatabaseHelper.isValidTable(this.table)) {
87 throw new IllegalArgumentException("Bad root path: " + this.table);
96 this.table = url.getPathSegments().get(0);
97 if (!DatabaseHelper.isValidTable(this.table)) {
98 throw new IllegalArgumentException("Bad root path: " + this.table);
100 if ("system".equals(this.table) || "secure".equals(this.table)) {
262 lookupValue(String table, SettingsCache cache, String key) argument
[all...]
/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 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 DWeightTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.Weight;
27 * {@link android.widget.layout.table.Weight} is
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 DVerticalGravityTest.java17 package android.widget.layout.table;
19 import android.widget.layout.table.VerticalGravity;
29 * {@link android.widget.layout.table.VerticalGravity} is
/frameworks/base/tools/aapt/
H A DImages.h16 ResourceTable* table, const sp<AaptFile>& file);
/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/tools/preload/
H A Dsorttable.js10 Add class="sortable" to any table you'd like to make sortable
34 forEach(document.getElementsByTagName('table'), function(table) {
35 if (table.className.search(/\bsortable\b/) != -1) {
36 sorttable.makeSortable(table);
42 makeSortable: function(table) {
43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
45 // put the first table row in it.
47 the.appendChild(table
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java236 /** Used to make temp table names unique */
735 /** Maps table names to info about what to which _sync_time column to set
743 for (String table : mSyncUpdateInfo.keySet()) {
744 SyncUpdateInfo info = mSyncUpdateInfo.get(table);
746 tables.put(table, info.deletedTable);
762 * @param masterTable The table to set _sync_time to NULL in
763 * @param deletedTable The deleted table that corresponds to the
764 * master table
765 * @param foreignKey The key that refers to the primary key in table
774 /** The table containin
1035 markTableSyncable(String table, String deletedTable) argument
1050 markTableSyncable(String table, String foreignKey, String updateTable) argument
1068 markTableSyncable(String table, String foreignKey, String updateTable, String deletedTable) argument
1093 rowUpdated(String table, long rowId) argument
1181 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1219 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1260 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1297 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1408 insert(String table, String nullColumnHack, ContentValues values) argument
1430 insertOrThrow(String table, String nullColumnHack, ContentValues values) argument
1446 replace(String table, String nullColumnHack, ContentValues initialValues) argument
1468 replaceOrThrow(String table, String nullColumnHack, ContentValues initialValues) argument
1490 insertWithOnConflict(String table, String nullColumnHack, ContentValues initialValues, int conflictAlgorithm) argument
1582 delete(String table, String whereClause, String[] whereArgs) argument
1621 update(String table, ContentValues values, String whereClause, String[] whereArgs) argument
1636 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) 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/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java45 // Try all the same things in the System table
67 for (Uri table : tables) {
71 Uri uri = r.insert(table, v);
72 assertEquals(table.toString() + "/test_key", uri.toString());
94 c = r.query(table, null, "name='test_key'", null, null);
129 // The bookmarks table (and everything else) uses standard row number content URIs.

Completed in 295 milliseconds

12