HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 351 - 375 of 1015) sorted by null

<<11121314151617181920>>

  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DeviceEvent.java 35 import android.inputmethodservice.cts.db.Table;
52 public static final Table<DeviceEvent> TABLE = new DeviceEventTable(EventTableConstants.NAME);
105 return TABLE.buildContentValues(event);
114 return TABLE.buildStream(cursor);
177 * Abstraction of device event table in database.
179 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 33 public class Table {
49 /** The underlying ByteBuffer to hold the data of the Table. */
55 * @return Returns the Table's ByteBuffer.
62 * @param vtable_offset An `int` offset to the vtable in the Table's ByteBuffer.
78 * @param offset An `int` index into the Table's ByteBuffer containing the relative offset.
97 * @param offset An `int` index into the Table's ByteBuffer.
134 * @param offset An `int` index into the Table's ByteBuffer.
146 * @param offset An `int` index into the Table's ByteBuffer.
176 * Initialize any Table-derived type to point to the union at the given `offset`.
178 * @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/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));
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseUefiDecompressLib/
BaseUefiDecompressLib.c 116 Creates Huffman Code mapping table according to code length array.
118 Creates Huffman Code mapping table for Extra Set, Char&Len Set
125 @param TableBits The width of the mapping table.
126 @param Table The table to be created.
129 @retval BAD_TABLE The table is corrupted.
138 OUT UINT16 *Table
157 // The maximum mapping table width supported by this internal
202 SetMem16 (Table + Index, (Index3 - Index) * sizeof (*Table), 0);
    [all...]
  /system/libvintf/
main.cpp 185 using Table = std::map<std::string, TableRow>;
187 // Insert each fqInstanceName foo@x.y::IFoo/instance to the table by inserting the key
189 void insert(const HalManifest* manifest, Table* table, const RowMutator& mutate) {
194 mutate(&(*table)[key]);
199 void insert(const CompatibilityMatrix* matrix, Table* table, const RowMutator& mutate) {
209 auto it = table->find(key);
210 if (it == table->end()) {
211 mutate(&(*table)[key])
225 Table table; local
261 auto table = generateHalSummary(vm.get(), fm.get(), vcm.get(), fcm.get()); local
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClass.c 312 @param SystemTable A pointer to the EFI System Table.
429 UNICODE_TO_CHAR *Table;
440 // Search UnicodeToPcAnsiOrAscii table for matching entry.
442 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
443 if (Graphic == Table->Unicode) {
445 *PcAnsi = Table->PcAnsi;
449 *Ascii = Table->Ascii;
457 // If value is not found in UnicodeToPcAnsiOrAscii table, then return FALSE.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
TerminalConOut.c 883 UNICODE_TO_CHAR *Table;
893 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
894 if (Graphic == Table->Unicode) {
896 *PcAnsi = Table->PcAnsi;
900 *Ascii = Table->Ascii;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleReader.java 74 /** [4] max. length of any table */
291 // Faster table item search at the cost of slower startup and some heap memory.
372 return type==UResourceBundle.TABLE || type==ICUResourceBundle.TABLE16 || type==ICUResourceBundle.TABLE32;
381 private static final Table EMPTY_TABLE = new Table();
748 Table getTable(int res) {
759 return (Table)value;
761 Table table; local
763 if(type == UResourceBundle.TABLE) {
875 Table table = reader.getTable(res); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 72 /** [4] max. length of any table */
289 // Faster table item search at the cost of slower startup and some heap memory.
370 return type==UResourceBundle.TABLE || type==ICUResourceBundle.TABLE16 || type==ICUResourceBundle.TABLE32;
379 private static final Table EMPTY_TABLE = new Table();
746 Table getTable(int res) {
757 return (Table)value;
759 Table table; local
761 if(type == UResourceBundle.TABLE) {
873 Table table = reader.getTable(res); local
    [all...]
  /system/chre/platform/shared/include/chre/platform/shared/
host_messages_generated.h 203 struct NanoappMessage FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
293 struct HubInfoRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
321 struct HubInfoResponse FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
514 struct NanoappListRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
542 struct NanoappListEntry FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
616 struct NanoappListResponse FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
690 struct LoadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
816 struct LoadNanoappResponse FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
880 struct UnloadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 18 // minSize is the minimum table size set by
19 // SetMaxDynamicTableSize after the previous Header Table Size
22 // maxSizeLimit is the maximum table size this encoder
26 // tableSizeUpdate indicates whether "Header Table Size
42 e.dynTab.table.init()
48 // This function may also produce bytes for "Header Table Size Update"
85 // The static header table is searched first. Only when there is no
86 // exact match for both name and value, the dynamic header table is
97 j, nameValueMatch := e.dynTab.table.search(f)
105 // SetMaxDynamicTableSize changes the dynamic header table size to v
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 18 // minSize is the minimum table size set by
19 // SetMaxDynamicTableSize after the previous Header Table Size
22 // maxSizeLimit is the maximum table size this encoder
26 // tableSizeUpdate indicates whether "Header Table Size
42 e.dynTab.table.init()
48 // This function may also produce bytes for "Header Table Size Update"
85 // The static header table is searched first. Only when there is no
86 // exact match for both name and value, the dynamic header table is
97 j, nameValueMatch := e.dynTab.table.search(f)
105 // SetMaxDynamicTableSize changes the dynamic header table size to v
    [all...]
  /system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
flatbuffers_types_generated.h 47 struct Ssid FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
91 struct PreferredNetwork FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
136 struct ScanResult FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
237 struct ScanResultMessage FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
292 struct ScanParams FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
384 struct ScanFilter FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
455 struct ScanConfig FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
502 struct ScanRecord FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
562 struct RpcLogRecord FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
606 struct ScanStats FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Hi1610AcpiTables/
D03Iort.asl 6 * Template for [IORT] ACPI Table (static data table)
9 [0004] Signature : "IORT" [IO Remapping Table]
10 [0004] Table Length : 000002e4
14 [0008] Oem Table ID : "HIP06 "
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsSerialStatusCode/
BsSerialStatusCode.c     [all...]

Completed in 2572 milliseconds

<<11121314151617181920>>