Home | History | Annotate | Download | only in trace_event

Lines Matching refs:attributes_

30       attributes_(new TracedValue),
63 attributes_->BeginDictionary(name);
64 attributes_->SetString("type", kTypeScalar);
65 attributes_->SetString("units", units);
66 attributes_->SetString("value", string_conversion_buffer_);
67 attributes_->EndDictionary();
73 attributes_->BeginDictionary(name);
74 attributes_->SetString("type", kTypeScalar);
75 attributes_->SetString("units", units);
76 attributes_->SetDouble("value", value);
77 attributes_->EndDictionary();
90 attributes_->BeginDictionary(name);
91 attributes_->SetString("type", kTypeString);
92 attributes_->SetString("units", units);
93 attributes_->SetString("value", value);
94 attributes_->EndDictionary();
100 value->SetValue("attrs", *attributes_);