Home
last modified time | relevance | path

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

/external/libchrome/base/process/
Dprocess_metrics_linux.cc789 res->SetDouble("reads", static_cast<double>(reads)); in ToValue()
790 res->SetDouble("reads_merged", static_cast<double>(reads_merged)); in ToValue()
791 res->SetDouble("sectors_read", static_cast<double>(sectors_read)); in ToValue()
792 res->SetDouble("read_time", static_cast<double>(read_time)); in ToValue()
793 res->SetDouble("writes", static_cast<double>(writes)); in ToValue()
794 res->SetDouble("writes_merged", static_cast<double>(writes_merged)); in ToValue()
795 res->SetDouble("sectors_written", static_cast<double>(sectors_written)); in ToValue()
796 res->SetDouble("write_time", static_cast<double>(write_time)); in ToValue()
797 res->SetDouble("io", static_cast<double>(io)); in ToValue()
798 res->SetDouble("io_time", static_cast<double>(io_time)); in ToValue()
[all …]
/external/libchrome/base/trace_event/
Dtrace_event_argument_unittest.cc21 value->SetDouble("double", 0.0); in TEST()
34 value->SetDouble("doub.le", 0.0); in TEST()
54 value->SetDouble("d0", 0.0); in TEST()
107 dict_value->SetDouble("double", 42.0f); in TEST()
Dtrace_event_argument.h36 void SetDouble(const char* name, double value);
Dmemory_allocator_dump.cc79 attributes_->SetDouble("value", value); in AddScalarF()
Dtrace_event_argument.cc100 void TracedValue::SetDouble(const char* name, double value) { in SetDouble() function in base::trace_event::TracedValue
/external/v8/src/tracing/
Dtraced-value.h30 void SetDouble(const char* name, double value);
Dtraced-value.cc81 void TracedValue::SetDouble(const char* name, double value) { in SetDouble() function in v8::tracing::TracedValue
/external/pdfium/fxjs/
Dcfxjse_value.h51 void SetDouble(double dDouble);
Dcfxjse_formcalc_context.cpp636 args.GetReturnValue()->SetDouble(dValue); in Abs()
703 args.GetReturnValue()->SetDouble(dSum / uCount); in Avg()
867 args.GetReturnValue()->SetDouble(dMaxValue); in Max()
941 args.GetReturnValue()->SetDouble(dMinValue); in Min()
975 args.GetReturnValue()->SetDouble(dDividend - in Mod()
1022 args.GetReturnValue()->SetDouble(decimalValue); in Round()
1097 args.GetReturnValue()->SetDouble(dSum); in Sum()
2273 args.GetReturnValue()->SetDouble(r * 12); in Apr()
2345 args.GetReturnValue()->SetDouble(dResult); in FV()
2445 args.GetReturnValue()->SetDouble(nSum); in NPV()
[all …]
Dcfxjse_value.cpp415 void CFXJSE_Value::SetDouble(double dDouble) { in SetDouble() function in CFXJSE_Value
/external/libchrome/base/metrics/
Dhistogram_base.cc117 root.SetDouble("sum", static_cast<double>(sum)); in WriteJSON()
/external/v8/src/profiler/
Dprofile-generator.cc400 value->SetDouble("startTime", in CpuProfile()
500 value->SetDouble("endTime", (end_time_ - base::TimeTicks()).InMicroseconds()); in FinishProfile()
/external/libchrome/base/
Dvalues.h249 void SetDouble(StringPiece path, double in_value);
Dvalues.cc669 void DictionaryValue::SetDouble(StringPiece path, double in_value) { in SetDouble() function in base::DictionaryValue
Dvalues_unittest.cc816 dv.SetDouble("c", 2.5); in TEST()
/external/protobuf/src/google/protobuf/
Dmap_field.cc332 reflection->SetDouble(new_entry, val_des, map_val.GetDoubleValue()); in SyncRepeatedFieldWithMapNoLock()
Dmessage.h562 virtual void SetDouble(Message* message,
Dgenerated_message_reflection.h296 void SetDouble(Message* message,
Dmap_test.cc1101 message_int32_double->GetReflection()->SetDouble( in TEST_F()
1338 entry_int32_double->GetReflection()->SetDouble( in TEST_F()
1468 entry_int32_double->GetReflection()->SetDouble( in TEST_F()
Dmap_test_util.cc416 ->SetDouble(sub_message, map_int32_double_val_, 0.0); in SetMapFieldsViaReflection()
522 ->SetDouble(sub_message, map_int32_double_val_, 1.0); in SetMapFieldsViaReflection()
Dextension_set.h252 void SetDouble(int number, FieldType type, double value, desc);
Dtest_util.cc2399 reflection->SetDouble(message, F("optional_double" ), 112); in SetAllFieldsViaReflection()
2510 reflection->SetDouble(message, F("default_double" ), 412); in SetAllFieldsViaReflection()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2374 reflection->SetDouble(message, field_descriptor, value); in CheckAndGetInteger()