/external/guava/guava-tests/test/com/google/common/collect/ |
NewCustomTableTest.java | 35 @Override protected Table<String, Integer, Character> create( 46 Table<String, Integer, Character> table local 48 populate(table, data); 49 return table; 53 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); 54 assertThat(table.rowKeySet()).has().exactly("foo", "bar").inOrder(); 58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); 59 assertThat(table.row("foo").keySet()).has().exactly(2, 3).inOrder();
|
ArrayTableTest.java | 25 import com.google.common.collect.Table.Cell; 45 ArrayTable<String, Integer, Character> table = local 47 populate(table, data); 48 return table; 52 assertEquals(9, table.size()); 66 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 67 assertTrue(table.contains("foo", 1)); 68 assertTrue(table.contains("bar", 1)); 69 assertTrue(table.contains("foo", 3)); 70 assertTrue(table.contains("foo", 2)) 287 ArrayTable<String, Integer, Character> table local 293 ArrayTable<String, Integer, Character> table local 305 ArrayTable<String, Integer, Character> table local 329 ArrayTable<String, Integer, Character> table local 357 ArrayTable<String, Integer, Character> table local 384 ArrayTable<String, Integer, Character> table local 399 ArrayTable<String, Integer, Character> table local [all...] |
BenchmarkHelpers.java | 258 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create( 259 Table<R, C, V> contents) { 265 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create( 266 Table<R, C, V> contents) { 267 Table<R, C, V> table = TreeBasedTable.create(); local 268 table.putAll(contents); 269 return table; 274 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create( 275 Table<R, C, V> contents) [all...] |
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
ebsc_table.h | 20 #include "sfntly/table/bitmap/eblc_table.h" 24 class EbscTable : public Table, 66 class Builder : public Table::Builder,
|
/external/sfntly/cpp/src/sfntly/ |
font.h | 28 #include "sfntly/table/table.h" 154 // Clear all table builders. 157 // Does this font builder have the specified table builder. 160 // Get the table builder for the given tag. If there is no builder for that 162 Table::Builder* GetTableBuilder(int32_t tag); 164 // Creates a new table builder for the table type given by the table id tag. 165 // This new table has been added to the font and will replace any existin [all...] |
font.cc | 33 #include "sfntly/table/core/font_header_table.h" 34 #include "sfntly/table/core/horizontal_device_metrics_table.h" 35 #include "sfntly/table/core/horizontal_header_table.h" 36 #include "sfntly/table/core/horizontal_metrics_table.h" 37 #include "sfntly/table/core/maximum_profile_table.h" 38 #include "sfntly/table/truetype/loca_table.h" 57 Table* Font::GetTable(int32_t tag) { 102 TablePtr table = tables_[*tag]; local 103 if (table != NULL) { 105 new Header(*tag, table->CalculatedChecksum(), table_offset 376 TablePtr table; local 496 HeaderPtr table = new Header(tag, checksum, offset, length); local 519 HeaderPtr table = new Header(tag, checksum, offset, length); local [all...] |
/external/v8/src/ic/ |
stub-cache.h | 45 // Clear the lookup table (@ mark compact collection). 51 // Generate code for probing the stub cache table. 60 enum Table { kPrimary, kSecondary }; 62 SCTableReference key_reference(StubCache::Table table) { 64 reinterpret_cast<Address>(&first_entry(table)->key)); 67 SCTableReference map_reference(StubCache::Table table) { 69 reinterpret_cast<Address>(&first_entry(table)->map)); 72 SCTableReference value_reference(StubCache::Table table) [all...] |
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
TypeConverter.cpp | 24 const DeviceConverter::Table DeviceConverter::mTable[] = { 87 const OutputFlagConverter::Table OutputFlagConverter::mTable[] = { 105 const InputFlagConverter::Table InputFlagConverter::mTable[] = { 117 const FormatConverter::Table FormatConverter::mTable[] = { 152 const OutputChannelConverter::Table OutputChannelConverter::mTable[] = { 165 const InputChannelConverter::Table InputChannelConverter::mTable[] = { 175 const ChannelIndexConverter::Table ChannelIndexConverter::mTable[] = { 191 const GainModeConverter::Table GainModeConverter::mTable[] = { 202 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[] = { 214 const StreamTypeConverter::Table StreamTypeConverter::mTable[] = [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/html/ |
HTMLFormatter.java | 40 import org.jacoco.report.internal.html.table.BarColumn; 41 import org.jacoco.report.internal.html.table.CounterColumn; 42 import org.jacoco.report.internal.html.table.LabelColumn; 43 import org.jacoco.report.internal.html.table.PercentageColumn; 44 import org.jacoco.report.internal.html.table.Table; 65 private Table table; field in class:HTMLFormatter 125 public Table getTable() { 126 if (table == null) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingTable.java | 26 * A table which forwards all its method calls to another table. Subclasses 36 implements Table<R, C, V> { 40 @Override protected abstract Table<R, C, V> delegate(); 103 public void putAll(Table<? extends R, ? extends C, ? extends V> table) { 104 delegate().putAll(table);
|
Table.java | 30 * column key, with a single value. A table may be sparse, with only a small 40 * underlying table. Updating the table can change the contents of those 41 * collections, and updating the collections will change the table. 43 * <p>All methods that modify the table are optional, and the views returned by 44 * the table may or may not be modifiable. When modification isn't supported, 48 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table"> 49 * {@code Table}</a>. 52 * @param <R> the type of the table row keys 53 * @param <C> the type of the table column key [all...] |
AbstractTable.java | 29 * Skeletal, implementation-agnostic implementation of the {@link Table} interface. 34 abstract class AbstractTable<R, C, V> implements Table<R, C, V> { 100 public void putAll(Table<? extends R, ? extends C, ? extends V> table) { 101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { 118 abstract Iterator<Table.Cell<R, C, V>> cellIterator(); 149 public Iterator<Table.Cell<R, C, V>> iterator() {
|
/external/dng_sdk/source/ |
dng_1d_table.h | 15 * Definition of a lookup table based 1D floating-point to floating-point function abstraction using linear interpolation. 32 /// \brief A 1D floating-point lookup table using linear interpolation. 39 /// Constants denoting size of table. 43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize). 44 kTableSize = (1 << kTableBits) //< Number of entries in table. 59 /// Set up table, initialize entries using functiion. 61 /// \param allocator Memory allocator from which table memory is allocated. 62 /// \param function Table is initialized with values of finction.Evalluate(0.0) to function.Evaluate(1.0). 99 /// Direct access function for table data. 101 const real32 * Table () cons [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_DecodeCoeffsToPair.c | 45 /* 4x4 DeZigZag table */ 64 * [in] nTable Table number (0 to 4) according to the five columns 65 * of Table 9-5 in the H.264 spec 217 int Table = ZerosLeft; 218 if (Table > 6) 220 Table = 7; 222 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
debug1.d | 31 The Directory Table \(offset 0x.*\): 34 The File Name Table \(offset 0x.*\):
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
pr13167.d | 29 The Directory Table is empty\. 31 The File Name Table \(offset 0x.*\):
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ArrayTableTest.java | 24 import com.google.common.collect.Table.Cell; 43 ArrayTable<String, Integer, Character> table = local 45 populate(table, data); 46 return table; 50 assertEquals(9, table.size()); 64 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 65 assertTrue(table.contains("foo", 1)); 66 assertTrue(table.contains("bar", 1)); 67 assertTrue(table.contains("foo", 3)); 68 assertTrue(table.contains("foo", 2)) 280 ArrayTable<String, Integer, Character> table local 286 ArrayTable<String, Integer, Character> table local 298 ArrayTable<String, Integer, Character> table local 322 ArrayTable<String, Integer, Character> table local 350 ArrayTable<String, Integer, Character> table local 377 ArrayTable<String, Integer, Character> table local [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsintrp.c | 106 const void *Table, 126 p ->Table = Table; 154 cmsInterpParams* _cmsComputeInterpParams(cmsContext ContextID, int nSamples, int InputChan, int OutputChan, const void* Table, cmsUInt32Number dwFlags) 164 return _cmsComputeInterpParamsEx(ContextID, Samples, InputChan, OutputChan, Table, dwFlags); 193 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p ->Table; 230 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; 266 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p16 -> Table; 297 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; 337 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUResourceBundleImpl.java | 45 case TABLE: 212 return TABLE; 215 return ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index); 220 ICUResourceBundleReader.Table table = (ICUResourceBundleReader.Table)value; local 221 for (int i = 0; i < table.getSize(); ++i) { 222 keySet.add(table.getKey(reader, i)); 229 int i = ((ICUResourceBundleReader.Table)value).findTableItem(wholeBundle.reader, resKey); 238 String itemKey = ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUResourceBundleImpl.java | 44 case TABLE: 211 return TABLE; 214 return ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index); 219 ICUResourceBundleReader.Table table = (ICUResourceBundleReader.Table)value; local 220 for (int i = 0; i < table.getSize(); ++i) { 221 keySet.add(table.getKey(reader, i)); 228 int i = ((ICUResourceBundleReader.Table)value).findTableItem(wholeBundle.reader, resKey); 237 String itemKey = ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index) [all...] |
/external/sfntly/cpp/src/sfntly/table/truetype/ |
loca_table.h | 21 #include "sfntly/table/table.h" 22 #include "sfntly/table/core/font_header_table.h" 26 // A Loca table - 'loca'. 27 class LocaTable : public Table, public RefCounted<LocaTable> { 31 explicit LocaIterator(LocaTable* table); 41 class Builder : public Table::Builder, public RefCounted<Builder> { 51 // Get the format version that will be used when the loca table is 53 // @return the loca table format version 57 // Gets the List of locas for loca table builder. These may be manipulate [all...] |
/external/clang/lib/Serialization/ |
ASTReaderInternals.h | 114 MultiOnDiskHashTable<ASTDeclContextNameLookupTrait> Table; 119 DeclContextLookupTable() : Table() {} 121 : Table(std::move(O.Table)) {} 123 Table = std::move(O.Table); 128 /// \brief Base class for the trait describing the on-disk hash table for the 132 /// functionality for accessing the on-disk hash table of identifiers 190 /// \brief The on-disk hash table used to contain information about 237 /// \brief The on-disk hash table used for the global method pool [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
DebugCheckers.cpp | 165 typedef AnalyzerOptions::ConfigTable Table; 167 static int compareEntry(const Table::MapEntryTy *const *LHS, 168 const Table::MapEntryTy *const *RHS) { 176 const Table &Config = mgr.options.Config; 178 SmallVector<const Table::MapEntryTy *, 32> Keys; 179 for (Table::const_iterator I = Config.begin(), E = Config.end(); I != E;
|
/art/runtime/ |
intern_table.cc | 58 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n"; 87 // Note: we deliberately don't visit the weak_interns_ table and the immutable image roots. 274 // Check the strong table for a match. 296 // There is no match in the strong table, check the weak table. 300 // A match was found in the weak table. Promote to the strong table. 313 // No match in the strong table or the weak table. Insert into the strong / weak table [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/ |
test_highlevel.py | 35 from boto.dynamodb2.table import Table 48 # Test creating a full table with all options specified. 49 users = Table.create('users', schema=[ 69 # Make sure things line up if we're introspecting the table. 70 users_hit_api = Table('users') 326 admins = Table.create('admins', schema=[ 335 # A single query term should fail on a table with *ONLY* a HashKey. 373 # Create a very limited table w/ low throughput. 374 users = Table.create('slow_users', schema= [all...] |