Home
last modified time | relevance | path

Searched refs:cells_ (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/lib/monitoring/
Dcounter.h109 for (const auto& cell : cells_) { in Counter()
123 std::map<LabelArray, CounterCell> cells_ GUARDED_BY(mu_);
160 const auto found_it = cells_.find(label_array); in GetCell()
161 if (found_it != cells_.end()) { in GetCell()
164 return &(cells_ in GetCell()
Dsampler.h144 for (const auto& cell : cells_) { in Sampler()
166 std::map<LabelArray, SamplerCell> cells_ GUARDED_BY(mu_);
203 const auto found_it = cells_.find(label_array); in GetCell()
204 if (found_it != cells_.end()) { in GetCell()
207 return &(cells_ in GetCell()
Dgauge.h161 for (const auto& cell : cells_) { in Gauge()
175 std::map<LabelArray, GaugeCell<ValueType> > cells_ GUARDED_BY(mu_);
229 const auto found_it = cells_.find(label_array); in GetCell()
230 if (found_it != cells_.end()) { in GetCell()
233 return &(cells_ in GetCell()
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log.cc52 CellMap cells_; member in webrtc::Row
107 : cells_(), in Row()
112 for (CellMap::iterator it = cells_.begin(); it != cells_.end();) { in ~Row()
115 cells_.erase(it++); in ~Row()
123 assert(cells_.count(column_name) == 0); in InsertCell()
124 if (cells_.count(column_name) > 0) in InsertCell()
126 cells_[column_name] = value_container; in InsertCell()
133 const Container* container = cells_[column_name]; in ToString()
/external/v8/src/heap/
Dmark-compact.h100 cells_ = bitmap->cells(); in MarkBitCellIterator()
110 return &cells_[cell_index_]; in CurrentCell()
139 return cells_[cell_index_ + 1]; in PeekNext()
146 MarkBit::CellType* cells_; variable