HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 51 - 75 of 823) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/flatbuffers/go/
struct.go 7 Table
lib.go 5 Table() Table
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
IHTMLReportContext.java 19 import org.jacoco.report.internal.html.table.Table;
41 * Returns a table for rendering coverage nodes.
43 * @return table for rendering
45 public Table getTable();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
PackageCompactConstructorTest.java 23 assertEquals(Table.class, check("Table"));
24 assertEquals(Table.class, check("org.yaml.snakeyaml.extensions.compactnotation.Table"));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiIbft.c 2 Implementation for iSCSI Boot Firmware Table publication.
21 Initialize the header of the iSCSI Boot Firmware Table.
23 @param[out] Header The header of the iSCSI Boot Firmware Table.
25 @param[in] OemTableId The OEM table ID for the iBFT.
46 Initialize the control section of the iSCSI Boot Firmware Table.
48 @param[in] Table The ACPI table.
54 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table,
61 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1);
108 Fill the Initiator section of the iSCSI Boot Firmware Table.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiIbft.c 2 Implementation for iSCSI Boot Firmware Table publication.
21 Initialize the header of the iSCSI Boot Firmware Table.
23 @param[out] Header The header of the iSCSI Boot Firmware Table.
25 @param[in] OemTableId The OEM table ID for the iBFT.
46 Initialize the control section of the iSCSI Boot Firmware Table.
48 @param[in] Table The ACPI table.
53 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table
59 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1);
120 Fill the Initiator section of the iSCSI Boot Firmware Table.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/AcpiPlatform/
AcpiPlatformHooksLib.h 44 Returns the ACPI table version that the platform wants.
58 Returns the OEMID, OEM Table ID, OEM Revision.
65 the particular data table. This field is particularly useful
67 functions. The OEM assigns each dissimilar table a new OEM Table ID.
80 Called for every ACPI table found in the BIOS flash.
81 Returns whether a table is active or not. Inactive tables
82 are not published in the ACPI table list. This hook can be
84 specific functionality (e.g. SPCR table) based on a setup
89 This hook can also be used to update the table data. The header
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /frameworks/base/core/tests/coretests/src/com/android/internal/app/procstats/
SparseMappingTableTest.java 51 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
57 table.writeToParcel(tableParcel);
66 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1);
79 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
81 key = table.getOrAddKey(ID1, 1)
120 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
172 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
198 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); local
    [all...]
  /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...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
boxdraw.c 127 UNICODE_TO_CHAR *Table;
138 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
139 if (Graphic == Table->Unicode) {
141 *PcAnsi = Table->PcAnsi;
144 *Ascii = Table->Ascii;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiTableProtocol.c 2 ACPI Table Protocol Implementation
25 This function adds an ACPI table to the table list. It will detect FACS and
26 allocate the correct type of memory and properly align the table.
29 @param Table Table to add.
30 @param Checksum Does the table require checksumming.
31 @param Version The version of the list to add the table to.
36 @return EFI_ABORTED The table is a duplicate of a table that is required
    [all...]
  /frameworks/native/cmds/lshal/
ListCommand.h 68 void forEachTable(const std::function<void(Table &)> &f);
69 void forEachTable(const std::function<void(const Table &)> &f) const;
73 Table mServicesTable{};
74 Table mPassthroughRefTable{};
75 Table mImplementationsTable{};
  /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 709 struct row *Table = NULL;
767 Table = calloc(N, sizeof(struct row));
768 if (Table == NULL) {
779 Table[N].X = (long)cur->nthreads;
780 Table[N]._x = Table[N].X - Xavg;
781 Table[N].LnX = log((double)cur->nthreads);
782 Table[N]._lnx = Table[N].LnX - LnXavg;
784 Table[N].Y[i] = cur->_data[i]
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /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 26 * Abstraction of SQLite database table.
28 public abstract class Table<E> {
33 protected Table(final String name, final Entity<E> entity) {
47 * Returns SQL statement to create this table, such that
48 * "CREATE TABLE IF NOT EXISTS table_name \
53 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/common/
fastexp.h 40 struct Table {
59 static const Table cache_;
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTableTest.java 26 private Table<String, Integer, Boolean> forward;
36 final Table<String, Integer, Boolean> table = local
37 createProxyInstance(Table.class);
39 @Override protected Table<String, Integer, Boolean> delegate() {
40 return table;
112 assertEquals("[putAll(Table)]", getCalls());
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
PageTestBase.java 28 import org.jacoco.report.internal.html.table.LabelColumn;
29 import org.jacoco.report.internal.html.table.Table;
49 final Table table = new Table(); local
50 table.add("Element", null, new LabelColumn(), true);
61 public Table getTable() {
62 return table;
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 33 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table;
34 typedef Table::iterator syminfo_iterator;
35 typedef Table::const_iterator const_syminfo_iterator;
87 /// @return the StringRef points to the hash table
123 Table m_Table;

Completed in 814 milliseconds

1 23 4 5 6 7 8 91011>>