/external/sfntly/cpp/src/sfntly/table/core/ |
font_header_table.h | 20 #include "sfntly/table/table.h" 21 #include "sfntly/table/table_based_table_builder.h" 42 class FontHeaderTable : public Table, public RefCounted<FontHeaderTable> {
|
horizontal_device_metrics_table.cc | 17 #include "sfntly/table/core/horizontal_device_metrics_table.h" 76 : Table(header, data), num_glyphs_(num_glyphs) { 96 FontDataTablePtr table = new HorizontalDeviceMetricsTable(header(), data, local 98 return table.Detach(); 109 HorizontalDeviceMetricsTable* table = local 111 if (table) { 112 table->num_glyphs_ = num_glyphs;
|
horizontal_metrics_table.cc | 17 #include "sfntly/table/core/horizontal_metrics_table.h" 88 : Table(header, data), 108 FontDataTablePtr table = local 110 return table.Detach(); 125 HorizontalMetricsTable* table = local 127 table->num_hmetrics_ = num_hmetrics; 133 HorizontalMetricsTable* table = local 135 table->num_glyphs_ = num_glyphs;
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
subsetter.cc | 30 // TODO(arthurhsu): IMPLEMENT: CMap table subsetter 86 Table* table = font_->GetTable(*tag); local 87 if (table) { 88 font_builder->NewTableBuilder(*tag, table->ReadFontData());
|
/hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/ |
OMXSceneModeTables.h | 44 const SceneModesEntry* Table;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/ |
LibraryProperties.java | 45 import org.eclipse.swt.widgets.Table; 60 private Table mTable; 83 * Internal struct to store library info in the table item. 141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE); 360 private void adjustColumnsWidth(final Table table, 363 // Add a listener to resize the column to the full width of the table 364 table.addControlListener(new ControlAdapter() { 367 Rectangle r = table.getClientArea();
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/ |
compressed-1a.d | 89 The Directory Table is empty. 91 The File Name Table \(offset 0x.*\):
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/ |
compressed-1a.d | 89 The Directory Table is empty. 91 The File Name Table \(offset 0x.*\):
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
micromips@loc-swap.d | 37 The Directory Table is empty\. 39 The File Name Table \(offset 0x.*\):
|
/art/runtime/ |
reference_table.cc | 114 os << name_ << " reference table dump:\n"; 118 void ReferenceTable::Dump(std::ostream& os, Table& entries) { 199 // Make a copy of the table and sort it, only adding non null and not cleared elements. 200 Table sorted_entries; 211 // Dump a summary of the whole table.
|
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 70 /// table. 303 IdentifierIndexTable &Table 305 IdentifierIndexTable::iterator Known = Table.find(Name); 306 if (Known == Table.end()) { 621 // Handle the identifier table 625 std::unique_ptr<InterestingIdentifierTable> Table( 630 for (InterestingIdentifierTable::data_iterator D = Table->data_begin(), 631 DEnd = Table->data_end(); 650 /// table. 734 // Populate the hash table [all...] |
/external/clang/test/SemaCXX/ |
cxx98-compat.cpp | 271 void *Table[] = {&&DirectJump, &&Later}; 272 goto *Table[n]; // expected-warning {{jump from this indirect goto statement to one of its possible targets is incompatible with C++98}}
|
/external/llvm/lib/MC/ |
SubtargetFeature.cpp | 83 /// getLongestEntryLength - Return the length of the longest entry in the table. 85 static size_t getLongestEntryLength(ArrayRef<SubtargetFeatureKV> Table) { 87 for (auto &I : Table) 100 // Print the CPU table. 106 // Print the Feature table. 169 // Find feature in table. 203 // Find feature in table. 243 "CPU table is not sorted"); 247 "CPU features table is not sorted");
|
/external/lzma/CS/7zip/Compress/LZ/ |
LzBinTree.cs | 141 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
276 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
CompactConstructorExampleTest.java | 154 Table table = (Table) yaml.load(doc); local 155 assertNotNull(table); 156 assertEquals("id12", table.getId()); 157 assertEquals("A table", table.getName()); 158 List<Row> rows = table.getRows();
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
TypeConverter.h | 114 struct Table { 119 static const Table mTable[];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
FlagXmlPropertyDialog.java | 38 import org.eclipse.swt.widgets.Table; 54 private Table mTable;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
SampleSelectionPage.java | 44 import org.eclipse.swt.widgets.Table; 54 private Table mTable;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CComboBox.java | 49 import org.eclipse.swt.widgets.Table; 55 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 175 Table table = m_table.getTable(); 176 int index = table.getSelectionIndex() - 1; 177 table.setSelection(index < 0 ? table.getItemCount() - 1 : index); 187 Table table = m_table.getTable(); 188 int index = table.getSelectionIndex() + 1 [all...] |
CCombo3.java | 14 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 28 import org.eclipse.swt.widgets.Table; 45 private final Table m_table; 82 // create table for items 84 m_table = new Table(m_popup, SWT.FULL_SELECTION); 354 // set popup bounds calculated as computeTrim basing on combo width and table height paying attention on remaining display space
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsps2.c | 108 /Table [ p p p [<...>]] 464 // Outputs a table of words. It does use 16 bits 467 void Emit1Gamma(cmsIOHANDLER* m, cmsToneCurve* Table) 472 if (Table == NULL) return; // Error 474 if (Table ->nEntries <= 0) return; // Empty table 477 if (cmsIsToneCurveLinear(Table)) return; 480 gamma = cmsEstimateGamma(Table, 0.001); 498 for (i=0; i < Table->nEntries; i++) { 499 _cmsIOPrintf(m, "%d ", Table->Table16[i]) [all...] |
/external/llvm/include/llvm/MC/ |
MCContext.h | 129 /// We now emit a line table for each compile unit. To reduce the prologue 130 /// size of each line table, the files and directories used by each compile 295 /// getSymbols - Get a reference for the symbol table for clients that 297 /// still want any modifications to the table itself to use the MCContext 443 for (const auto &Table : MCDwarfLineTablesCUMap) 444 if (!Table.second.getMCDwarfFiles().empty() || Table.second.getLabel()) 458 /// in the line number table with this information and the address of the
|
/frameworks/base/core/java/com/android/internal/app/procstats/ |
SparseMappingTable.java | 37 * set of Table objects that each contain a small array mapping the byte IDs to a position 68 * A table of data as stored in a SparseMappingTable. 70 public static class Table { 76 public Table(SparseMappingTable parent) { 82 * Pulls the data from 'copyFrom' and stores it in our own longs table. 84 * @param copyFrom The Table to copy from 87 public void copyFrom(Table copyFrom, int valueCount) { 108 * table. 141 // the table value itself, which will be used for lookup 148 // Store the key in the sparse lookup table for this Table object [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
FrameSummaryViewPage.java | 50 import org.eclipse.swt.widgets.Table; 160 final Table table = new Table(c, SWT.BORDER | SWT.FULL_SELECTION); local 161 GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(table); 163 table.setLinesVisible(true); 164 table.setHeaderVisible(true); 166 mStatsTableViewer = new TableViewer(table); 170 // when a column is selected, sort the table based on that column 179 table.setSortColumn(tc) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/ |
StaticPortConfigDialog.java | 35 import org.eclipse.swt.widgets.Table; 69 private Table mPortTable; 146 mPortTable = new Table(main, SWT.SINGLE | SWT.FULL_SELECTION); 270 // create a new item for the table 301 // get the table item by index 352 // we're going to loop on the keys and fill the table.
|