HomeSort by relevance Sort by last modified time
    Searched refs:table_ (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/chromium_org/testing/gtest/samples/
sample7_unittest.cc 70 virtual ~PrimeTableTest() { delete table_; }
71 virtual void SetUp() { table_ = (*GetParam())(); }
73 delete table_;
74 table_ = NULL;
78 PrimeTable* table_; member in class:PrimeTableTest
82 EXPECT_FALSE(table_->IsPrime(-5));
83 EXPECT_FALSE(table_->IsPrime(0));
84 EXPECT_FALSE(table_->IsPrime(1));
85 EXPECT_FALSE(table_->IsPrime(4));
86 EXPECT_FALSE(table_->IsPrime(6))
    [all...]
sample6_unittest.cc 63 PrimeTableTest() : table_(CreatePrimeTable<T>()) {}
65 virtual ~PrimeTableTest() { delete table_; }
74 PrimeTable* const table_; member in class:PrimeTableTest
108 EXPECT_FALSE(this->table_->IsPrime(-5));
109 EXPECT_FALSE(this->table_->IsPrime(0));
110 EXPECT_FALSE(this->table_->IsPrime(1));
111 EXPECT_FALSE(this->table_->IsPrime(4));
112 EXPECT_FALSE(this->table_->IsPrime(6));
113 EXPECT_FALSE(this->table_->IsPrime(100));
117 EXPECT_TRUE(this->table_->IsPrime(2))
    [all...]
sample8_unittest.cc 106 table_ = new HybridPrimeTable(force_on_the_fly, max_precalculated);
109 delete table_;
110 table_ = NULL;
112 HybridPrimeTable* table_; member in class:PrimeTableTest
122 EXPECT_FALSE(table_->IsPrime(-5));
123 EXPECT_FALSE(table_->IsPrime(0));
124 EXPECT_FALSE(table_->IsPrime(1));
125 EXPECT_FALSE(table_->IsPrime(4));
126 EXPECT_FALSE(table_->IsPrime(6));
127 EXPECT_FALSE(table_->IsPrime(100))
    [all...]
  /external/protobuf/gtest/samples/
sample7_unittest.cc 72 virtual ~PrimeTableTest() { delete table_; }
73 virtual void SetUp() { table_ = (*GetParam())(); }
75 delete table_;
76 table_ = NULL;
80 PrimeTable* table_; member in class:PrimeTableTest
84 EXPECT_FALSE(table_->IsPrime(-5));
85 EXPECT_FALSE(table_->IsPrime(0));
86 EXPECT_FALSE(table_->IsPrime(1));
87 EXPECT_FALSE(table_->IsPrime(4));
88 EXPECT_FALSE(table_->IsPrime(6))
    [all...]
sample6_unittest.cc 63 PrimeTableTest() : table_(CreatePrimeTable<T>()) {}
65 virtual ~PrimeTableTest() { delete table_; }
74 PrimeTable* const table_; member in class:PrimeTableTest
108 EXPECT_FALSE(this->table_->IsPrime(-5));
109 EXPECT_FALSE(this->table_->IsPrime(0));
110 EXPECT_FALSE(this->table_->IsPrime(1));
111 EXPECT_FALSE(this->table_->IsPrime(4));
112 EXPECT_FALSE(this->table_->IsPrime(6));
113 EXPECT_FALSE(this->table_->IsPrime(100));
117 EXPECT_TRUE(this->table_->IsPrime(2))
    [all...]
sample8_unittest.cc 106 table_ = new HybridPrimeTable(force_on_the_fly, max_precalculated);
109 delete table_;
110 table_ = NULL;
112 HybridPrimeTable* table_; member in class:PrimeTableTest
122 EXPECT_FALSE(table_->IsPrime(-5));
123 EXPECT_FALSE(table_->IsPrime(0));
124 EXPECT_FALSE(table_->IsPrime(1));
125 EXPECT_FALSE(table_->IsPrime(4));
126 EXPECT_FALSE(table_->IsPrime(6));
127 EXPECT_FALSE(table_->IsPrime(100))
    [all...]
  /ndk/sources/third_party/googletest/googletest/samples/
sample7_unittest.cc 70 virtual ~PrimeTableTest() { delete table_; }
71 virtual void SetUp() { table_ = (*GetParam())(); }
73 delete table_;
74 table_ = NULL;
78 PrimeTable* table_; member in class:PrimeTableTest
82 EXPECT_FALSE(table_->IsPrime(-5));
83 EXPECT_FALSE(table_->IsPrime(0));
84 EXPECT_FALSE(table_->IsPrime(1));
85 EXPECT_FALSE(table_->IsPrime(4));
86 EXPECT_FALSE(table_->IsPrime(6))
    [all...]
sample6_unittest.cc 63 PrimeTableTest() : table_(CreatePrimeTable<T>()) {}
65 virtual ~PrimeTableTest() { delete table_; }
74 PrimeTable* const table_; member in class:PrimeTableTest
108 EXPECT_FALSE(this->table_->IsPrime(-5));
109 EXPECT_FALSE(this->table_->IsPrime(0));
110 EXPECT_FALSE(this->table_->IsPrime(1));
111 EXPECT_FALSE(this->table_->IsPrime(4));
112 EXPECT_FALSE(this->table_->IsPrime(6));
113 EXPECT_FALSE(this->table_->IsPrime(100));
117 EXPECT_TRUE(this->table_->IsPrime(2))
    [all...]
sample8_unittest.cc 106 table_ = new HybridPrimeTable(force_on_the_fly, max_precalculated);
109 delete table_;
110 table_ = NULL;
112 HybridPrimeTable* table_; member in class:PrimeTableTest
122 EXPECT_FALSE(table_->IsPrime(-5));
123 EXPECT_FALSE(table_->IsPrime(0));
124 EXPECT_FALSE(table_->IsPrime(1));
125 EXPECT_FALSE(table_->IsPrime(4));
126 EXPECT_FALSE(table_->IsPrime(6));
127 EXPECT_FALSE(table_->IsPrime(100))
    [all...]
  /external/chromium_org/net/spdy/
hpack_header_table_test.cc 29 : table_(table) {}
32 return table_->dynamic_entries_;
35 return table_->static_entries_;
38 return table_->static_index_.size() + table_->dynamic_index_.size();
42 table_->EvictionSet(name, value, &begin, &end);
50 return table_->total_insertions_;
53 return table_->dynamic_entries_.size();
56 return table_->EvictionCountForEntry(name, value);
59 return table_->EvictionCountToReclaim(reclaim_size)
71 HpackHeaderTable* table_; member in class:net::test::HpackHeaderTablePeer
139 HpackHeaderTable table_; member in class:net::__anon14201::HpackHeaderTableTest
    [all...]
hpack_static_table_test.cc 21 HpackStaticTableTest() : table_() {}
23 HpackStaticTable table_; member in class:net::test::__anon14209::HpackStaticTableTest
28 EXPECT_FALSE(table_.IsInitialized());
30 table_.Initialize(&static_table[0], static_table.size());
31 EXPECT_TRUE(table_.IsInitialized());
33 HpackHeaderTable::EntryTable static_entries = table_.GetStaticEntries();
36 HpackHeaderTable::OrderedEntrySet static_index = table_.GetStaticIndex();
  /external/chromium_org/components/signin/core/browser/webdata/
token_service_table_unittest.cc 25 table_.reset(new TokenServiceTable);
27 db_->AddTable(table_.get());
33 scoped_ptr<TokenServiceTable> table_; member in class:TokenServiceTableTest
57 EXPECT_TRUE(table_->GetAllTokens(&out_map));
61 EXPECT_TRUE(table_->SetTokenForService(service, "pepperoni"));
62 EXPECT_TRUE(table_->SetTokenForService(service2, "steak"));
63 EXPECT_TRUE(table_->GetAllTokens(&out_map));
69 EXPECT_TRUE(table_->RemoveAllTokens());
70 EXPECT_TRUE(table_->GetAllTokens(&out_map));
74 EXPECT_TRUE(table_->SetTokenForService(service, "cheese"))
    [all...]
  /external/chromium_org/ui/views/controls/table/
table_view_unittest.cc 20 explicit TableViewTestHelper(TableView* table) : table_(table) {}
23 TableView::PaintRegion region(table_->GetPaintRegion(bounds));
31 return table_->visible_columns().size();
34 TableHeader* header() { return table_->header_; }
37 TableView* table_; member in class:views::TableViewTestHelper
173 TableViewTest() : table_(NULL) {}
183 table_ = new TestTableView(model_.get(), columns);
184 parent_.reset(table_->CreateParentIfNecessary());
187 helper_.reset(new TableViewTestHelper(table_));
191 const int y = row * table_->row_height()
232 TableView* table_; member in class:views::TableViewTest
    [all...]
  /art/runtime/
mapping_table.h 69 table_(table), element_(element), end_(table_->DexToPcSize()), encoded_table_ptr_(nullptr),
73 encoded_table_ptr_ = table_->FirstDexToPcPtr();
79 DCHECK_EQ(table_->DexToPcSize(), element);
97 CHECK(table_ == rhs.table_);
101 CHECK(table_ == rhs.table_);
106 const MappingTable* const table_; // The original table. member in class:art::MappingTable::DexToPcIterator
108 const uint32_t end_; // Equal to table_->DexToPcSize()
183 const MappingTable* const table_; \/\/ The original table. member in class:art::MappingTable::PcToDexIterator
    [all...]
indirect_reference_table.cc 79 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin());
80 CHECK(table_ != nullptr);
94 DCHECK(table_ != NULL);
112 IrtEntry* pScan = &table_[topIndex - 1];
116 DCHECK_GE(pScan, table_ + prevState.parts.topIndex);
119 index = pScan - table_;
126 table_[index].Add(obj);
159 DCHECK(table_ != NULL);
188 *table_[idx].GetReference() = GcRoot<mirror::Object>(nullptr);
195 << table_[topIndex - 1].GetReference()->Read<kWithoutReadBarrier>()
    [all...]
vmap_table.h 32 explicit VmapTable(const uint8_t* table) : table_(table) {
37 const uint8_t* table = table_;
48 const uint8_t* table = table_;
64 const uint8_t* table = table_;
101 const uint8_t* table = table_;
121 const uint8_t* const table_; member in class:art::VmapTable
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
table_based_table_builder.cc 40 table_ = NULL;
63 if (table_ == NULL) {
64 table_.Attach(down_cast<Table*>(SubBuildTable(InternalReadData())));
66 return table_;
  /external/sfntly/cpp/src/sfntly/table/
table_based_table_builder.cc 40 table_ = NULL;
63 if (table_ == NULL) {
64 table_.Attach(down_cast<Table*>(SubBuildTable(InternalReadData())));
66 return table_;
  /external/chromium_org/v8/src/compiler/
source-position.cc 20 source_positions_->table_.Set(node, source_positions_->current_position_);
32 table_(graph->zone()) {}
50 return table_.Get(node);
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table.cc 20 : table_(table) {}
25 if (!connection->DoesTableExist(table_.c_str())) {
29 table_.c_str(),
30 table_.c_str(),
31 table_.c_str()).c_str());
55 StringPrintf("INSERT OR IGNORE INTO %s(value) VALUES (?)", table_.c_str())
72 StringPrintf("SELECT id FROM %s WHERE value = ?", table_.c_str())
98 StringPrintf("SELECT value FROM %s WHERE id = ?", table_.c_str())
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 128 table_.reset(new AutofillTable("en-US"));
130 db_->AddTable(table_.get());
136 scoped_ptr<AutofillTable> table_; member in class:autofill::AutofillTableTest
154 EXPECT_FALSE(table_->HasFormElements());
155 EXPECT_TRUE(table_->AddFormFieldValue(field, &changes));
156 EXPECT_TRUE(table_->HasFormElements());
160 EXPECT_TRUE(table_->AddFormFieldValueTime(field, &changes,
165 EXPECT_TRUE(table_->AddFormFieldValueTime(field, &changes,
171 EXPECT_TRUE(table_->AddFormFieldValueTime(field, &changes,
191 EXPECT_TRUE(table_->GetFormValuesForElementName
    [all...]
  /external/chromium_org/ui/views/examples/
table_example.cc 34 TableExample::TableExample() : ExampleBase("Table") , table_(NULL) {
39 delete table_;
40 table_ = NULL;
71 table_ = new TableView(this, columns, ICON_AND_TEXT, true);
72 table_->SetGrouper(this);
73 table_->SetObserver(this);
86 layout->AddView(table_->CreateParentIfNecessary());
146 base::UTF16ToASCII(GetText(table_->selection_model().active(),
152 base::UTF16ToASCII(GetText(table_->selection_model().active(),
176 table_->SetColumnVisibility(index, show)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.cc 59 table_(new Bucket*[kHashTableSize]()) {
60 memset(table_, 0, kHashTableSize * sizeof(Bucket*));
64 delete[] table_;
84 Bucket* b = table_[idx];
103 b->next = table_[idx];
104 table_[idx] = b;
127 Bucket* b = table_[i];
147 Bucket* b = table_[i];
153 table_[i] = NULL;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.cc 59 table_(new Bucket*[kHashTableSize]()) {
60 memset(table_, 0, kHashTableSize * sizeof(Bucket*));
64 delete[] table_;
84 Bucket* b = table_[idx];
103 b->next = table_[idx];
104 table_[idx] = b;
127 Bucket* b = table_[i];
147 Bucket* b = table_[i];
153 table_[i] = NULL;
  /external/chromium_org/chrome/browser/webdata/
keyword_table_unittest.cc 34 table_.reset(new KeywordTable);
36 db_->AddTable(table_.get());
41 EXPECT_TRUE(table_->AddKeyword(keyword));
76 EXPECT_TRUE(table_->RemoveKeyword(id));
80 EXPECT_TRUE(table_->UpdateKeyword(keyword));
85 EXPECT_TRUE(table_->GetKeywords(&keywords));
90 EXPECT_EQ(kInvalidTemplateURLID, table_->GetDefaultSearchProviderID());
91 EXPECT_EQ(0, table_->GetBuiltinKeywordVersion());
93 EXPECT_TRUE(table_->SetDefaultSearchProviderID(10));
94 EXPECT_TRUE(table_->SetBuiltinKeywordVersion(11))
107 scoped_ptr<KeywordTable> table_; member in class:KeywordTableTest
    [all...]

Completed in 723 milliseconds

1 2 3 4