Searched defs:Table (Results 1 - 25 of 128) sorted by relevance

123456

/external/flatbuffers/python/flatbuffers/
H A D__init__.py16 from .table import Table namespace
H A Dtable.py19 class Table(object): class in inherits:object
20 """Table wraps a byte slice and provides read access to its data.
33 """Offset provides access into the Table's vtable.
78 """Union initializes any Table-derived type to point to the union at
80 assert type(t2) is Table
/external/tensorflow/tensorflow/core/lib/io/
H A Dtable.h32 // A Table is a sorted map from strings to strings. Tables are
33 // immutable and persistent. A Table may be safely accessed from
35 class Table { class in namespace:tensorflow::table
48 uint64 file_size, Table** table);
50 ~Table();
69 explicit Table(Rep* rep) { rep_ = rep; } function in class:tensorflow::table::Table
80 Table(const Table&);
81 void operator=(const Table&);
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dboxdraw.c127 UNICODE_TO_CHAR *Table; local
138 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
139 if (Graphic == Table->Unicode) {
141 *PcAnsi = Table->PcAnsi;
144 *Ascii = Table->Ascii;
/external/sfntly/cpp/src/sfntly/table/
H A Dtable.cc44 * Table class
46 Table::~Table() {}
48 int64_t Table::CalculatedChecksum() {
52 void Table::SetFont(Font* font) {
56 Table::Table(Header* header, ReadableFontData* data) function in class:sfntly::Table
62 * Table::Builder class
64 Table::Builder::~Builder() {
68 void Table
[all...]
H A Dtable.h35 class Table : public FontDataTable { class in namespace:sfntly
37 // Note: original version is Builder<T extends Table>
67 virtual ~Table();
92 Table(Header* header, ReadableFontData* data);
100 class GenericTable : public Table, public RefCounted<GenericTable> {
102 GenericTable(Header* header, ReadableFontData* data) : Table(header, data) {}
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
/external/dng_sdk/source/
H A Ddng_1d_table.h43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize).
62 /// \param function Table is initialized with values of finction.Evalluate(0.0) to function.Evaluate(1.0).
101 const real32 * Table () const function in class:dng_1d_table
/external/llvm/lib/DebugInfo/CodeView/
H A DListRecordBuilder.cpp75 TypeIndex ListRecordBuilder::writeListRecord(TypeTableBuilder &Table) { argument
89 TypeIndex ContinuationIndex = Table.writeRecord(LastRec);
99 ContinuationIndex = Table.writeRecord(Rec);
/external/lzma/CS/7zip/Common/
H A DCRC.cs7 public static readonly uint[] Table; field in class:SevenZip.CRC
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);
/external/lzma/Java/SevenZip/
H A DCRC.java7 static public int[] Table = new int[256]; field in class:CRC
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/mesa3d/src/hgl/
H A DGLDispatcher.h36 struct _glapi_table* Table();
64 BGLDispatcher::Table() function in class:BGLDispatcher
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DTable.java20 public class Table { class
25 public Table(String id, String name) { method in class:Table
/external/flatbuffers/php/
H A DTable.php20 abstract class Table class
113 * @param Table $table
115 * @return Table
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableTest.java26 * Test cases for a {@link Table} implementation supporting reads and writes.
35 Table<String, Integer, Character> table, Object... data) {
118 Table<String, Integer, Character> other = HashBasedTable.create();
34 populate( Table<String, Integer, Character> table, Object... data) argument
/external/libtextclassifier/util/math/
H A Dfastexp.h39 struct Table { struct in class:libtextclassifier2::FastMathClass
58 static const Table cache_;
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dbase_rendezvous_mgr.h100 typedef gtl::FlatMap<int64, BaseRemoteRendezvous*> Table; typedef in class:tensorflow::BaseRendezvousMgr
106 Table table_ GUARDED_BY(mu_);
/external/flatbuffers/net/FlatBuffers/
H A DTable.cs25 public struct Table struct in namespace:FlatBuffers
97 // Initialize any Table-derived type to point to the union at the given offset.
/external/llvm/lib/LibDriver/
H A DLibDriver.cpp109 LibOptTable Table; local
113 Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount);
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_pointers.py117 class Table(Structure): class in function:PointersTestCase.test_other
122 pt = pointer(Table(1, 2, 3))
131 del _pointer_type_cache[Table]
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_pointers.py120 class Table(Structure): class in function:PointersTestCase.test_other
125 pt = pointer(Table(1, 2, 3))
134 del _pointer_type_cache[Table]
/external/clang/lib/Basic/
H A DBuiltins.cpp81 void Builtin::Context::initializeBuiltins(IdentifierTable &Table, argument
86 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
92 Table.get(TSRecords[i].Name).setBuiltinID(i + Builtin::FirstTSBuiltin);
96 Table.get(AuxTSRecords[i].Name)
100 void Builtin::Context::forgetBuiltin(unsigned ID, IdentifierTable &Table) { argument
101 Table.get(getRecord(ID).Name).setBuiltinID(0);
/external/flatbuffers/java/com/google/flatbuffers/
H A DTable.java33 public class Table { class
49 /** The underlying ByteBuffer to hold the data of the Table. */
55 * @return Returns the Table's ByteBuffer.
62 * @param vtable_offset An `int` offset to the vtable in the Table's ByteBuffer.
78 * @param offset An `int` index into the Table's ByteBuffer containing the relative offset.
97 * @param offset An `int` index into the Table's ByteBuffer.
134 * @param offset An `int` index into the Table's ByteBuffer.
146 * @param offset An `int` index into the Table's ByteBuffer.
176 * Initialize any Table-derived type to point to the union at the given `offset`.
178 * @param t A `Table`
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotConverters.py41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
217 class Table(Struct): class in inherits:Struct
260 class LTable(Table):
268 class SubTable(Table):
278 Table.write(self, writer, font, tableDict, value, repeatIndex)
280 class FeatureParams(Table):
380 "Offset": Table,
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotConverters.py41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
217 class Table(Struct): class in inherits:Struct
260 class LTable(Table):
268 class SubTable(Table):
278 Table.write(self, writer, font, tableDict, value, repeatIndex)
280 class FeatureParams(Table):
380 "Offset": Table,
/external/guava/guava/src/com/google/common/collect/
H A DTable.java48 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table">
49 * {@code Table}</a>.
58 public interface Table<R, C, V> { interface
152 void putAll(Table<? extends R, ? extends C, ? extends V> table);

Completed in 5329 milliseconds

123456