Searched defs:Table (Results 26 - 50 of 128) sorted by relevance

123456

/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...]
/external/guava/guava-tests/test/com/google/common/collect/
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...]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DTable.java29 public class Table { class
38 public Table() { method in class:Table
39 this.columns = new ArrayList<Table.Column>();
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTUtils.cpp25 static StringRef const Table[] = { local
31 return makeArrayRef(Table);
75 static const PrintFx Table[] = { local
80 return makeArrayRef(Table);
147 static const ParseFx Table[] = { local
152 return makeArrayRef(Table);
/external/skia/src/core/
H A DSkGammas.h28 struct Table { struct in struct:SkGammas
44 Table fTable;
/external/skqp/src/core/
H A DSkGammas.h28 struct Table { struct in struct:SkGammas
44 Table fTable;
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVInstruction.cpp139 static SPIRVWord Table[] = local
201 Allow(std::begin(Table), std::end(Table));
/external/tensorflow/tensorflow/core/common_runtime/
H A Dgraph_runner.cc92 typedef std::unordered_map<string, Tensor> Table; typedef in class:tensorflow::__anon26176::SimpleRendezvous
95 Table table_ GUARDED_BY(mu_);
/external/tensorflow/tensorflow/core/lib/io/
H A Dtable.cc29 struct Table::Rep {
41 Status Table::Open(const Options& options, RandomAccessFile* file, uint64 size,
42 Table** table) {
71 Rep* rep = new Table::Rep;
78 *table = new Table(rep);
86 Table::~Table() { delete rep_; }
94 Iterator* Table::BlockReader(void* arg, const StringPiece& index_value) {
95 Table* table = reinterpret_cast<Table*>(ar
[all...]
/external/tensorflow/tensorflow/core/util/
H A Dtensor_slice_reader.h57 class Table { class in class:tensorflow::checkpoint::TensorSliceReader
59 virtual ~Table();
62 typedef std::function<Status(const string&, Table**)> OpenTableFunction;
134 mutable std::vector<std::unique_ptr<Table>> sss_;
142 TensorSliceReader::Table** table);
H A Dtensor_slice_reader.cc38 TensorSliceReader::Table::~Table() {}
41 class TensorSliceReaderTable : public TensorSliceReader::Table {
44 explicit TensorSliceReaderTable(RandomAccessFile* f, table::Table* t)
66 table::Table* table_;
71 TensorSliceReader::Table** result) {
81 table::Table* table;
82 s = table::Table::Open(options, f.get(), file_size, &table);
150 Table* table;
/external/clang/lib/Serialization/
H A DASTReaderInternals.h114 MultiOnDiskHashTable<ASTDeclContextNameLookupTrait> Table; member in struct:clang::serialization::reader::DeclContextLookupTable
119 DeclContextLookupTable() : Table() {}
121 : Table(std::move(O.Table)) {}
123 Table = std::move(O.Table);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp165 typedef AnalyzerOptions::ConfigTable Table; typedef in class:__anon1972::ConfigDumper
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;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUResource.java293 public interface Table { interface in class:UResource
364 public abstract Table getTable();
462 * Reuse for output values from Array and Table getters.
464 * Then reuse for output values from Array and Table getters.
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUResource.java291 public interface Table { interface in class:UResource
362 public abstract Table getTable();
460 * Reuse for output values from Array and Table getters.
462 * Then reuse for output values from Array and Table getters.
/external/llvm/lib/Fuzzer/
H A DFuzzerUtil.cpp255 static const char Table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" local
262 Res += Table[(x >> 18) & 63];
263 Res += Table[(x >> 12) & 63];
264 Res += Table[(x >> 6) & 63];
265 Res += Table[x & 63];
269 Res += Table[(x >> 18) & 63];
270 Res += Table[(x >> 12) & 63];
274 Res += Table[(x >> 18) & 63];
275 Res += Table[(x >> 12) & 63];
276 Res += Table[(
[all...]
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp86 static size_t getLongestEntryLength(ArrayRef<SubtargetFeatureKV> Table) { argument
88 for (auto &I : Table)
/external/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp94 DecodeStatus AMDGPUDisassembler::tryDecodeInst(const uint8_t* Table, argument
102 if (decodeInstruction(Table, TmpInst, Inst, Address, this, STI)) {
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
H A Ds-c1.c437 struct row *Table = NULL; local
500 Table = calloc(N, sizeof(struct row));
502 if (Table == NULL) {
514 Table[N].X = (long)cur->nprocess;
515 Table[N].LnX = log((double)cur->nprocess);
518 Table[N]._x = Table[N].X - Xavg;
519 Table[N]._lnx = Table[N].LnX - LnXavg;
520 Table[
[all...]
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
H A Ds-c1.c485 struct row *Table = NULL; local
550 Table = calloc(N, sizeof(struct row));
551 if (Table == NULL) {
562 Table[N].X = (long)cur->nthreads;
563 Table[N].LnX = log((double)cur->nthreads);
566 Table[N]._x[i] = Table[N].X - Xavg[i];
567 Table[N]._lnx[i] = Table[N].LnX - LnXavg[i];
568 Table[
[all...]
/external/python/cpython2/Lib/msilib/
H A D__init__.py32 class Table: class in inherits:
/external/python/cpython3/Lib/msilib/
H A D__init__.py31 class Table: class in inherits:
/external/swiftshader/third_party/LLVM/lib/MC/
H A DSubtargetFeature.cpp138 static size_t getLongestEntryLength(const SubtargetFeatureKV *Table, argument
142 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
343 const SubtargetInfoKV *Table,
345 assert(Table && "missing table");
348 assert(strcmp(Table[i - 1].Key, Table[i].Key) < 0 && "Table is not sorted");
353 const SubtargetInfoKV *Entry = Find(CPU, Table, TableSize);
342 getItinerary(const StringRef CPU, const SubtargetInfoKV *Table, size_t TableSize) argument
/external/tensorflow/tensorflow/core/framework/
H A Drendezvous.cc240 Table table;
291 typedef gtl::FlatMap<uint64, ItemQueue> Table; typedef in class:tensorflow::LocalRendezvousImpl
295 Table table_ GUARDED_BY(mu_);
/external/tpm2/generator/
H A Dtpm_table.py41 class Table(object): class in inherits:object
53 The table title must start with 'Table ### xxx', where ### is monotonously
75 _alg_id_table: actual table of various TPM2 algorithms, a copy of Table 9
126 # letters, and should match the third column of Table 9 either inclusively
132 """Create a Table class instance."""
148 'Table 10 - Definition of (UINT16) {ECC} TPM_ECC_CURVE Constants'
208 In yet some other cases, say in Table 126 where the type field does not
339 # 'Table 10 - Definition of TPM_ECC_CURVE Constants'
416 A table of alg_type (Table 9 of part 2) entries matching the passed in

Completed in 650 milliseconds

123456