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

<<11121314151617181920>>

  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.py 19 self._tab = flatbuffers.table.Table(buf, pos)
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
EmptyImmutableTableTest.java 40 Table<Character, Integer, String> nonEmptyTable = HashBasedTable.create();
  /external/guava/guava-tests/test/com/google/common/collect/
EmptyImmutableTableTest.java 41 Table<Character, Integer, String> nonEmptyTable = HashBasedTable.create();
TablesTest.java 21 import com.google.common.collect.Table.Cell;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarUtil.java 86 UResource.Table calendarPreferenceData = value.getTable();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarUtil.java 84 UResource.Table calendarPreferenceData = value.getTable();
  /external/llvm/lib/Target/AMDGPU/Disassembler/
AMDGPUDisassembler.h 52 DecodeStatus tryDecodeInst(const uint8_t* Table,
  /external/lua/src/
ltm.h 60 LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
  /external/perfetto/src/trace_processor/
slice_table.cc 28 Table::Register<SliceTable>(db, storage, "internal_slice");
sched_slice_table.cc 26 Table::Register<SchedSliceTable>(db, storage, "sched");
82 // nested subqueries on the thread table is faster but with some queries,
83 // it's actually better to do subqueries on this table. Estimate the cost
205 Table::ColumnType SchedSliceTable::EndStateColumn::GetType() const {
206 return Table::ColumnType::kString;
storage_table.cc 25 base::Optional<Table::Schema> StorageTable::Init(int, const char* const*) {
30 std::unique_ptr<Table::Cursor> StorageTable::CreateCursor() {
168 StorageTable::Cursor::Cursor(StorageTable* table)
169 : Table::Cursor(table), table_(table) {}
  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_header_table.h 20 #include "sfntly/table/table.h"
21 #include "sfntly/table/table_based_table_builder.h"
25 // A Horizontal Header table - 'hhea'.
26 class HorizontalHeaderTable : public Table,
29 // Builder for a Horizontal Header table - 'hhea'.
maximum_profile_table.h 21 #include "sfntly/table/table.h"
22 #include "sfntly/table/table_based_table_builder.h"
26 // A Maximum Profile table - 'maxp'.
27 class MaximumProfileTable : public Table,
30 // Builder for a Maximum Profile table - 'maxp'.
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DumpOutputStyle.h 94 Error dumpSymbolsFromGSI(const GSIHashTable &Table, bool HashExtras);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp 140 const coff_resource_dir_table &Table,
144 const coff_resource_dir_table &Table,
150 /// Given a .debug$S section, find the string table and file checksum table.
167 getResourceDirectoryTableEntry(const coff_resource_dir_table &Table,
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DeviceEvent.java 35 import android.inputmethodservice.cts.db.Table;
53 public static final Table<DeviceEvent> TABLE = new DeviceEventTable(EventTableConstants.NAME);
106 return TABLE.buildContentValues(event);
115 return TABLE.buildStream(cursor);
178 * Abstraction of device event table in database.
180 private static final class DeviceEventTable extends Table<DeviceEvent> {
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellCommandLib.h 77 @param[in] SystemTable The pointer to the system table.
482 Function to initialize the table for creating consistent map names.
484 @param[out] Table The pointer to pointer to pointer to DevicePathProtocol object.
486 @retval EFI_SUCCESS The table was created successfully.
491 EFI_DEVICE_PATH_PROTOCOL ***Table
495 Function to uninitialize the table for creating consistent map names.
499 @param[out] Table The pointer to pointer to DevicePathProtocol object.
501 @retval EFI_SUCCESS The table was deleted successfully.
506 EFI_DEVICE_PATH_PROTOCOL **Table
511 based on the Table.
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
ConsistMapping.c     [all...]
  /external/flatbuffers/java/com/google/flatbuffers/
Table.java 29 public class Table {
38 /** The underlying ByteBuffer to hold the data of the Table. */
49 * @return Returns the Table's ByteBuffer.
56 * @param vtable_offset An `int` offset to the vtable in the Table's ByteBuffer.
71 * @param offset An `int` index into the Table's ByteBuffer containing the relative offset.
90 * @param offset An `int` index into the Table's ByteBuffer.
102 * @param offset An `int` index into the Table's ByteBuffer.
114 * @param offset An `int` index into the Table's ByteBuffer.
165 * Initialize any Table-derived type to point to the union at the given `offset`.
167 * @param t A `Table`-derived type that should point to the union at `offset`
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 12 package org.jacoco.report.internal.html.table;
27 * Renderer for a table of {@link ITableItem}s.
29 public class Table {
36 * Create a new table without any columns yet.
38 public Table() {
39 this.columns = new ArrayList<Table.Column>();
43 * Adds a new column with the given properties to the table.
71 * Renders a table for the given icon
74 * parent element in which the table is created
76 * items that will make the table row
92 final HTMLElement table = parent.table(Styles.COVERAGETABLE); local
    [all...]
  /external/libtextclassifier/utils/
lua-utils.h 204 // Setup a named table that callsback whenever a member is accessed.
226 const flatbuffers::Table *table);
247 const flatbuffers::Table *table, lua_State *state);
251 const flatbuffers::Table *table, lua_State *state);
  /external/python/cpython2/Lib/ctypes/test/
test_pointers.py 80 # The int pointer points to a table containing the numbers 1..10
117 class Table(Structure):
122 pt = pointer(Table(1, 2, 3))
131 del _pointer_type_cache[Table]
  /external/python/cpython3/Lib/ctypes/test/
test_pointers.py 83 # The int pointer points to a table containing the numbers 1..10
120 class Table(Structure):
125 pt = pointer(Table(1, 2, 3))
134 del _pointer_type_cache[Table]
  /external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.cc 17 #include "sfntly/table/truetype/loca_table.h"
67 : Table(header, data),
75 LocaTable::LocaIterator::LocaIterator(LocaTable* table)
76 : PODIterator<int32_t, LocaTable>(table), index_(-1) {
91 : Table::Builder(header, data),
97 : Table::Builder(header, data),
161 FontDataTablePtr table = local
163 return table.Detach();
207 LocaTablePtr table = local
210 new LocaTable::LocaIterator(table);
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.cpp 139 static SPIRVWord Table[] =
201 Allow(std::begin(Table), std::end(Table));

Completed in 620 milliseconds

<<11121314151617181920>>