Home | History | Annotate | Download | only in base

Lines Matching refs:Value

15 class Value;
56 #define SOURCE_TYPE(label, value) SOURCE_ ## label = value,
71 // The caller takes ownership of the returned Value*.
72 Value* ToValue() const;
86 // Serializes the parameters to a Value tree. This is intended to be a
88 // The caller takes ownership of the returned Value*.
89 virtual Value* ToValue() const = 0;
153 static Value* EntryToDictionaryValue(NetLog::EventType type,
197 // negative, a parameter called "net_error" with a value of |net_error| is
228 NetLogStringParameter(const char* name, const std::string& value);
231 const std::string& value() const {
235 virtual Value* ToValue() const;
247 NetLogIntegerParameter(const char* name, int value)
248 : name_(name), value_(value) {}
250 int value() const {
254 virtual Value* ToValue() const;
266 NetLogSourceParameter(const char* name, const NetLog::Source& value)
267 : name_(name), value_(value) {}
269 const NetLog::Source& value() const {
273 virtual Value* ToValue() const;