Searched defs:table_ (Results 1 - 19 of 19) sorted by relevance

/external/chromium/chrome/browser/ui/views/
H A Dabout_ipc_dialog.h69 views::NativeViewHost* table_; member in class:AboutIPCDialog
/external/chromium/testing/gtest/samples/
H A Dsample6_unittest.cc63 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_
[all...]
H A Dsample7_unittest.cc70 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_
[all...]
H A Dsample8_unittest.cc106 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_
[all...]
/external/gtest/samples/
H A Dsample6_unittest.cc63 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_
[all...]
H A Dsample7_unittest.cc70 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_
[all...]
H A Dsample8_unittest.cc106 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_
[all...]
/external/protobuf/gtest/samples/
H A Dsample6_unittest.cc63 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_
[all...]
H A Dsample7_unittest.cc72 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_
[all...]
H A Dsample8_unittest.cc106 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_
[all...]
/external/chromium/chrome/browser/importer/
H A Dmork_reader.h112 iterator begin() const { return table_.begin(); }
113 iterator end() const { return table_.end(); }
133 // from |stream_| of the line ends mid-row. An entry is added to |table_|
158 RowMap table_; member in class:MorkReader
/external/openfst/src/include/fst/
H A Dsymbol-table.h418 : table_(table),
437 return table_.Find(key_);
443 if (pos_ < nsymbols_) key_ = table_.GetNthKey(pos_);
449 key_ = table_.GetNthKey(0);
453 const SymbolTable& table_; member in class:fst::SymbolTableIterator
H A Dencode.h312 table_(new EncodeTable<A>(flags)),
318 table_(mapper.table_),
320 table_->IncrRefCount();
327 table_(mapper.table_),
329 table_->IncrRefCount();
333 if (!table_->DecrRefCount()) delete table_;
364 const EncodeTable<A> &table() const { return *table_; }
411 EncodeTable<A>* table_; member in class:fst::EncodeMapper
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dencode.h211 table_(new EncodeTable<A>(flags)) {}
217 table_(mapper.table_) { }
224 table_(mapper.table_) { }
227 if (--ref_count_ == 0) delete table_;
237 Label label = table_->Encode(arc);
248 table_->Decode(arc.ilabel);
278 return table_->Write(strm, source);
310 EncodeTable<A>* table_; member in class:fst::EncodeMapper
[all...]
H A Dcompose.h222 // NB: if 'tuple' is not in 'table_', the pair (tuple, StateId()) is
223 // inserted into 'table_' (standard STL container semantics). Since
227 return table_[tuple];
260 StateTable table_; member in class:fst::ComposeStateTable
/external/v8/src/
H A Dobjects-visiting.h284 return table_.GetVisitor(map)(map, obj);
341 static VisitorDispatchTable<Callback> table_; member in class:v8::internal::StaticNewSpaceVisitor
347 StaticNewSpaceVisitor<StaticVisitor>::table_; member in class:v8::internal::StaticNewSpaceVisitor
H A Djsregexp.h1055 table_(NULL),
1099 DispatchTable* table_; member in class:v8::internal::ChoiceNode
1354 : table_(table),
1371 DispatchTable* table() { return table_; }
1375 DispatchTable* table_; member in class:v8::internal::DispatchTableConstructor
H A Dmark-compact.cc939 table_.GetVisitor(map)(map, obj);
943 table_.Register(kVisitShortcutCandidate,
948 table_.Register(kVisitConsString,
953 table_.Register(kVisitSlicedString,
958 table_.Register(kVisitFixedArray,
963 table_.Register(kVisitGlobalContext, &VisitGlobalContext);
965 table_.Register(kVisitFixedDoubleArray, DataObjectVisitor::Visit);
967 table_.Register(kVisitByteArray, &DataObjectVisitor::Visit);
968 table_.Register(kVisitFreeSpace, &DataObjectVisitor::Visit);
969 table_
1562 static VisitorDispatchTable<Callback> table_; member in class:v8::internal::StaticMarkingVisitor
1567 StaticMarkingVisitor::table_; member in class:v8::internal::StaticMarkingVisitor
[all...]
H A Dheap.cc1507 table_.Register(kVisitSeqAsciiString, &EvacuateSeqAsciiString);
1508 table_.Register(kVisitSeqTwoByteString, &EvacuateSeqTwoByteString);
1509 table_.Register(kVisitShortcutCandidate, &EvacuateShortcutCandidate);
1510 table_.Register(kVisitByteArray, &EvacuateByteArray);
1511 table_.Register(kVisitFixedArray, &EvacuateFixedArray);
1512 table_.Register(kVisitFixedDoubleArray, &EvacuateFixedDoubleArray);
1514 table_.Register(kVisitGlobalContext,
1518 table_.Register(kVisitConsString,
1522 table_.Register(kVisitSlicedString,
1526 table_
1804 static VisitorDispatchTable<ScavengingCallback> table_; member in class:v8::internal::ScavengingVisitor
1811 ScavengingVisitor<marks_handling, logging_and_profiling_mode>::table_; member in class:v8::internal::ScavengingVisitor
[all...]

Completed in 135 milliseconds