Home
last modified time | relevance | path

Searched refs:SetDouble (Results 1 – 23 of 23) sorted by relevance

/external/libchrome/base/process/
Dprocess_metrics_linux.cc774 res->SetDouble("reads", static_cast<double>(reads)); in ToValue()
775 res->SetDouble("reads_merged", static_cast<double>(reads_merged)); in ToValue()
776 res->SetDouble("sectors_read", static_cast<double>(sectors_read)); in ToValue()
777 res->SetDouble("read_time", static_cast<double>(read_time)); in ToValue()
778 res->SetDouble("writes", static_cast<double>(writes)); in ToValue()
779 res->SetDouble("writes_merged", static_cast<double>(writes_merged)); in ToValue()
780 res->SetDouble("sectors_written", static_cast<double>(sectors_written)); in ToValue()
781 res->SetDouble("write_time", static_cast<double>(write_time)); in ToValue()
782 res->SetDouble("io", static_cast<double>(io)); in ToValue()
783 res->SetDouble("io_time", static_cast<double>(io_time)); in ToValue()
[all …]
/external/libchrome/base/trace_event/
Dtrace_event_argument_unittest.cc20 value->SetDouble("double", 0.0); in TEST()
33 value->SetDouble("doub.le", 0.0); in TEST()
53 value->SetDouble("d0", 0.0); in TEST()
106 dict_value->SetDouble("double", 42.0f); in TEST()
Dtrace_event_argument.h35 void SetDouble(const char* name, double value);
Dmemory_allocator_dump.cc75 attributes_->SetDouble("value", value); in AddScalarF()
Dtrace_event_argument.cc99 void TracedValue::SetDouble(const char* name, double value) { in SetDouble() function in base::trace_event::TracedValue
/external/libweave/examples/daemon/oven/
Doven.cc229 state.SetDouble("temperatureSensor.value", current_temperature_); in UpdateOvenState()
233 state.SetDouble("temperatureSetting.tempSetting", target_temperature_); in UpdateOvenState()
235 state.SetDouble("temperatureSetting.maxTempSetting", kMaxTemp); in UpdateOvenState()
236 state.SetDouble("temperatureSetting.minTempSetting", kMinTemp); in UpdateOvenState()
/external/libweave/examples/daemon/light/
Dlight.cc289 colorXY->SetDouble("colorX", color_X_); in UpdateLightState()
290 colorXY->SetDouble("colorY", color_Y_); in UpdateLightState()
/external/libchrome/base/metrics/
Dhistogram_base.cc117 root.SetDouble("sum", static_cast<double>(sum)); in WriteJSON()
/external/pdfium/xfa/src/fxjse/src/
Dvalue.h173 V8_INLINE void SetDouble(FXJSE_DOUBLE dDouble) { in SetDouble() function
Dvalue.cpp119 return lpValue->SetDouble(dDouble); in FXJSE_Value_SetDouble()
/external/protobuf/src/google/protobuf/
Dgenerated_message_reflection.h239 void SetDouble(Message* message,
Dmessage.h505 virtual void SetDouble(Message* message,
Dextension_set.h248 void SetDouble(int number, FieldType type, double value, desc);
Dtest_util.cc2398 reflection->SetDouble(message, F("optional_double" ), 112); in SetAllFieldsViaReflection()
2509 reflection->SetDouble(message, F("default_double" ), 412); in SetAllFieldsViaReflection()
/external/libweave/third_party/chromium/base/
Dvalues.h244 void SetDouble(const std::string& path, double in_value);
Dvalues.cc421 void DictionaryValue::SetDouble(const std::string& path, double in_value) { in SetDouble() function in base::DictionaryValue
Dvalues_unittest.cc527 dv.SetDouble("c", 2.5); in TEST()
/external/libchrome/base/
Dvalues.h250 void SetDouble(const std::string& path, double in_value);
Dvalues.cc436 void DictionaryValue::SetDouble(const std::string& path, double in_value) { in SetDouble() function in base::DictionaryValue
Dvalues_unittest.cc560 dv.SetDouble("c", 2.5); in TEST()
/external/opencv3/modules/videoio/src/
Dcap_msmf.hpp903 STDMETHODIMP SetDouble(REFGUID guidKey, double fValue) in SetDouble() function in CBaseAttributes
906 return _spAttributes->SetDouble(guidKey, fValue); in SetDouble()
2573 … hr = pAttr->SetDouble(guidKey, value); in AddAttribute()
/external/libweave/src/privet/
Dprivet_handler.cc565 output.SetDouble(kInfoTimeKey, clock_->Now().ToJsTime()); in HandleInfo()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1788 reflection->SetDouble(message, field_descriptor, value); in CheckAndGetInteger()