HomeSort by relevance Sort by last modified time
    Searched full:tables_ (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/chrome/browser/predictors/
resource_prefetch_predictor_tables_unittest.cc 38 scoped_refptr<ResourcePrefetchPredictorTables> tables_; member in class:predictors::ResourcePrefetchPredictorTablesTest
86 tables_ = db_->resource_prefetch_tables();
94 tables_(db_->resource_prefetch_tables()) {
102 tables_->DeleteAllData();
107 tables_ = NULL;
114 tables_->GetAllData(&actual_url_data, &actual_host_data);
126 tables_->DeleteData(urls_to_delete, hosts_to_delete);
129 tables_->GetAllData(&actual_url_data, &actual_host_data);
141 tables_->DeleteSingleDataPoint("http://www.reddit.com",
145 tables_->GetAllData(&actual_url_data, &actual_host_data)
    [all...]
resource_prefetch_predictor.cc 294 tables_(PredictorDatabaseFactory::GetForProfile(
657 tables_, url_data_ptr, host_data_ptr),
742 base::Bind(&ResourcePrefetchPredictorTables::DeleteAllData, tables_));
768 tables_,
793 tables_,
    [all...]
resource_prefetch_predictor.h 285 tables_ = tables;
291 scoped_refptr<ResourcePrefetchPredictorTables> tables_; member in class:predictors::ResourcePrefetchPredictor
  /external/chromium_org/components/webdata/common/
web_data_service_backend.cc 30 tables_.push_back(table.release());
47 for (ScopedVector<WebDatabaseTable>::iterator it = tables_.begin();
48 it != tables_.end();
web_database.cc 52 tables_[table->GetTypeKey()] = table;
56 return tables_[key];
104 for (TableMap::iterator it = tables_.begin();
105 it != tables_.end();
153 for (TableMap::iterator it = tables_.begin();
154 it != tables_.end();
web_database.h 68 TableMap tables_; member in class:WebDatabase
web_data_service_backend.h 109 ScopedVector<WebDatabaseTable> tables_; member in class:WebDataServiceBackend
  /external/webrtc/src/system_wrappers/source/
data_log.cc 323 tables_(),
334 for (TableMap::iterator it = tables_.begin(); it != tables_.end();) {
337 tables_.erase(it++);
385 if (tables_.count(table_name) > 0)
387 tables_[table_name] = new LogTable();
388 if (tables_[table_name]->CreateLogFile(table_name + ".txt") == -1)
397 if (tables_.count(table_name) == 0)
399 return tables_[table_name]->AddColumn(column_name, multi_value_length);
406 assert(tables_.count(table_name) > 0)
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 675 pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name);
850 tables_(new Tables),
860 tables_(new Tables),
870 tables_(new Tables),
887 return tables_->FindFile(filename) != NULL;
2145 DescriptorPool::Tables* tables_; \/\/ for convenience member in class:google::protobuf::DescriptorBuilder
    [all...]
descriptor.h 1019 const FileDescriptorTables* tables_; member in class:google::protobuf::FileDescriptor
1297 scoped_ptr<Tables> tables_; member in class:google::protobuf::DescriptorPool
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 79 for (size_t i = 0; i < tables_.size(); i++) {
80 bytes += tables_[i].meta.file_size;
88 static_cast<int>(tables_.size()),
113 std::vector<TableInfo> tables_; member in class:leveldb::__anon14411::Repairer
316 tables_.push_back(t);
368 tables_.push_back(t);
385 for (size_t i = 0; i < tables_.size(); i++) {
386 if (max_sequence < tables_[i].max_sequence) {
387 max_sequence = tables_[i].max_sequence;
396 for (size_t i = 0; i < tables_.size(); i++)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font.cc 52 TableMap::const_iterator result = tables_.find(tag);
53 TableMap::const_iterator end = tables_.end();
61 return tables_[tag];
65 return &tables_;
99 if (tables_.find(*tag) == tables_.end()) {
102 TablePtr table = tables_[*tag];
175 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end();
258 // Note: Different from Java. Directly use font->tables_ here to avoi
    [all...]
font.h 245 int32_t num_tables() { return (int32_t)tables_.size(); }
343 TableMap tables_; member in class:sfntly::Font
  /external/chromium_org/v8/src/
compilation-cache.cc 78 if (tables_[generation]->IsUndefined()) {
80 tables_[generation] = *result;
83 CompilationCacheTable::cast(tables_[generation]);
93 tables_[i] = tables_[i - 1];
97 tables_[0] = isolate()->heap()->undefined_value();
104 if (tables_[i] != undefined) {
105 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v);
112 v->VisitPointers(&tables_[0], &tables_[generations_])
    [all...]
compilation-cache.h 44 tables_ = NewArray<Object*>(generations);
47 ~CompilationSubCache() { DeleteArray(tables_); }
61 tables_[kFirstGeneration] = *value;
87 Object** tables_; // Compilation cache tables - one for each generation.
  /external/sfntly/cpp/src/sfntly/
font.cc 52 TableMap::const_iterator result = tables_.find(tag);
53 TableMap::const_iterator end = tables_.end();
61 return tables_[tag];
65 return &tables_;
99 if (tables_.find(*tag) == tables_.end()) {
102 TablePtr table = tables_[*tag];
175 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end();
258 // Note: Different from Java. Directly use font->tables_ here to avoi
    [all...]
font.h 245 int32_t num_tables() { return (int32_t)tables_.size(); }
343 TableMap tables_; member in class:sfntly::Font
  /external/v8/src/
compilation-cache.cc 78 if (tables_[generation]->IsUndefined()) {
80 tables_[generation] = *result;
83 CompilationCacheTable::cast(tables_[generation]);
92 tables_[i] = tables_[i - 1];
96 tables_[0] = isolate()->heap()->undefined_value();
103 if (tables_[i] != undefined) {
104 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v);
111 v->VisitPointers(&tables_[0], &tables_[generations_])
    [all...]
compilation-cache.h 44 tables_ = NewArray<Object*>(generations);
47 ~CompilationSubCache() { DeleteArray(tables_); }
61 tables_[kFirstGeneration] = *value;
87 Object** tables_; // Compilation cache tables - one for each generation.
  /external/protobuf/src/google/protobuf/
descriptor.cc 581 pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name);
756 tables_(new Tables),
766 tables_(new Tables),
776 tables_(new Tables),
793 return tables_->FindFile(filename) != NULL;
872 const FileDescriptor* result = tables_->FindFile(name);
879 const FileDescriptor* result = tables_->FindFile(name);
888 Symbol result = tables_->FindSymbol(symbol_name);
896 Symbol result = tables_->FindSymbol(symbol_name);
904 Symbol result = tables_->FindByNameHelper(this, name)
1848 DescriptorPool::Tables* tables_; \/\/ for convenience member in class:google::protobuf::DescriptorBuilder
    [all...]
descriptor.h 892 const FileDescriptorTables* tables_; member in class:google::protobuf::FileDescriptor
1162 scoped_ptr<Tables> tables_; member in class:google::protobuf::DescriptorPool
    [all...]
  /external/webrtc/src/system_wrappers/interface/
data_log_impl.h 149 TableMap tables_; member in class:webrtc::DataLogImpl

Completed in 2285 milliseconds