Home | History | Annotate | Download | only in native

Lines Matching refs:fname

86   bool GetElementMinBound(const Key &fname, double *val) const {
87 return GetValue(wmin_, fname, val);
89 bool GetElementMaxBound(const Key &fname, double *val) const {
90 return GetValue(wmax_, fname, val);
92 void SetElementMinBound(const Key &fname, const double bound) {
93 wmin_[fname] = bound;
95 void SetElementMaxBound(const Key &fname, const double bound) {
96 wmax_[fname] = bound;
99 double GetElement(const Key &fname) const {
101 GetValue(w_, fname, &val);
104 void SetElement(const Key &fname, const double val) {
106 w_[fname] = val;
108 void AddUpdateElement(const Key &fname, const double val) {
109 w_[fname] += val;
111 void MultUpdateElement(const Key &fname, const double val) {
112 w_[fname] *= val;
176 bool GetValue(const Wmap &w1, const Key &fname, double *val) const {
177 Witer_const iter = w1.find(fname);