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

1 2 34 5 6 7 8 91011>>

  /external/perfetto/src/trace_processor/
args_table.h 56 Table::ColumnType GetType() const override {
59 return Table::ColumnType::kLong;
61 return Table::ColumnType::kDouble;
63 return Table::ColumnType::kString;
sql_stats_table.h 23 #include "src/trace_processor/table.h"
31 // A virtual table that allows to introspect performances of the SQL engine
33 class SqlStatsTable : public Table {
44 class Cursor : public Table::Cursor {
49 // Implementation of Table::Cursor.
72 // Table implementation.
73 base::Optional<Table::Schema> Init(int, const char* const*) override;
74 std::unique_ptr<Table::Cursor> CreateCursor() override;
storage_table.h 23 #include "src/trace_processor/table.h"
28 // Base class for all table implementations which are backed by some data
30 class StorageTable : public Table {
35 class Cursor final : public Table::Cursor {
37 Cursor(StorageTable* table);
39 // Implementation of Table::Cursor.
54 // Table implementation.
55 base::Optional<Table::Schema> Init(int, const char* const*) override final;
56 std::unique_ptr<Table::Cursor> CreateCursor() override;
window_operator_table.h 23 #include "src/trace_processor/table.h"
30 class WindowOperatorTable : public Table {
41 class Cursor : public Table::Cursor {
45 // Implementation of Table::Cursor.
52 // Defines the data to be generated by the table.
56 // Only returns the first span of the table. Useful for UPDATE operations.
77 // Table implementation.
78 base::Optional<Table::Schema> Init(int, const char* const*) override;
79 std::unique_ptr<Table::Cursor> CreateCursor() override;
thread_table.cc 36 Table::Register<ThreadTable>(db, storage, "thread");
39 base::Optional<Table::Schema> ThreadTable::Init(int, const char* const*) {
42 Table::Column(Column::kUtid, "utid", ColumnType::kInt),
43 Table::Column(Column::kUpid, "upid", ColumnType::kInt),
44 Table::Column(Column::kName, "name", ColumnType::kString),
45 Table::Column(Column::kTid, "tid", ColumnType::kInt),
46 Table::Column(Column::kStartTs, "start_ts", ColumnType::kLong),
51 std::unique_ptr<Table::Cursor> ThreadTable::CreateCursor() {
52 return std::unique_ptr<Table::Cursor>(new Cursor(this));
69 ThreadTable::Cursor::Cursor(ThreadTable* table)
    [all...]
process_table.cc 36 Table::Register<ProcessTable>(db, storage, "process");
39 base::Optional<Table::Schema> ProcessTable::Init(int, const char* const*) {
42 Table::Column(Column::kUpid, "upid", ColumnType::kInt),
43 Table::Column(Column::kName, "name", ColumnType::kString),
44 Table::Column(Column::kPid, "pid", ColumnType::kUint),
45 Table::Column(Column::kStartTs, "start_ts", ColumnType::kLong),
50 std::unique_ptr<Table::Cursor> ProcessTable::CreateCursor() {
51 return std::unique_ptr<Table::Cursor>(new Cursor(this));
67 ProcessTable::Cursor::Cursor(ProcessTable* table)
68 : Table::Cursor(table), storage_(table->storage_) {
    [all...]
table.h 35 // Abstract base class representing a SQLite virtual table. Implements the
38 class Table : public sqlite3_vtab {
41 std::function<std::unique_ptr<Table>(sqlite3*, const TraceStorage*)>;
43 // Allowed types for columns in a table.
53 // Describes a column of this table.
74 virtual ~Table();
80 Cursor(Table* table);
83 // Methods to be implemented by derived table classes.
88 // Called to forward the cursor to the next row in the table
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DIATable.h 27 CComPtr<IDiaTable> Table;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DIATable.cpp 18 : Table(DiaTable) {}
22 return (S_OK == Table->get_Count(&Count)) ? Count : 0;
27 if (S_OK != Table->get_name(&Name16))
40 if (S_OK != Table->get_name(&Name16))
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Database.py 25 from Table.TableDataModel import TableDataModel
26 from Table.TableFile import TableFile
27 from Table.TableInf import TableInf
28 from Table.TableDec import TableDec
29 from Table.TableDsc import TableDsc
35 # insert all records of table DataModel
62 # 3. Initialize table DataModel
83 # Initialize table DataModel
88 ## Query a table
90 # @param Table: The instance of the table to be queried
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiTableProtocol.c 2 ACPI Table Protocol Implementation
32 This function adds an ACPI table to the table list. It will detect FACS and
33 allocate the correct type of memory and properly align the table.
36 @param Table Table to add.
37 @param Checksum Does the table require checksumming.
38 @param Version The version of the list to add the table to.
43 @return EFI_ABORTED The table is a duplicate of a table that is required
    [all...]
  /external/v8/src/ic/
stub-cache.h 45 // Clear the lookup table (@ mark compact collection).
48 enum Table { kPrimary, kSecondary };
50 SCTableReference key_reference(StubCache::Table table) {
52 reinterpret_cast<Address>(&first_entry(table)->key));
55 SCTableReference map_reference(StubCache::Table table) {
57 reinterpret_cast<Address>(&first_entry(table)->map));
60 SCTableReference value_reference(StubCache::Table table) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaDataTable.py 2 # This file is used to create/update/query/erase table for files
29 # This class defined a common table
34 # @param TableName: Name of the table
36 class Table(object):
44 self.Table = Name
50 return self.Table
52 ## Create table
54 # Create a table
61 SqlCommand = """create temp table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
AcpiSupportAcpiSupportProtocol.c 26 This function adds an ACPI table to the table list. It will detect FACS and
27 allocate the correct type of memory and properly align the table.
30 @param Table Table to add.
31 @param Checksum Does the table require checksumming.
32 @param Version The version of the list to add the table to.
37 @return EFI_ABORTED The table is a duplicate of a table that is required
43 IN VOID *Table,
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
s-c.c 702 struct row *Table = NULL;
760 Table = calloc(N, sizeof(struct row));
761 if (Table == NULL) {
772 Table[N].X = (long)cur->nthreads;
773 Table[N]._x = Table[N].X - Xavg;
774 Table[N].LnX = log((double)cur->nthreads);
775 Table[N]._lnx = Table[N].LnX - LnXavg;
777 Table[N].Y[i] = cur->_data[i]
    [all...]
  /external/flatbuffers/rust/flatbuffers/src/
table.rs 22 pub struct Table<'a> {
27 impl<'a> Table<'a> {
30 Table { buf: buf, loc: loc }
50 impl<'a> Follow<'a> for Table<'a> {
51 type Inner = Table<'a>;
54 Table { buf: buf, loc: loc }
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TableCollectionTest.java 21 import com.google.common.collect.Table.Cell;
37 * Collection tests for {@link Table} implementations.
70 Table<String, Integer, Character> table, String[] elements) {
72 table.put(row, 1, 'a');
73 table.put(row, 2, 'b');
78 Table<Integer, String, Character> table, String[] elements) {
80 table.put(1, column, 'a');
81 table.put(2, column, 'b')
107 Table<String, Integer, Character> table = createTable(); local
164 Table<Character, String, Integer> table = makeTable(); local
217 Table<Character, String, Integer> table = HashBasedTable.create(); local
222 Table<Character, String, Integer> table = HashBasedTable.create(); local
237 Table<Character, String, Integer> table = HashBasedTable.create(); local
242 Table<Character, String, Integer> table = HashBasedTable.create(); local
257 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
262 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
285 Table<String, Character, Integer> table = makeTable(); local
331 Table<String, Character, Integer> table = HashBasedTable.create(); local
336 Table<String, Character, Integer> table = HashBasedTable.create(); local
351 Table<String, Character, Integer> table = HashBasedTable.create(); local
356 Table<String, Character, Integer> table = HashBasedTable.create(); local
371 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
376 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
449 Table<String, Integer, Character> table = makeTable(); local
491 TreeBasedTable<String, Integer, Character> table = local
499 TreeBasedTable<String, Integer, Character> table = makeTable(); local
519 TreeBasedTable<String, Integer, Character> table = local
527 TreeBasedTable<String, Integer, Character> table = makeTable(); local
547 TreeBasedTable<String, Integer, Character> table = local
556 TreeBasedTable<String, Integer, Character> table = makeTable(); local
590 Table<String, Integer, String> table = HashBasedTable.create(); local
610 Table<String, Integer, Character> table = HashBasedTable.create(); local
630 RowSortedTable<String, Integer, Character> table = TreeBasedTable.create(); local
649 Table<Integer, String, Character> table = makeTable(); local
693 Table<Integer, String, String> table = HashBasedTable.create(); local
713 Table<Integer, String, Character> table = HashBasedTable.create(); local
733 RowSortedTable<Integer, String, Character> table = TreeBasedTable.create(); local
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Table.java 27 * Abstraction of SQLite database table.
28 * @param <E> type of table entities.
30 public abstract class Table<E> {
35 protected Table(String name, Entity<E> entity) {
41 * @return name of this table.
64 * Returns SQL statement to create this table, such that
65 * "CREATE TABLE IF NOT EXISTS table_name \
70 return "CREATE TABLE IF NOT EXISTS " + mName + " " + mEntity.createEntitySql();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/AcpiSupport/
AcpiSupport.h 81 // Retrieve a copy of an ACPI table and the handle of the table.
88 OUT VOID **Table,
94 // Add, update, or remove a table.
100 IN VOID *Table OPTIONAL,
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
AcpiSupport.h 6 - Update the table links.
47 Returns a requested ACPI table.
50 @param Index The zero-based index of the table to retrieve.
51 @param Table The pointer for returning the table buffer.
52 @param Version Updated with the ACPI versions to which this table belongs.
53 @param Handle The pointer for identifying the table.
56 @retval EFI_NOT_FOUND The requested index is too large and a table was not found.
64 OUT VOID **Table,
73 @param Table The pointer to the new table to add or update.
    [all...]
  /external/libtextclassifier/lang_id/common/math/
fastexp.h 41 struct Table {
60 static const Table cache_;
  /external/libtextclassifier/utils/math/
fastexp.h 39 struct Table {
58 static const Table cache_;
  /external/mesa3d/src/hgl/
GLDispatcher.h 36 struct _glapi_table* Table();
64 BGLDispatcher::Table()
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
PDBStringTableBuilder.h 1 //===- PDBStringTableBuilder.h - PDB String Table Builder -------*- C++ -*-===//
37 PDBStringTableBuilder *Table;
39 explicit StringTableHashTraits(PDBStringTableBuilder &Table);
47 // If string S does not exist in the string table, insert it.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/Utils/
AMDKernelCodeTUtils.cpp 29 static StringRef const Table[] = {
35 return makeArrayRef(Table);
39 static StringRef const Table[] = {
45 return makeArrayRef(Table);
91 static const PrintFx Table[] = {
96 return makeArrayRef(Table);
161 static const ParseFx Table[] = {
166 return makeArrayRef(Table);

Completed in 1940 milliseconds

1 2 34 5 6 7 8 91011>>