HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 151 - 175 of 792) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/flatbuffers/tests/union_vector/
Rapunzel.php 5 use \Google\FlatBuffers\Table;
  /external/guava/guava/src/com/google/common/collect/
RowSortedTable.java 28 * Interface that extends {@code Table} and whose rows are sorted.
32 * {@link Map} specified by the {@link Table} interface.
39 public interface RowSortedTable<R, C, V> extends Table<R, C, V> {
44 * specified in the {@link Table} interface.
52 * specified in the {@link Table} interface.
Tables.java 27 import com.google.common.collect.Table.Cell;
41 * Provides static methods that involve a {@code Table}.
126 * Creates a transposed view of a given table that flips its row and column
128 * generated table always returns the same value as calling {@code
129 * get(rowKey, columnKey)} on the original table. Updating the original table
130 * changes the contents of the transposed table and vice versa.
132 * <p>The returned table supports update operations as long as the input table
139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table)
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 73 DILineInfoTable Table;
76 return Table;
81 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry));
83 return Table;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructorErrorsTest.java 38 assertEquals("java.lang.ClassNotFoundException: Table", e.getMessage());
82 "java.lang.NoSuchMethodException: org.yaml.snakeyaml.extensions.compactnotation.Table.<init>(java.lang.String)");
96 Table table = (Table) load("error4.yaml"); local
97 List<Row> rows = table.getRows();
110 Table table = (Table) load("error5.yaml"); local
111 List<Row> rows = table.getRows()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 72 DILineInfoTable Table;
75 return Table;
80 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry));
82 return Table;
  /external/tensorflow/tensorflow/core/util/
tensor_slice_reader_cache.h 68 typedef Status (*OpenFuncType)(const string&, TensorSliceReader::Table**);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileTable.py 2 # This file is used to create/update/query/erase a meta file table
22 from MetaDataTable import Table
27 class MetaFileTable(Table):
42 Table.__init__(self, Cursor, TableName, 0, Temporary)
46 ## Python class representation of table storing module data
65 # used as table end flag, in case the changes to database is not committed to db file
72 ## Insert a record into table Inf
90 return Table.Insert(
108 ## Query table
125 SqlCommand = "SELECT %s FROM %s WHERE %s" % (ValueString, self.Table, ConditionString)
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 72 DecoderTable Table;
98 // Emit the decoder state machine table.
99 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
268 // Emit table entries to decode instructions given a segment or segments of
314 // Lookup table for the operand decoding of instructions.
439 // Emits table entries to decode the singleton.
583 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
596 // Our NumToSkip entries are 16-bits. Make sure our table isn't too
598 assert(Delta < 65536U && "disassembler decoding table too large!");
599 Table[FixupIdx] = (uint8_t)Delta
    [all...]
  /frameworks/av/media/libmedia/
TypeConverter.cpp 25 const OutputDeviceConverter::Table OutputDeviceConverter::mTable[] = {
67 const InputDeviceConverter::Table InputDeviceConverter::mTable[] = {
107 const OutputFlagConverter::Table OutputFlagConverter::mTable[] = {
129 const InputFlagConverter::Table InputFlagConverter::mTable[] = {
144 const FormatConverter::Table FormatConverter::mTable[] = {
226 const OutputChannelConverter::Table OutputChannelConverter::mTable[] = {
262 const InputChannelConverter::Table InputChannelConverter::mTable[] = {
279 const ChannelIndexConverter::Table ChannelIndexConverter::mTable[] = {
293 const GainModeConverter::Table GainModeConverter::mTable[] = {
302 const StreamTypeConverter::Table StreamTypeConverter::mTable[] =
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileTable.py 2 # This file is used to create/update/query/erase a meta file table
22 from MetaDataTable import Table, TableFile
27 class MetaFileTable(Table):
48 #Table.__init__(self, Cursor, TableName, FileId, False)
49 Table.__init__(self, Cursor, TableName, FileId, Temporary)
55 Result = self.Cur.execute("select ID from %s where ID<0" % (self.Table)).fetchall()
70 ## Python class representation of table storing module data
89 # used as table end flag, in case the changes to database is not committed to db file
96 ## Insert a record into table Inf
114 return Table.Insert(
    [all...]
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 10 // This file provides a hash table data structure suitable for incremental and
14 // performance, and on reload the merged table will override those from other
35 /// A pointer to an on-disk representation of the hash table.
45 /// \brief A hash table stored on disk.
50 HashTable Table;
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
64 typedef llvm::PointerUnion<OnDiskTable*, MergedTable*> Table;
68 /// We manually store the opaque value of the Table because TinyPtrVector
71 /// it is the first table.
81 return Table::getFromOpaqueValue(P).template get<OnDiskTable *>()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
schema.py 1 from msilib import Table
3 _Validation = Table('_Validation')
4 _Validation.add_field(1,'Table',11552)
15 ActionText = Table('ActionText')
20 AdminExecuteSequence = Table('AdminExecuteSequence')
25 Condition = Table('Condition')
30 AdminUISequence = Table('AdminUISequence')
35 AdvtExecuteSequence = Table('AdvtExecuteSequence')
40 AdvtUISequence = Table('AdvtUISequence')
45 AppId = Table('AppId')
    [all...]
  /external/python/cpython2/Lib/msilib/
schema.py 1 from . import Table
3 _Validation = Table('_Validation')
4 _Validation.add_field(1,'Table',11552)
15 ActionText = Table('ActionText')
20 AdminExecuteSequence = Table('AdminExecuteSequence')
25 Condition = Table('Condition')
30 AdminUISequence = Table('AdminUISequence')
35 AdvtExecuteSequence = Table('AdvtExecuteSequence')
40 AdvtUISequence = Table('AdvtUISequence')
45 AppId = Table('AppId'
    [all...]
  /external/python/cpython2/Tools/msi/
schema.py 1 from msilib import Table
3 _Validation = Table('_Validation')
4 _Validation.add_field(1,'Table',11552)
15 ActionText = Table('ActionText')
20 AdminExecuteSequence = Table('AdminExecuteSequence')
25 Condition = Table('Condition')
30 AdminUISequence = Table('AdminUISequence')
35 AdvtExecuteSequence = Table('AdvtExecuteSequence')
40 AdvtUISequence = Table('AdvtUISequence')
45 AppId = Table('AppId'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltm.c 27 "string", "table", "function", udatatypename, "thread",
52 const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
64 Table *mt;
  /external/elfutils/tests/
run-readelf-str.sh 25 # DWARF4 GNU DebugFission No real table header.
33 Table at offset 0
64 Table at offset 0
112 # DWARF5 Real table header.
120 Table at offset 0
157 Table at offset 0
  /external/flatbuffers/rust/flatbuffers/src/
lib.rs 36 mod table;
46 pub use table::{Table, buffer_has_identifier, get_root, get_size_prefixed_root};
  /external/flatbuffers/tests/MyGame/Example/
Referrable.php 7 use \Google\FlatBuffers\Table;
11 class Referrable extends Table
92 * @return int table offset
TestSimpleTableWithEnum.php 7 use \Google\FlatBuffers\Table;
11 class TestSimpleTableWithEnum extends Table
92 * @return int table offset
  /external/flatbuffers/tests/MyGame/Example2/
Monster.php 7 use \Google\FlatBuffers\Table;
11 class Monster extends Table
72 * @return int table offset
  /external/flatbuffers/tests/MyGame/
InParentNamespace.php 7 use \Google\FlatBuffers\Table;
11 class InParentNamespace extends Table
72 * @return int table offset
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
TableInNestedNS.php 7 use \Google\FlatBuffers\Table;
11 class TableInNestedNS extends Table
77 * @return int table offset
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.php 7 use \Google\FlatBuffers\Table;
11 class SecondTableInA extends Table
75 * @return int table offset
TableInC.php 7 use \Google\FlatBuffers\Table;
11 class TableInC extends Table
93 * @return int table offset

Completed in 5318 milliseconds

1 2 3 4 5 67 8 91011>>