HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 1 - 25 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/test/
serialization_test.h 20 #include "sfntly/table/table.h"
24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target)
    [all...]
verify_glyf.cc 19 #include "sfntly/table/truetype/glyph_table.h"
33 static bool VerifyGLYF(Table* table) {
34 GlyphTablePtr glyf_table = down_cast<GlyphTable*>(table);
53 bool VerifyGLYF(Table* original, Table* target) {
verify_hhea.cc 20 #include "sfntly/table/core/horizontal_header_table.h"
35 static bool VerifyHHEA(Table* table) {
36 HorizontalHeaderTablePtr hhea = down_cast<HorizontalHeaderTable*>(table);
57 bool VerifyHHEA(Table* original, Table* target) {
verify_loca.cc 19 #include "sfntly/table/truetype/loca_table.h"
40 static bool VerifyLOCA(Table* table) {
41 LocaTablePtr loca = down_cast<LocaTable*>(table);
56 bool VerifyLOCA(Table* original, Table* target) {
  /external/sfntly/cpp/src/sfntly/table/
subtable_container_table.h 20 #include "sfntly/table/table.h"
24 class SubTableContainerTable : public Table {
26 class Builder : public Table::Builder {
29 : Table::Builder(header, data) {
33 : Table::Builder(header, data) {
40 : Table(header, data) {
table.cc 21 #include "sfntly/table/table.h"
25 #include "sfntly/table/bitmap/ebdt_table.h"
26 #include "sfntly/table/bitmap/eblc_table.h"
27 #include "sfntly/table/bitmap/ebsc_table.h"
28 #include "sfntly/table/core/cmap_table.h"
29 #include "sfntly/table/core/font_header_table.h"
30 #include "sfntly/table/core/horizontal_device_metrics_table.h"
31 #include "sfntly/table/core/horizontal_header_table.h"
32 #include "sfntly/table/core/horizontal_metrics_table.h
    [all...]
table_based_table_builder.cc 17 #include "sfntly/table/table_based_table_builder.h"
44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); local
45 return table.Detach();
50 : Table::Builder(header, data) {
55 : Table::Builder(header, data) {
59 : Table::Builder(header) {
62 Table* TableBasedTableBuilder::GetTable() {
64 table_.Attach(down_cast<Table*>(SubBuildTable(InternalReadData())));
table_based_table_builder.h 20 #include "sfntly/table/table.h"
24 class TableBasedTableBuilder : public Table::Builder {
39 // C++ port: renamed table() to GetTable()
40 virtual Table* GetTable();
table.h 26 #include "sfntly/table/font_data_table.h"
27 #include "sfntly/table/header.h"
32 // A concrete implementation of a root level table in the font. This is the base
33 // class used for all specific table implementations and is used as the generic
34 // table for all tables which have no specific implementations.
35 class Table : public FontDataTable {
37 // Note: original version is Builder<T extends Table>
44 virtual void NotifyPostTableBuild(FontDataTable* table);
46 // Get a builder for the table type specified by the data in the header.
47 // @param header the header for the table
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
HashBasedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<String, Integer, Character> table = HashBasedTable.create(); local
32 table.put("foo", 4, 'a');
33 table.put("cat", 1, 'b');
34 table.clear();
35 populate(table, data);
36 return table;
40 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20);
44 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0)
    [all...]
TableCollectionTest.java 21 import com.google.common.collect.Table.Cell;
37 * Collection tests for {@link Table} implementations.
70 Table<String, Integer, Character> table, String[] elements) {
72 table.put(row, 1, 'a');
73 table.put(row, 2, 'b');
78 Table<Integer, String, Character> table, String[] elements) {
80 table.put(1, column, 'a');
81 table.put(2, column, 'b')
107 Table<String, Integer, Character> table = createTable(); local
164 Table<Character, String, Integer> table = makeTable(); local
217 Table<Character, String, Integer> table = HashBasedTable.create(); local
222 Table<Character, String, Integer> table = HashBasedTable.create(); local
237 Table<Character, String, Integer> table = HashBasedTable.create(); local
242 Table<Character, String, Integer> table = HashBasedTable.create(); local
257 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
262 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
285 Table<String, Character, Integer> table = makeTable(); local
331 Table<String, Character, Integer> table = HashBasedTable.create(); local
336 Table<String, Character, Integer> table = HashBasedTable.create(); local
351 Table<String, Character, Integer> table = HashBasedTable.create(); local
356 Table<String, Character, Integer> table = HashBasedTable.create(); local
371 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
376 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
449 Table<String, Integer, Character> table = makeTable(); local
491 TreeBasedTable<String, Integer, Character> table = local
499 TreeBasedTable<String, Integer, Character> table = makeTable(); local
519 TreeBasedTable<String, Integer, Character> table = local
527 TreeBasedTable<String, Integer, Character> table = makeTable(); local
547 TreeBasedTable<String, Integer, Character> table = local
556 TreeBasedTable<String, Integer, Character> table = makeTable(); local
590 Table<String, Integer, String> table = HashBasedTable.create(); local
610 Table<String, Integer, Character> table = HashBasedTable.create(); local
630 RowSortedTable<String, Integer, Character> table = TreeBasedTable.create(); local
649 Table<Integer, String, Character> table = makeTable(); local
693 Table<Integer, String, String> table = HashBasedTable.create(); local
713 Table<Integer, String, Character> table = HashBasedTable.create(); local
733 RowSortedTable<Integer, String, Character> table = TreeBasedTable.create(); local
    [all...]
  /external/lzma/Java/SevenZip/
CRC.java 7 static public int[] Table = new int[256];
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<Integer, String, Character> original = HashBasedTable.create();
32 Table<String, Integer, Character> table = Tables.transpose(original); local
33 table.clear();
34 populate(table, data);
35 return table;
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
45 Table<String, Integer, Character> transpose = Tables.transpose(original)
    [all...]
HashBasedTableTest.java 32 @Override protected Table<String, Integer, Character> create(
34 Table<String, Integer, Character> table = HashBasedTable.create(); local
35 table.put("foo", 4, 'a');
36 table.put("cat", 1, 'b');
37 table.clear();
38 populate(table, data);
39 return table;
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20);
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0)
    [all...]
ForwardingTableTest.java 26 private Table<String, Integer, Boolean> forward;
36 final Table<String, Integer, Boolean> table = local
37 createProxyInstance(Table.class);
39 @Override protected Table<String, Integer, Boolean> delegate() {
40 return table;
112 assertEquals("[putAll(Table)]", getCalls());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Table.java 20 public class Table {
25 public Table(String id, String name) {
PackageCompactConstructorTest.java 23 assertEquals(Table.class, check("Table"));
24 assertEquals(Table.class, check("org.yaml.snakeyaml.extensions.compactnotation.Table"));
  /external/lzma/CS/7zip/Common/
CRC.cs 7 public static readonly uint[] Table;
11 Table = new uint[256];
21 Table[i] = r;
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
  /art/runtime/
reference_table.h 35 // Maintain a table of references. Used for JNI monitor references and
57 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
58 static void Dump(std::ostream& os, Table& entries)
63 Table entries_;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
IHTMLReportContext.java 19 import org.jacoco.report.internal.html.table.Table;
41 * Returns a table for rendering coverage nodes.
43 * @return table for rendering
45 public Table getTable();
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /frameworks/base/core/tests/coretests/src/com/android/internal/app/procstats/
SparseMappingTableTest.java 51 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
57 table.writeToParcel(tableParcel);
66 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1);
79 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
81 key = table.getOrAddKey(ID1, 1)
120 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
172 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
196 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
netioapi.h 52 MIB_ANYCASTIPADDRESS_ROW Table[ANY_SIZE];
100 MIB_IPNET_ROW2 Table[ANY_SIZE];
105 MIB_IPFORWARD_ROW2 Table[ANY_SIZE];
148 MIB_IPINTERFACE_ROW Table[ANY_SIZE];
168 MIB_UNICASTIPADDRESS_ROW Table[ANY_SIZE];
226 MIB_IF_ROW2 Table[ANY_SIZE];
236 MIB_IFSTACK_ROW Table[ANY_SIZE];
246 MIB_INVERTEDIFSTACK_ROW Table[ANY_SIZE];
269 MIB_IPPATH_ROW Table[ANY_SIZE];
281 MIB_MULTICASTIPADDRESS_ROW Table[ANY_SIZE]
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
PageTestBase.java 28 import org.jacoco.report.internal.html.table.LabelColumn;
29 import org.jacoco.report.internal.html.table.Table;
49 final Table table = new Table(); local
50 table.add("Element", null, new LabelColumn(), true);
61 public Table getTable() {
62 return table;

Completed in 861 milliseconds

1 2 3 4 5 6 7 8 91011>>