HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 26 - 50 of 901) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psobjs.h 50 ps_table_new( PS_Table table,
55 ps_table_add( PS_Table table,
61 ps_table_done( PS_Table table ); variable
65 ps_table_release( PS_Table table ); variable
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_isf.cpp 58 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[ind], (int16)(L_tmp >> 8))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpan.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells spanning.
FixedWidth.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
HorizontalGravity.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
VerticalGravity.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
Weight.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells having a weight.
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionSymTab.h 33 std::vector<ELFSymbolTy *> table; member in class:ELFSectionSymTab
49 return table.size();
53 return table[index];
57 return table[index];
  /packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
ValTab.java 5 public int table = 0x00; field in class:ValTab
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDefaultDigestProvider.java 41 Map table = new HashMap(); local
43 table.put(OIWObjectIdentifiers.idSHA1, new BcDigestProvider()
50 table.put(NISTObjectIdentifiers.id_sha224, new BcDigestProvider()
57 table.put(NISTObjectIdentifiers.id_sha256, new BcDigestProvider()
64 table.put(NISTObjectIdentifiers.id_sha384, new BcDigestProvider()
71 table.put(NISTObjectIdentifiers.id_sha512, new BcDigestProvider()
78 table.put(PKCSObjectIdentifiers.md5, new BcDigestProvider()
86 // table.put(PKCSObjectIdentifiers.md4, new BcDigestProvider()
93 // table.put(PKCSObjectIdentifiers.md2, new BcDigestProvider()
100 // table.put(CryptoProObjectIdentifiers.gostR3411, new BcDigestProvider(
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableReadTest.java 30 * Test cases for {@link Table} read operations.
36 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest
39 * Creates a table with the specified data.
41 * @param data the table data, repeating the sequence row key, column key,
47 protected abstract Table<String, Integer, Character>
51 assertEquals(expectedSize, table.size());
56 table = create();
60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
61 assertTrue(table.contains("foo", 1))
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
27 * @coverage core.model.property.table
97 PropertyTable table = m_site.getTable(); local
98 // convert location from tooltip to table
101 p = table.toControl(p);
102 // send MouseDown to table
106 table.notifyListeners(SWT.MouseDown, newEvent);
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
21 * @coverage core.model.property.table
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_interfaces.cc 14 // This table keeps a pair of IRT entry (such as nacl_irt_basic, nacl_irt_fdio
19 const void* table; member in struct:nacl::nonsfi::__anon11043::NaClInterfaceTable
45 void* table, size_t tablesize) {
50 std::memcpy(table, kIrtInterfaces[i].table, size);
  /external/chromium_org/net/spdy/
hpack_constants.cc 31 table.reset(mutable_table.release());
38 scoped_ptr<const HpackHuffmanTable> table; member in struct:net::__anon13582::SharedHpackHuffmanTable
328 return *SharedHpackHuffmanTable::GetInstance()->table;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCaption.cpp 46 table()->addCaption(this);
53 table()->removeCaption(this);
56 RenderTable* RenderTableCaption::table() const function in class:WebCore::RenderTableCaption
  /external/chromium_org/third_party/libjingle/source/talk/base/
latebindingsymboltable_unittest.cc 55 LibmTestSymbolTable table; local
56 EXPECT_FALSE(table.IsLoaded());
57 ASSERT_TRUE(table.Load());
58 EXPECT_TRUE(table.IsLoaded());
59 EXPECT_EQ(table.acos()(0.5), acos(0.5));
60 EXPECT_EQ(table.sin()(0.5), sin(0.5));
61 EXPECT_EQ(table.tan()(0.5), tan(0.5));
64 table.Unload();
65 EXPECT_FALSE(table.IsLoaded());
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_symbol_table.h 43 * type safe and some symbol table invariants.
48 _glsl_symbol_table_destructor (glsl_symbol_table *table)
50 table->~glsl_symbol_table();
58 void *table; local
60 table = ralloc_size(ctx, size);
61 assert(table != NULL);
63 ralloc_set_destructor(table, (void (*)(void*)) _glsl_symbol_table_destructor);
65 return table;
71 static void operator delete(void *table)
73 ralloc_set_destructor(table, NULL)
121 struct _mesa_symbol_table *table; member in struct:glsl_symbol_table
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
generic_table_builder.cc 17 #include "sfntly/table/generic_table_builder.h"
25 // Note: In C++ port, we use GenericTable, the ref-counted version of Table
27 Ptr<GenericTable> table = new GenericTable(header(), InternalReadData()); local
28 return table.Detach();
  /external/chromium_org/third_party/skia/include/effects/
SkTableMaskFilter.h 16 Applies a table lookup on each of the alpha values in the mask.
23 /** Utility that sets the gamma table
25 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
27 /** Utility that creates a clipping table: clamps values below min to 0
30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
32 static SkTableMaskFilter* Create(const uint8_t table[256]) {
33 return SkNEW_ARGS(SkTableMaskFilter, (table));
37 uint8_t table[256]; local
38 MakeGammaTable(table, gamma);
39 return SkNEW_ARGS(SkTableMaskFilter, (table));
43 uint8_t table[256]; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
latebindingsymboltable_unittest.cc 38 LibmTestSymbolTable table; local
39 EXPECT_FALSE(table.IsLoaded());
40 ASSERT_TRUE(table.Load());
41 EXPECT_TRUE(table.IsLoaded());
42 EXPECT_EQ(table.acos()(0.5), acos(0.5));
43 EXPECT_EQ(table.sin()(0.5), sin(0.5));
44 EXPECT_EQ(table.tan()(0.5), tan(0.5));
47 table.Unload();
48 EXPECT_FALSE(table.IsLoaded());
  /external/chromium_org/tools/sheriffing/
failureinfo.js 76 * Build the HTML table row for a test failure. |test| is [ name, testData ].
171 var table = document.getElementById('failure-info'); variable
172 while (table.rows.length > 0) {
173 table.deleteRow(-1);
183 var headerRow = table.insertRow(-1);
189 table.appendChild(buildTestFailureTableRowHTML(flat[i]));
  /external/e2fsprogs/lib/ss/
invocation.c 30 register ss_data **table; local
33 table = _ss_table;
36 if (table == (ss_data **) NULL) {
37 table = (ss_data **) malloc(2 * size);
38 table[0] = table[1] = (ss_data *)NULL;
42 for (sci_idx = 1; table[sci_idx] != (ss_data *)NULL; sci_idx++)
44 table = (ss_data **) realloc((char *)table,
46 if (table == NULL)
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
HashBasedTable_CustomFieldSerializer.java 41 HashBasedTable<Object, Object, Object> table = HashBasedTable.create(); local
43 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
45 return table;
  /external/iproute2/ip/
ip_common.h 48 __u32 table = r->rtm_table; local
50 table = rta_getattr_u32(tb[RTA_TABLE]);
51 return table;

Completed in 1973 milliseconds

12 3 4 5 6 7 8 91011>>