/external/sfntly/cpp/src/test/ |
otf_basic_editing_test.cc | 20 #include "sfntly/table/core/font_header_table.h" 64 // ensure every table had a builder 68 TablePtr table = (*i).second; local 69 HeaderPtr header = table->header();
|
/external/syslinux/gpxe/src/include/gpxe/efi/ |
efi.h | 63 /** EFI protocol table */ 82 /** An EFI configuration table used by gPXE */ 86 /** EFI configuration table GUID */ 91 /** Variable containing pointer to configuration table */ 92 void **table; member in struct:efi_config_table 93 /** Table is required for operation */ 97 /** EFI configuration table table */ 101 /** Declare an EFI configuration table used by gPXE */ 104 /** Declare an EFI configuration table to be used by gPX [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
lookup_table_init_op.cc | 39 // Kernel to initialize a look table given a key and value tensors. 40 // After this operation, the table becomes read-only. 48 lookup::InitializableLookupTable* table; variable 50 GetInitializableLookupTable("table_handle", ctx, &table)); 51 core::ScopedUnref unref_me(table); 55 DataTypeVector expected_inputs = {expected_input_0, table->key_dtype(), 56 table->value_dtype()}; 81 memory_used_before = table->MemoryUsed(); 83 OP_REQUIRES_OK(ctx, table->Initialize(iter)); 85 ctx->record_persistent_memory_allocation(table->MemoryUsed() 118 lookup::InitializableLookupTable* table; variable [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
AddColumnTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.AddColumn; 30 * {@link android.widget.layout.table.AddColumn} is 31 * setup to exercise the case of adding row programmatically in a table. 47 mTable = (TableLayout) activity.findViewById(R.id.table);
|
CellSpanTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.CellSpan; 27 * {@link android.widget.layout.table.CellSpan} is
|
FixedWidthTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.FixedWidth; 27 * {@link android.widget.layout.table.FixedWidth} is
|
WeightTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.Weight; 27 * {@link android.widget.layout.table.Weight} is
|
/frameworks/base/libs/androidfw/tests/ |
Idmap_test.cpp | 113 ResTable table; local 114 ASSERT_EQ(NO_ERROR, table.add(overlay_data_.data(), overlay_data_.size(), 0, true)); 117 ssize_t block = table.getResource(kNonOverlaidResourceId, &val, false /*mayBeBag*/);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_among.h | 11 * Write-once-read-many hash table, used for checking if a given 24 * hash table, which are stored also in form of pairs of integers 40 int table[257]; member in struct:ebt_mac_wormhash
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Table_Suite.py | 1 """Suite Table Suite: Classes for manipulating tables 52 table = tables variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Table_Suite.py | 1 """Suite Table Suite: Classes for manipulating tables 52 table = tables variable
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/ |
LinearPartition.java | 58 int[][] table = buildPartitionTable(seq, k); local 64 for (int i = table[n - 1][k] + 1; i < n + 1; i++) { 69 n = table[n - 1][k]; 85 * Internal helper to build the partition table of the linear distribution used for splitting. 89 float[][] table = new float[n][k]; local 93 table[i][0] = seq.get(i).getRuntimeHint() + ((i > 0) ? (table[i - 1][0]) : 0); 97 table[0][j] = seq.get(0).getRuntimeHint(); 102 table[i][j] = Integer.MAX_VALUE; 104 float cost = Math.max(table[x][j - 1], table[i][0] - table[x][0]) [all...] |
/tools/tradefederation/core/src/com/android/tradefed/testtype/metricregression/ |
DetectRegression.java | 173 TableBuilder table = new TableBuilder(TABLE_HEADER.length); local 174 table.addTitle(TITLE).addLine(TABLE_HEADER).addDoubleLineSeparator(); 183 table.addLine(runResult).addSingleLineSeparator(); 184 runMetricsResult.stream().map(TableRow::toStringArray).forEach(table::addLine); 186 table.addSingleLineSeparator(); 202 table.addLine(testResult).addSingleLineSeparator(); 204 table.addLine("> " + test); 209 .forEach(table::addLine); 210 table.addBlankLineSeparator(); 212 table.addDoubleLineSeparator() [all...] |
/external/autotest/frontend/client/src/autotest/afe/ |
HostListView.java | 5 import autotest.common.table.DynamicTable.DynamicTableListener; 6 import autotest.common.table.SelectionManager; 38 protected HostTable table; field in class:HostListView 46 table = new HostTable(new HostDataSource(), true); 47 hostTableDecorator = new HostTableDecorator(table, HOSTS_PER_PAGE); 50 table.setWidgetFactory(selectionManager); 53 table.setClickable(true); 54 table.addListener(new DynamicTableListener() { 69 table.refresh();
|
/art/tools/ahat/src/main/com/android/ahat/ |
ObjectHandler.java | 97 SizeTable.table(doc, new Column(""), inst != base && !base.isPlaceHolder()); 127 doc.table( 171 doc.table( 229 doc.table(new Column("Object")); 241 doc.table(new Column("Object")); 276 HeapTable.TableConfig<PathElement> table = new HeapTable.TableConfig<PathElement>() { local 311 HeapTable.render(doc, query, DOMINATOR_PATH_ID, table, mSnapshot, path);
|
HtmlDoc.java | 81 public void table(Column... columns) { method in class:HtmlDoc 87 ps.println("<table>"); 102 public void table(DocString description, List<Column> subcols, List<Column> cols) { method in class:HtmlDoc 118 ps.println("<table>"); 147 throw new IllegalStateException("table method must be called before row"); 171 ps.println("<table>"); 181 ps.println("</table>");
|
ObjectsHandler.java | 50 SizeTable.table(doc, mSnapshot.isDiffed(),
|
OverviewHandler.java | 59 SizeTable.table(doc, new Column("Heap"), mSnapshot.isDiffed());
|
SizeTable.java | 25 * Class for rendering a table that includes all categories of Size. 26 * Two table formats are supported, one where a custom left column can be 35 * Start a size table with a custom left column. 39 * This should be followed by calls to the 'row' method to fill in the table 40 * contents and the 'end' method to end the table. 44 static void table(Doc doc, Column left, boolean showDiff, Column... columns) { method in class:SizeTable 54 doc.table(cols.toArray(new Column[cols.size()])); 58 * Add a row to the currently active size table with custom left column. 60 * currently active table. 77 * Start a size table without a custom left column 85 static void table(Doc doc, boolean showDiff, Column... columns) { method in class:SizeTable 88 table(doc, new Column("", Column.Align.LEFT, false), showDiff, columns); method [all...] |
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
RubyMap.java | 106 this.table = new HashMap<IRubyObject, IRubyObject>(); 133 // Table value type is always UINT64: this ensures enough space to store the 159 this.table.put(key, value); 172 if (table.containsKey(key)) 173 return this.table.get(key); 196 if (!typeCompatible(other) || this.table.size() != other.table.size()) 198 for (IRubyObject key : table.keySet()) { 199 if (! other.table.containsKey(key)) 201 if (! other.table.get(key).equals(table.get(key)) 433 private Map<IRubyObject, IRubyObject> table; field in class:RubyMap [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ConfirmationPage.java | 40 import org.eclipse.swt.widgets.Table; 105 Table table = new Table(group2, SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL); local 106 mTableViewer = new TableViewer(table); 107 table.setLayout(new TableLayout()); 108 table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
|
/art/runtime/ |
debug_print.cc | 80 ClassTable* table = Runtime::Current()->GetClassLinker()->ClassTableForClassLoader(loader); local 82 << "/" << static_cast<const void*>(table); 87 (table != nullptr) ? table->Lookup(class_descriptor, hash) : nullptr; 161 LOG(ERROR) << " in interface table for " << source_descriptor
|
mapping_table.h | 25 // A utility for processing the raw uleb128 encoded mapping table created by the quick compiler. 32 const uint8_t* table = encoded_table_; variable 33 if (table == nullptr) { 36 return DecodeUnsignedLeb128(&table); 41 const uint8_t* table = encoded_table_; variable 42 if (table == nullptr) { 45 uint32_t total_size = DecodeUnsignedLeb128(&table); 46 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table); 52 const uint8_t* table = encoded_table_; local 53 if (table != nullptr) 124 const uint8_t* table = encoded_table_; variable 128 DecodeUnsignedLeb128(&table); \/\/ Total_size, unused. variable 135 const uint8_t* table = encoded_table_; local [all...] |
/bionic/libc/kernel/uapi/linux/ |
map_to_7segment.h | 31 unsigned char table[128]; member in struct:seg7_conversion_map 33 #define SEG7_CONVERSION_MAP(_name,_map) struct seg7_conversion_map _name = {.table = { _map } }
|
/device/google/cuttlefish_common/common/vsoc/lib/ |
region_view.cpp | 96 const vsoc_signal_table_layout& table = incoming_signal_table(); local 97 const size_t num_offsets = (1 << table.num_nodes_lg2); 100 table.futex_uaddr_table_offset); 133 const vsoc_signal_table_layout& table = outgoing_signal_table(); local 136 table.futex_uaddr_table_offset); 138 const size_t max_index = (1 << table.num_nodes_lg2) - 1; 143 // Guess at where this offset should go in the table. 156 // We didn't store, but the value was already in the table with our flag.
|