/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...] |
/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() { 66 table_.Attach(down_cast<Table*>(SubBuildTable(data)));
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
TableQuery.py | 2 # This file is used to create/update/query/erase table for Queries
19 from Table import Table
23 # This class defined a table used for Query
28 class TableQuery(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Query'
33 ## Create table
35 # Create table Query
44 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY, [all...] |
TableDec.py | 2 # This file is used to create/update/query/erase table for dec datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDec(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dec'
34 ## Create table
36 # Create table Dec
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableDsc.py | 2 # This file is used to create/update/query/erase table for dsc datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDsc(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dsc'
34 ## Create table
36 # Create table Dsc
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableEotReport.py | 2 # This file is used to create/update/query/erase table for ECC reports
19 from Table import Table
26 # This class defined a table used for data model
31 class TableEotReport(Table):
33 Table.__init__(self, Cursor)
34 self.Table = 'Report'
36 ## Create table
38 # Create table report
42 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableFdf.py | 2 # This file is used to create/update/query/erase table for fdf datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableFdf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Fdf'
34 ## Create table
36 # Create table Fdf
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableInf.py | 2 # This file is used to create/update/query/erase table for inf datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableInf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Inf'
34 ## Create table
36 # Create table Inf
55 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableDataModel.py | 2 # This file is used to create/update/query/erase table for data models
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDataModel(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'DataModel'
34 ## Create table
36 # Create table DataModel
44 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableFunction.py | 2 # This file is used to create/update/query/erase table for functions
18 from Table import Table
23 # This class defined a table used for function
25 # @param Table: Inherited from Table class
27 class TableFunction(Table):
29 Table.__init__(self, Cursor)
30 self.Table = 'Function'
32 ## Create table
[all...] |
TableIdentifier.py | 2 # This file is used to create/update/query/erase table for Identifiers
19 from Table import Table
23 # This class defined a table used for Identifier
28 class TableIdentifier(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Identifier'
33 ## Create table
35 # Create table Identifier
51 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY, [all...] |
TablePcd.py | 2 # This file is used to create/update/query/erase table for pcds
18 from Table import Table
23 # This class defined a table used for pcds
28 class TablePcd(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Pcd'
33 ## Create table
35 # Create table Pcd
51 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableFile.py | 2 # This file is used to create/update/query/erase table for files
18 from Table import Table
25 # This class defined a table used for file
29 class TableFile(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'File'
34 ## Create table
36 # Create table File
47 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
/external/skia/third_party/lua/src/ |
ltable.h | 21 LUAI_FUNC const TValue *luaH_getint (Table *t, int key); 22 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value); 23 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key); 24 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key); 25 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key); 26 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 27 LUAI_FUNC Table *luaH_new (lua_State *L); 28 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); 29 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize); 30 LUAI_FUNC void luaH_free (lua_State *L, Table *t) [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/ |
EfiGetConfigTable.c | 28 OUT VOID **Table
34 Get table from configuration table by name
38 TableGuid - Table name to search
40 Table - Pointer to the table caller wants
44 EFI_NOT_FOUND - Not found the table
46 EFI_SUCCESS - Found the table
52 *Table = NULL;
55 *Table = gST->ConfigurationTable[Index].VendorTable; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
ltable.h | 20 /* returns the key, given the value of a table entry */ 25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key); 26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value); 27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key); 28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key); 29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key); 30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 31 LUAI_FUNC Table *luaH_new (lua_State *L); 32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); 33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize) [all...] |
/external/syslinux/com32/lua/src/ |
ltable.h | 20 /* returns the key, given the value of a table entry */ 25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key); 26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value); 27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key); 28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key); 29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key); 30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 31 LUAI_FUNC Table *luaH_new (lua_State *L); 32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); 33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize) [all...] |
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
s-c1.c | 432 struct row *Table = NULL; 512 Table = calloc(N, sizeof(struct row)); 514 if (Table == NULL) { 527 Table[N].X = (long)cur->nsem; 528 Table[N].LnX = log((double)cur->nsem); 531 Table[N]._x = Table[N].X - Xavg; 532 Table[N]._lnx = Table[N].LnX - LnXavg; 533 Table[N].Y_o = cur->_data_open [all...] |
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
s-c1.c | 442 struct row *Table = NULL; 522 Table = calloc(N, sizeof(struct row)); 524 if (Table == NULL) { 536 Table[N].X = (long)cur->nsem; 537 Table[N].LnX = log((double)cur->nsem); 540 Table[N]._x = Table[N].X - Xavg; 541 Table[N]._lnx = Table[N].LnX - LnXavg; 542 Table[N].Y_o = cur->_data_open [all...] |
/external/flatbuffers/python/flatbuffers/ |
__init__.py | 16 from .table import Table
|
/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...] |
/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...] |