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

12345

/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/tools/aapt2/link/
H A DNoDefaultResourceRemover_test.cpp25 std::unique_ptr<ResourceTable> table = local
41 ASSERT_TRUE(remover.Consume(context.get(), table.get()));
43 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/foo")));
44 EXPECT_FALSE(table->FindResource(test::ParseNameOrDie("android:string/bar")));
45 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/bat")));
46 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/baz")));
H A DPrivateAttributeMover_test.cpp26 std::unique_ptr<ResourceTable> table = local
39 ASSERT_TRUE(mover.Consume(context.get(), table.get()));
41 ResourceTablePackage* package = table->FindPackage("android");
60 std::unique_ptr<ResourceTable> table = test::ResourceTableBuilder() local
66 ASSERT_TRUE(mover.Consume(context.get(), table.get()));
68 ResourceTablePackage* package = table->FindPackage("android");
81 std::unique_ptr<ResourceTable> table = local
87 ResourceTablePackage* package = table->FindPackage("android");
93 ASSERT_TRUE(mover.Consume(context.get(), table.get()));
H A DProductFilter_test.cpp29 ResourceTable table; local
30 ASSERT_TRUE(table.AddResource(
34 ASSERT_TRUE(table.AddResource(
39 ASSERT_TRUE(table.AddResource(
43 ASSERT_TRUE(table.AddResource(
49 ASSERT_TRUE(filter.Consume(context.get(), &table));
52 &table, "android:string/one", land, ""));
54 &table, "android:string/one", land, "tablet"));
56 &table, "android:string/one", port, ""));
58 &table, "androi
64 ResourceTable table; local
90 ResourceTable table; local
114 ResourceTable table; local
[all...]
H A DAutoVersioner_test.cpp53 std::unique_ptr<ResourceTable> table = local
84 ASSERT_TRUE(versioner.Consume(context.get(), table.get()));
86 Style* style = test::GetValueForConfig<Style>(table.get(), "app:style/Foo", test::ParseConfigOrDie("v4"));
91 style = test::GetValueForConfig<Style>(table.get(), "app:style/Foo", test::ParseConfigOrDie("v13"));
97 style = test::GetValueForConfig<Style>(table.get(), "app:style/Foo", test::ParseConfigOrDie("v17"));
104 style = test::GetValueForConfig<Style>(table.get(), "app:style/Foo", test::ParseConfigOrDie("v21"));
H A DReferenceLinker_test.cpp29 std::unique_ptr<ResourceTable> table = local
49 util::make_unique<ResourceTableSymbolSource>(table.get()))
57 ASSERT_TRUE(linker.Consume(context.get(), table.get()));
59 Reference* ref = test::GetValue<Reference>(table.get(), "com.app.test:string/foo");
64 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/bar");
69 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/baz");
76 std::unique_ptr<ResourceTable> table = local
90 // build the table, because we need access to the string pool.
91 Style* style = test::GetValue<Style>(table.get(), "com.app.test:style/Theme");
94 util::make_unique<RawString>(table
156 std::unique_ptr<ResourceTable> table = local
177 std::unique_ptr<ResourceTable> table = local
202 std::unique_ptr<ResourceTable> table = local
230 std::unique_ptr<ResourceTable> 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
/frameworks/base/libs/androidfw/tests/
H A DAppAsLib_test.cpp34 ResTable table; local
35 ASSERT_EQ(NO_ERROR, table.add(contents.data(), contents.size()));
38 ssize_t block = table.getResource(app::R::integer::number1, &val);
51 ResTable table; local
53 ASSERT_EQ(NO_ERROR, table.add(contents.data(), contents.size(), NULL, 0, -1,
57 ssize_t block = table.getResource(lib::R::integer::number1, &val);
70 ResTable table; local
72 ASSERT_EQ(NO_ERROR, table.add(contents.data(), contents.size(), NULL, 0, -1,
76 ssize_t block = table.getResource(lib::R::integer::number1, &val);
/frameworks/base/tools/aapt2/process/
H A DSymbolTable_test.cpp32 std::unique_ptr<ResourceTable> table = local
40 ResourceTableSymbolSource symbol_source(table.get());
51 std::unique_ptr<ResourceTable> table = local
57 ResourceTableSymbolSource symbol_source(table.get());
65 std::unique_ptr<ResourceTable> table = local
73 symbol_table.AppendSource(util::make_unique<ResourceTableSymbolSource>(table.get()));
93 std::unique_ptr<ResourceTable> table = local
102 ASSERT_TRUE(flattener.Consume(context.get(), table.get()));
/frameworks/av/media/extractors/mp4/
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/tools/aapt2/optimize/
H A DVersionCollapser_test.cpp40 std::unique_ptr<ResourceTable> table = BuildTableWithConfigs( local
45 ASSERT_TRUE(collapser.Consume(context.get(), table.get()));
49 test::GetValueForConfig<Id>(table.get(), res_name,
52 test::GetValueForConfig<Id>(table.get(), res_name,
57 test::GetValueForConfig<Id>(table.get(), res_name,
62 test::GetValueForConfig<Id>(table.get(), res_name,
67 test::GetValueForConfig<Id>(table.get(), res_name,
70 test::GetValueForConfig<Id>(table.get(), res_name,
73 test::GetValueForConfig<Id>(table.get(), res_name,
83 std::unique_ptr<ResourceTable> table local
[all...]
/frameworks/base/tools/aapt2/split/
H A DTableSplitter_test.cpp24 std::unique_ptr<ResourceTable> table = local
44 splitter.SplitTable(table.get());
47 table.get(), "android:drawable/icon",
50 table.get(), "android:drawable/icon",
53 table.get(), "android:drawable/icon",
56 table.get(), "android:drawable/icon",
58 EXPECT_NE(nullptr, test::GetValue<Id>(table.get(), "android:string/one"));
62 std::unique_ptr<ResourceTable> table = local
83 splitter.SplitTable(table.get());
88 table
107 std::unique_ptr<ResourceTable> table = local
191 ResourceTable table; local
[all...]
/frameworks/av/media/mtp/
H A DMtpDebug.cpp372 static const char* getCodeName(uint16_t code, const CodeEntry* table) { argument
373 const CodeEntry* entry = table;

Completed in 180 milliseconds

12345