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

1 23 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
RowSortedTable.java 28 * Interface that extends {@code Table} and whose rows are sorted.
32 * {@link Map} specified by the {@link Table} interface.
39 public interface RowSortedTable<R, C, V> extends Table<R, C, V> {
44 * specified in the {@link Table} interface.
52 * specified in the {@link Table} interface.
ImmutableTable.java 31 * An immutable {@link Table} with reliable user-specified iteration order.
44 public abstract class ImmutableTable<R, C, V> implements Table<R, C, V> {
45 /** Returns an empty immutable table. */
51 /** Returns an immutable table containing a single cell. */
58 * Returns an immutable copy of the provided table.
60 * <p>The {@link Table#cellSet()} iteration order of the provided table
61 * determines the iteration ordering of all views in the returned table. Note
62 * that some views of the original table and the copied table may hav
    [all...]
ForwardingTable.java 27 * A table which forwards all its method calls to another table. Subclasses
38 implements Table<R, C, V> {
42 @Override protected abstract Table<R, C, V> delegate();
105 public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
106 delegate().putAll(table);
Tables.java 28 import com.google.common.collect.Table.Cell;
41 * Provides static methods that involve a {@code Table}.
123 * Creates a transposed view of a given table that flips its row and column
125 * generated table always returns the same value as calling {@code
126 * get(rowKey, columnKey)} on the original table. Updating the original table
127 * changes the contents of the transposed table and vice versa.
129 * <p>The returned table supports update operations as long as the input table
136 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table)
    [all...]
Table.java 31 * column key, with a single value. A table may be sparse, with only a small
41 * underlying table. Updating the table can change the contents of those
42 * collections, and updating the collections will change the table.
44 * <p>All methods that modify the table are optional, and the views returned by
45 * the table may or may not be modifiable. When modification isn't supported,
49 * @param <R> the type of the table row keys
50 * @param <C> the type of the table column keys
56 public interface Table<R, C, V> {
62 * Returns {@code true} if the table contains a mapping with the specifie
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 71 DecoderTable Table;
99 // Emit the decoder state machine table.
100 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
269 // Emit table entries to decode instructions given a segment or segments of
315 // Lookup table for the operand decoding of instructions.
449 // Emits table entries to decode the singleton.
609 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
622 // Our NumToSkip entries are 16-bits. Make sure our table isn't too
624 assert(Delta < 65536U && "disassembler decoding table too large!");
625 Table[FixupIdx] = (uint8_t)Delta
    [all...]
  /external/chromium_org/third_party/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/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 ASSERT.that(table.rowKeySet()).hasContentsInOrder("foo", "bar");
58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
59 ASSERT.that(table.row("foo").keySet()).hasContentsInOrder(2, 3);
ArrayTableTest.java 23 import com.google.common.collect.Table.Cell;
42 ArrayTable<String, Integer, Character> table = local
44 populate(table, data);
45 return table;
49 assertEquals(9, table.size());
63 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
64 assertTrue(table.contains("foo", 1));
65 assertTrue(table.contains("bar", 1));
66 assertTrue(table.contains("foo", 3));
67 assertTrue(table.contains("foo", 2))
283 ArrayTable<String, Integer, Character> table local
289 ArrayTable<String, Integer, Character> table local
301 ArrayTable<String, Integer, Character> table local
325 ArrayTable<String, Integer, Character> table local
353 ArrayTable<String, Integer, Character> table local
380 ArrayTable<String, Integer, Character> table local
394 ArrayTable<String, Integer, Character> table local
    [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/chromium_org/third_party/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/clang/lib/Basic/
Builtins.cpp 66 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
71 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
77 Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin);
93 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) {
94 Table.get(GetRecord(ID).Name).setBuiltinID(0);
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
78 // Populate the identifier table with info about keywords for the current
122 const LangOptions &LangOpts, IdentifierTable &Table) {
149 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
158 IdentifierTable &Table) {
159 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
167 IdentifierTable &Table) {
168 Table.get(Name).setObjCKeywordID(ObjCID);
171 /// AddKeywords - Add all keywords to the symbol table.
253 /// PrintStats - Print statistics about how well the identifier table is doin
    [all...]
  /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/chromium_org/third_party/sqlite/src/src/
sqliteInt.h 81 ** construct a histogram of the table content when running ANALYZE
520 ** Name of the master database table. The master database table
521 ** is a special table that holds the names and attributes of all
528 ** The root-page of the master database table.
533 ** The name of the schema table.
627 typedef struct Table Table;
692 Hash fkeyHash; /* All foreign keys by referenced table name */
693 Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT *
2301 char *table; \/* The table or view to which the trigger applies *\/ member in struct:Trigger
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
table_cache.h 14 #include "leveldb/table.h"
28 // non-NULL, also sets "*tableptr" to point to the Table object
29 // underlying the returned iterator, or NULL if no Table object underlies
36 Table** tableptr = NULL);
memtable.cc 53 explicit MemTableIterator(MemTable::Table* table) : iter_(table) { }
70 MemTable::Table::Iterator iter_;
110 Table::Iterator iter(&table_);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 30 /* 4x4 DeZigZag table */
49 * [in] nTable Table number (0 to 4) according to the five columns
50 * of Table 9-5 in the H.264 spec
202 int Table = ZerosLeft;
203 if (Table > 6)
205 Table = 7;
207 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
  /external/chromium_org/third_party/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/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...]
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 41 typedef HashTable<ResolveInfo, hash::StringHash<hash::ELF> > Table;
86 /// @return the StringRef points to the hash table
106 Table m_Table;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
verify_os2.cc 19 #include "sfntly/table/core/os2_table.h"
57 static bool VerifyOS_2(Table* table) {
58 OS2TablePtr os2 = down_cast<OS2Table*>(table);
119 bool VerifyOS_2(Table* original, Table* target) {

Completed in 345 milliseconds

1 23 4 5 6 7 8 91011>>