Searched refs:tables_ (Results 1 – 9 of 9) sorted by relevance
/external/webrtc/webrtc/system_wrappers/source/ |
D | data_log.cc | 322 tables_(), in DataLogImpl() 332 for (TableMap::iterator it = tables_.begin(); it != tables_.end();) { in ~DataLogImpl() 335 tables_.erase(it++); in ~DataLogImpl() 374 if (tables_.count(table_name) > 0) in AddTable() 376 tables_[table_name] = new LogTable(); in AddTable() 377 if (tables_[table_name]->CreateLogFile(table_name + ".txt") == -1) in AddTable() 386 if (tables_.count(table_name) == 0) in AddColumn() 388 return tables_[table_name]->AddColumn(column_name, multi_value_length); in AddColumn() 395 assert(tables_.count(table_name) > 0); in InsertCell() 396 if (tables_.count(table_name) == 0) in InsertCell() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 712 pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name); in FindByNameHelper() 903 tables_(new Tables), in DescriptorPool() 914 tables_(new Tables), in DescriptorPool() 925 tables_(new Tables), in DescriptorPool() 951 return tables_->FindFile(filename) != NULL; in InternalIsFileLoaded() 1030 tables_->known_bad_symbols_.clear(); in FindFileByName() 1031 tables_->known_bad_files_.clear(); in FindFileByName() 1032 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName() 1039 result = tables_->FindFile(name); in FindFileByName() 1048 tables_->known_bad_symbols_.clear(); in FindFileContainingSymbol() [all …]
|
D | descriptor.h | 1123 const FileDescriptorTables* tables_; variable 1430 scoped_ptr<Tables> tables_; variable
|
/external/v8/src/ |
D | compilation-cache.cc | 44 if (tables_[generation]->IsUndefined()) { in GetTable() 46 tables_[generation] = *result; in GetTable() 49 CompilationCacheTable::cast(tables_[generation]); in GetTable() 59 if (tables_[0] != isolate()->heap()->undefined_value()) { in Age() 60 CompilationCacheTable::cast(tables_[0])->Age(); in Age() 67 tables_[i] = tables_[i - 1]; in Age() 71 tables_[0] = isolate()->heap()->undefined_value(); in Age() 78 if (tables_[i] != undefined) { in IterateFunctions() 79 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v); in IterateFunctions() 86 v->VisitPointers(&tables_[0], &tables_[generations_]); in Iterate() [all …]
|
D | compilation-cache.h | 25 tables_ = NewArray<Object*>(generations); in CompilationSubCache() 28 ~CompilationSubCache() { DeleteArray(tables_); } in ~CompilationSubCache() 42 tables_[kFirstGeneration] = *value; in SetFirstTable() 68 Object** tables_; // Compilation cache tables - one for each generation. variable
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
D | lsh_index.h | 112 tables_.resize(table_number_); in buildIndex() 114 lsh::LshTable<ElementType>& table = tables_[i]; in buildIndex() 270 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin(); in getNeighbors() 271 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table_end = tables_.end(); in getNeighbors() 308 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin(); in getNeighbors() 309 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table_end = tables_.end(); in getNeighbors() 341 typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin(); in getNeighbors() 342 typename std::vector<lsh::LshTable<ElementType> >::const_iterator table_end = tables_.end(); in getNeighbors() 368 std::vector<lsh::LshTable<ElementType> > tables_; variable
|
/external/sfntly/cpp/src/sfntly/ |
D | font.cc | 52 TableMap::const_iterator result = tables_.find(tag); in HasTable() 53 TableMap::const_iterator end = tables_.end(); in HasTable() 61 return tables_[tag]; in GetTable() 65 return &tables_; in GetTableMap() 99 if (tables_.find(*tag) == tables_.end()) { in BuildTableHeadersForSerialization() 102 TablePtr table = tables_[*tag]; in BuildTableHeadersForSerialization() 175 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end(); in GenerateTableOrdering() 260 BuildTablesFromBuilders(font, &table_builders_, &font->tables_); in Build()
|
D | font.h | 245 int32_t num_tables() { return (int32_t)tables_.size(); } in num_tables() 343 TableMap tables_; variable
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | data_log_impl.h | 147 TableMap tables_; variable
|