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

12

/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dlog2_tab.h28 static const Word16 table[33] = variable
/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/base/libs/androidfw/tests/
H A DTheme_test.cpp40 ResTable table; local
41 ASSERT_EQ(NO_ERROR, table.add(system_arsc, system_arsc_len));
42 ASSERT_EQ(NO_ERROR, table.add(app_arsc, app_arsc_len));
44 ResTable::Theme theme1(table);
H A DTestHelpers.cpp25 ::testing::AssertionResult IsStringEqual(const ResTable& table, uint32_t resourceId, const char* expectedStr) { argument
27 ssize_t block = table.getResource(resourceId, &val, MAY_NOT_BE_BAG);
36 const ResStringPool* pool = table.getTableStringBlock(block);
38 return ::testing::AssertionFailure() << "table has no string pool for block " << block;
H A DResTable_test.cpp32 * Include a binary resource table.
41 ResTable table; local
42 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
46 ResTable table; local
47 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
49 EXPECT_TRUE(IsStringEqual(table, base::R::string::test1, "test1"));
53 ResTable table; local
54 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
58 uint32_t resID = table.identifierForName(testName.string(), testName.size(),
66 ResTable table; local
86 ResTable table; local
106 ResTable table; local
121 ResTable table; local
137 ResTable table; local
165 ResTable table; local
191 ResTable table; local
[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 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/rs/cpu_ref/linkloader/include/
H A DELFSectionHeaderTable.h33 std::vector<ELFSectionHeaderTy *> table; member in class:ELFSectionHeaderTable
47 return table[i];
51 return table[i];
H A DELFSectionRelTable.h32 std::vector<ELFRelocTy *> table; member in class:ELFSectionRelTable
46 return table.size();
50 return table[index];
54 return table[index];
H A DELFSectionSymTab.h33 std::vector<ELFSymbolTy *> table; member in class:ELFSectionSymTab
49 return table.size();
53 return table[index];
57 return table[index];
/frameworks/av/media/libstagefright/
H A DSampleIterator.cpp33 SampleIterator::SampleIterator(SampleTable *table) argument
34 : mTable(table),
/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/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp42 SkImageDecoder::PrefConfigTable table; local
43 table.fPrefFor_8Index_NoAlpha_src = SkBitmap::kIndex8_Config;
44 table.fPrefFor_8Index_YesAlpha_src = SkBitmap::kIndex8_Config;
45 table.fPrefFor_8Gray_src = SkBitmap::kARGB_8888_Config;
46 table.fPrefFor_8bpc_NoAlpha_src = SkBitmap::kARGB_8888_Config;
47 table.fPrefFor_8bpc_YesAlpha_src = SkBitmap::kARGB_8888_Config;
49 mHost->setPrefConfigTable(table);
/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/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 long nativeNewTable(byte[] table); argument

Completed in 1402 milliseconds

12