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

1 2 3 4 5 6 7 891011>>

  /external/flatbuffers/tests/MyGame/Example/
Test.php 7 use \Google\FlatBuffers\Table;
Test.py 12 self._tab = flatbuffers.table.Table(buf, pos)
TestSimpleTableWithEnum.py 19 self._tab = flatbuffers.table.Table(buf, pos)
Stat.php 7 use \Google\FlatBuffers\Table;
11 class Stat extends Table
129 * @return int table offset
  /external/flatbuffers/tests/MyGame/Example2/
Monster.java 11 public final class Monster extends Table {
  /external/flatbuffers/tests/MyGame/
InParentNamespace.java 11 public final class InParentNamespace extends Table {
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.php 7 use \Google\FlatBuffers\Table;
StructInNestedNS.py 12 self._tab = flatbuffers.table.Table(buf, pos)
TableInNestedNS.py 19 self._tab = flatbuffers.table.Table(buf, pos)
  /external/llvm/include/llvm/DebugInfo/CodeView/
ListRecordBuilder.h 41 TypeIndex writeListRecord(TypeTableBuilder &Table);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
SubtargetFeature.h 100 const SubtargetInfoKV *Table, size_t TableSize);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ArrayTableTest.java 24 import com.google.common.collect.Table.Cell;
43 ArrayTable<String, Integer, Character> table = local
45 populate(table, data);
46 return table;
50 assertEquals(9, table.size());
64 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
65 assertTrue(table.contains("foo", 1));
66 assertTrue(table.contains("bar", 1));
67 assertTrue(table.contains("foo", 3));
68 assertTrue(table.contains("foo", 2))
280 ArrayTable<String, Integer, Character> table local
286 ArrayTable<String, Integer, Character> table local
298 ArrayTable<String, Integer, Character> table local
322 ArrayTable<String, Integer, Character> table local
350 ArrayTable<String, Integer, Character> table local
377 ArrayTable<String, Integer, Character> table local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 25 import com.google.common.collect.Table.Cell;
45 ArrayTable<String, Integer, Character> table = local
47 populate(table, data);
48 return table;
52 assertEquals(9, table.size());
66 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
67 assertTrue(table.contains("foo", 1));
68 assertTrue(table.contains("bar", 1));
69 assertTrue(table.contains("foo", 3));
70 assertTrue(table.contains("foo", 2))
287 ArrayTable<String, Integer, Character> table local
293 ArrayTable<String, Integer, Character> table local
305 ArrayTable<String, Integer, Character> table local
329 ArrayTable<String, Integer, Character> table local
357 ArrayTable<String, Integer, Character> table local
384 ArrayTable<String, Integer, Character> table local
399 ArrayTable<String, Integer, Character> table local
    [all...]
BenchmarkHelpers.java 258 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
259 Table<R, C, V> contents) {
265 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
266 Table<R, C, V> contents) {
267 Table<R, C, V> table = TreeBasedTable.create(); local
268 table.putAll(contents);
269 return table;
274 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
275 Table<R, C, V> contents)
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsintrp.c 106 const void *Table,
126 p ->Table = Table;
154 cmsInterpParams* _cmsComputeInterpParams(cmsContext ContextID, int nSamples, int InputChan, int OutputChan, const void* Table, cmsUInt32Number dwFlags)
164 return _cmsComputeInterpParamsEx(ContextID, Samples, InputChan, OutputChan, Table, dwFlags);
193 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p ->Table;
230 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
266 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p16 -> Table;
297 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
337 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Database.java 49 for (Table table : getTables()) {
50 db.execSQL(table.createTableSql());
66 protected abstract List<Table> getTables();
72 * @param table the table name to compile the query against.
78 * the given table.
88 public Cursor query(String table, String[] projection, String selection, String[] selectionArgs,
91 .query(table, projection, selection, selectionArgs, null /* groupBy */,
98 * @param table the table to insert the row into
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/
AcpiS3ContextSave.c 80 This function scan ACPI table in RSDT.
83 @param Signature ACPI table signature
85 @return ACPI table
97 EFI_ACPI_DESCRIPTION_HEADER *Table;
107 Table = (EFI_ACPI_DESCRIPTION_HEADER *)((UINTN)(*EntryPtr));
108 if (Table->Signature == Signature) {
109 return Table;
118 This function scan ACPI table in XSDT.
121 @param Signature ACPI table signature
123 @return ACPI table
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.h 93 // Each Ip service instance has an assemble table to reassemble
95 // as hash table.
160 number of input data blocks when building a fragment table.
176 Initialize an already allocated assemble table. This is generally
177 the assemble table embedded in the IP6 service instance.
179 @param[in, out] Table The assemble table to initialize.
184 IN OUT IP6_ASSEMBLE_TABLE *Table
188 Clean up the assemble table: remove all the fragments
191 @param[in, out] Table The assemble table to clean up.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/AcpiPlatform/
AcpiPlatformHooks.h 72 UINT16 Size; // Hardcode to 16bit width because the table we use is fixed size
128 IN OUT EFI_ACPI_DESCRIPTION_HEADER *Table
133 IN OUT EFI_ACPI_DESCRIPTION_HEADER *Table
  /external/elfutils/tests/
run-readelf-addr.sh 23 # DWARF4 GNU DebugFission No real table header.
27 Table at offset 0 for CU [ b]:
55 Table at offset 98 for CU [ 3f]:
83 # DWARF5 Real table header.
87 Table at offset 0 for CU [ 14]:
115 Table at offset a0 for CU [ 49]:
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.php 7 use \Google\FlatBuffers\Table;
11 class TableInFirstNS extends Table
113 * @return int table offset
  /external/guava/guava/src/com/google/common/collect/
Table.java 30 * column key, with a single value. A table may be sparse, with only a small
40 * underlying table. Updating the table can change the contents of those
41 * collections, and updating the collections will change the table.
43 * <p>All methods that modify the table are optional, and the views returned by
44 * the table may or may not be modifiable. When modification isn't supported,
48 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table">
49 * {@code Table}</a>.
52 * @param <R> the type of the table row keys
53 * @param <C> the type of the table column key
    [all...]
  /external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.h 21 #include "sfntly/table/table.h"
22 #include "sfntly/table/core/font_header_table.h"
26 // A Loca table - 'loca'.
27 class LocaTable : public Table, public RefCounted<LocaTable> {
31 explicit LocaIterator(LocaTable* table);
41 class Builder : public Table::Builder, public RefCounted<Builder> {
51 // Get the format version that will be used when the loca table is
53 // @return the loca table format version
57 // Gets the List of locas for loca table builder. These may be manipulate
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/
BdsPlatform.c 57 EFI_PHYSICAL_ADDRESS *Table;
65 // Iteratively add ACPI Table, SMBIOS Table, MPS Table to EFI System Table
70 Table = GET_GUID_HOB_DATA (GuidHob.Guid);
71 if (Table != NULL) {
73 // Check if Mps Table/Smbios Table/Acpi Table exists in E/F seg,
    [all...]
  /external/clang/lib/Serialization/
ASTReaderInternals.h 114 MultiOnDiskHashTable<ASTDeclContextNameLookupTrait> Table;
119 DeclContextLookupTable() : Table() {}
121 : Table(std::move(O.Table)) {}
123 Table = std::move(O.Table);
128 /// \brief Base class for the trait describing the on-disk hash table for the
132 /// functionality for accessing the on-disk hash table of identifiers
190 /// \brief The on-disk hash table used to contain information about
237 /// \brief The on-disk hash table used for the global method pool
    [all...]

Completed in 2847 milliseconds

1 2 3 4 5 6 7 891011>>