Searched defs:Table (Results 1 - 25 of 61) sorted by relevance

123

/external/sfntly/cpp/src/sfntly/table/
H A Dtable.cc44 * Table class
46 Table::~Table() {}
48 int64_t Table::CalculatedChecksum() {
52 void Table::SetFont(Font* font) {
56 Table::Table(Header* header, ReadableFontData* data) function in class:sfntly::Table
62 * Table::Builder class
64 Table::Builder::~Builder() {
68 void Table
[all...]
H A Dtable.h35 class Table : public FontDataTable { class in namespace:sfntly
37 // Note: original version is Builder<T extends Table>
67 virtual ~Table();
92 Table(Header* header, ReadableFontData* data);
100 class GenericTable : public Table, public RefCounted<GenericTable> {
102 GenericTable(Header* header, ReadableFontData* data) : Table(header, data) {}
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
/external/lzma/CS/7zip/Common/
H A DCRC.cs7 public static readonly uint[] Table; field in class:SevenZip.CRC
11 Table = new uint[256];
21 Table[i] = r;
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
/external/lzma/Java/SevenZip/
H A DCRC.java7 static public int[] Table = new int[256]; field in class:CRC
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableTest.java26 * Test cases for a {@link Table} implementation supporting reads and writes.
35 Table<String, Integer, Character> table, Object... data) {
118 Table<String, Integer, Character> other = HashBasedTable.create();
34 populate( Table<String, Integer, Character> table, Object... data) argument
H A DImmutableTableTest.java31 @Override protected Table<String, Integer, Character> create(Object... data) {
48 Table<Character, Integer, String> expectedTable = HashBasedTable.create();
52 Table<Character, Integer, String> otherTable = HashBasedTable.create();
101 Table.Cell<Character, Integer, String> mutableCell =
160 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) {
161 Table<R, C, V> copy = ImmutableTable.copyOf(original);
165 Table<R, C, V> built
172 Table<R, C, V> original, Table<R, C, V> copy) {
179 Table<Characte
171 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
H A DTableCollectionTest.java25 import com.google.common.collect.Table.Cell;
53 * Collection tests for {@link Table} implementations.
118 // Not testing rowKeySet() or columnKeySet() of Table.transformValues()
123 Table<String, Integer, Character> table
139 Table<String, Integer, Character> table = HashBasedTable.create();
168 Table<String, Integer, Character> table = HashBasedTable.create();
195 Table<Integer, String, Character> table
211 Table<Integer, String, Character> table = HashBasedTable.create();
222 Table<Integer, String, Character> table = TreeBasedTable.create();
238 Table<Intege
581 populateForRowKeySet( Table<String, Integer, Character> table, String[] elements) argument
589 populateForColumnKeySet( Table<Integer, String, Character> table, String[] elements) argument
597 populateForValues( Table<Integer, Character, String> table, String[] elements) argument
[all...]
/external/clang/lib/Basic/
H A DBuiltins.cpp69 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table, argument
74 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
80 Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin);
96 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) { argument
97 Table.get(GetRecord(ID).Name).setBuiltinID(0);
H A DIdentifierTable.cpp155 const LangOptions &LangOpts, IdentifierTable &Table) {
171 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
180 IdentifierTable &Table) {
181 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
189 IdentifierTable &Table) {
190 Table.get(Name).setObjCKeywordID(ObjCID);
318 fprintf(stderr, "\n*** Identifier Table Stats:\n");
562 llvm::FoldingSet<MultiKeywordSelector> Table; member in struct:clang::MultiKeywordSelector::__anon917::SelectorTableImpl
605 SelTabImpl.Table.FindNodeOrInsertPos(ID, InsertPos))
615 SelTabImpl.Table
153 AddKeyword(StringRef Keyword, tok::TokenKind TokenCode, unsigned Flags, const LangOptions &LangOpts, IdentifierTable &Table) argument
178 AddCXXOperatorKeyword(StringRef Keyword, tok::TokenKind TokenCode, IdentifierTable &Table) argument
187 AddObjCKeyword(StringRef Name, tok::ObjCKeywordKind ObjCID, IdentifierTable &Table) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp162 typedef AnalyzerOptions::ConfigTable Table; typedef in class:__anon1324::ConfigDumper
164 static int compareEntry(const Table::MapEntryTy *const *LHS,
165 const Table::MapEntryTy *const *RHS) {
173 const Table &Config = mgr.options.Config;
175 SmallVector<const Table::MapEntryTy *, 32> Keys;
176 for (Table::const_iterator I = Config.begin(), E = Config.end(); I != E;
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotConverters.py41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
217 class Table(Struct): class in inherits:Struct
260 class LTable(Table):
268 class SubTable(Table):
278 Table.write(self, writer, font, tableDict, value, repeatIndex)
280 class FeatureParams(Table):
380 "Offset": Table,
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotConverters.py41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
217 class Table(Struct): class in inherits:Struct
260 class LTable(Table):
268 class SubTable(Table):
278 Table.write(self, writer, font, tableDict, value, repeatIndex)
280 class FeatureParams(Table):
380 "Offset": Table,
/external/guava/guava/src/com/google/common/collect/
H A DTable.java48 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table">
49 * {@code Table}</a>.
58 public interface Table<R, C, V> { interface
152 void putAll(Table<? extends R, ? extends C, ? extends V> table);
H A DTables.java27 import com.google.common.collect.Table.Cell;
41 * Provides static methods that involve a {@code Table}.
139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) {
146 final Table<R, C, V> original;
148 TransposeTable(Table<R, C, V> original) {
204 public void putAll(Table<? extends C, ? extends R, ? extends V> table) {
266 * <p>The views returned by the {@code Table} methods {@link Table#column},
267 * {@link Table#columnKeySe
332 transformValues( Table<R, C, V1> fromTable, Function<? super V1, V2> function) argument
342 TransformedTable( Table<R, C, V1> fromTable, Function<? super V1, V2> function) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableTableTest.java30 @Override protected Table<String, Integer, Character> create(Object... data) {
47 Table<Character, Integer, String> expectedTable = HashBasedTable.create();
51 Table<Character, Integer, String> otherTable = HashBasedTable.create();
100 Table.Cell<Character, Integer, String> mutableCell =
159 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) {
160 Table<R, C, V> copy = ImmutableTable.copyOf(original);
164 Table<R, C, V> built
171 Table<R, C, V> original, Table<R, C, V> copy) {
178 Table<Characte
170 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
H A DTableCollectionTest.java21 import com.google.common.collect.Table.Cell;
37 * Collection tests for {@link Table} implementations.
70 Table<String, Integer, Character> table, String[] elements) {
78 Table<Integer, String, Character> table, String[] elements) {
86 Table<Integer, Character, String> table, String[] elements) {
107 Table<String, Integer, Character> table = createTable();
117 abstract Table<String, Integer, Character> createTable();
157 abstract Table<Character, String, Integer> makeTable();
164 Table<Character, String, Integer> table = makeTable();
178 @Override Table<Characte
69 populateForRowKeySet( Table<String, Integer, Character> table, String[] elements) argument
77 populateForColumnKeySet( Table<Integer, String, Character> table, String[] elements) argument
85 populateForValues( Table<Integer, Character, String> table, String[] elements) argument
[all...]
/external/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp70 const uint16_t Table[], size_t Size) {
72 Inst.addOperand(MCOperand::CreateReg(Table[RegNo]));
69 DecodeRegisterClass(MCInst &Inst, unsigned RegNo, const uint16_t Table[], size_t Size) argument
/external/mesa3d/src/mesa/main/
H A Dhash.c63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */ member in struct:_mesa_HashTable
104 struct HashEntry *entry = table->Table[pos];
136 entry = table->Table[pos];
193 for (entry = table->Table[pos]; entry; entry = entry->Next) {
212 entry->Next = table->Table[pos];
213 table->Table[pos] = entry;
250 entry = table->Table[pos];
258 table->Table[pos] = entry->Next;
294 for (entry = table->Table[pos]; entry; entry = next) {
299 table->Table[po
[all...]
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp105 static size_t getLongestEntryLength(ArrayRef<SubtargetFeatureKV> Table) { argument
107 for (auto &I : Table)
H A DMCContext.cpp417 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; local
418 return Table.getFile(Directory, FileName, FileNumber);
/external/v8/src/ic/
H A Dstub-cache.h60 enum Table { kPrimary, kSecondary }; enum in class:v8::internal::StubCache
62 SCTableReference key_reference(StubCache::Table table) {
67 SCTableReference map_reference(StubCache::Table table) {
72 SCTableReference value_reference(StubCache::Table table) {
77 StubCache::Entry* first_entry(StubCache::Table table) {
/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp268 void *Table[] = {&&DirectJump, &&Later}; local
269 goto *Table[n]; // expected-warning {{jump from this indirect goto statement to one of its possible targets is incompatible with C++98}}
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp302 IdentifierIndexTable &Table local
304 IdentifierIndexTable::iterator Known = Table.find(Name);
305 if (Known == Table.end()) {
622 std::unique_ptr<InterestingIdentifierTable> Table(
627 for (InterestingIdentifierTable::data_iterator D = Table->data_begin(),
628 DEnd = Table->data_end();
883 IdentifierIndexTable &Table = local
885 return new GlobalIndexIdentifierIterator(Table);
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh695 static inline uint32_t CalcTableChecksum (const ULONG *Table, uint32_t Length) argument
698 const ULONG *EndPtr = Table+((Length+3) & ~3) / ULONG::static_size;
700 while (Table < EndPtr)
701 Sum += *Table++;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundleReader.java54 * Table key strings must be compared in ASCII order, even if they are not
125 * Table items contain key-value pairs where the keys are offsets to char * key strings.
132 * Table key string offsets: -------
140 * - In a Table or Table16, the 16-bit key string offset is local if it is
181 * 2 Table: uint16_t count, uint16_t keyStringOffsets[count], (uint16_t padding), Resource[count]
516 private static final Table EMPTY_TABLE = new Table();
786 Table getTable(int res) {
797 return (Table)value;
799 Table tabl
866 static class Table extends Container { class in class:ICUResourceBundleReader
908 Table() { method in class:ICUResourceBundleReader.Table
[all...]

Completed in 723 milliseconds

123