Searched refs:GaugeCell (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/lib/monitoring/
H A Dmobile_gauge.h27 // GaugeCell which has a null implementation.
29 class GaugeCell { class in namespace:tensorflow::monitoring
32 GaugeCell() {} function in class:tensorflow::monitoring::GaugeCell
33 ~GaugeCell() {}
39 TF_DISALLOW_COPY_AND_ASSIGN(GaugeCell);
57 GaugeCell<ValueType>* GetCell(const Labels&... labels) {
64 GaugeCell<ValueType> default_gauge_cell_;
H A Dgauge.h40 // GaugeCell stores each value of a gauge.
50 class GaugeCell { class in namespace:tensorflow::monitoring
52 explicit GaugeCell(const T& value) : value_(value) {} function in class:tensorflow::monitoring::GaugeCell
53 ~GaugeCell() {}
65 TF_DISALLOW_COPY_AND_ASSIGN(GaugeCell);
68 // Explicit specialization of GaugeCell<int64>. Compared to the primary
72 class GaugeCell<int64> { class in namespace:tensorflow::monitoring
74 explicit GaugeCell(int64 value) : value_(value) {} function in class:tensorflow::monitoring::GaugeCell
75 ~GaugeCell() {}
86 TF_DISALLOW_COPY_AND_ASSIGN(GaugeCell);
93 class GaugeCell<bool> { class in namespace:tensorflow::monitoring
95 explicit GaugeCell(bool value) : value_(value) {} function in class:tensorflow::monitoring::GaugeCell
[all...]

Completed in 341 milliseconds