HomeSort by relevance Sort by last modified time
    Searched defs:ToValue (Results 1 - 6 of 6) sorted by null

  /external/libbrillo/brillo/
value_conversion.cc 40 std::unique_ptr<base::Value> ToValue(int value) {
44 std::unique_ptr<base::Value> ToValue(bool value) {
48 std::unique_ptr<base::Value> ToValue(double value) {
52 std::unique_ptr<base::Value> ToValue(const char* value) {
56 std::unique_ptr<base::Value> ToValue(const std::string& value) {
value_conversion.h 106 BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(int value);
107 BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(bool value);
108 BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(double value);
109 BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(const std::string& value);
112 BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(const char* value);
115 std::unique_ptr<base::Value> ToValue(
119 std::unique_ptr<base::Value> ToValue(const std::vector<T, Alloc>& list) {
122 result->Append(ToValue(value));
127 std::unique_ptr<base::Value> ToValue(
131 result->Set(pair.first, ToValue(pair.second))
    [all...]
  /external/libchrome/base/process/
process_metrics.cc 39 std::unique_ptr<Value> SystemMetrics::ToValue() const {
44 res->Set("meminfo", memory_info_.ToValue());
45 res->Set("diskinfo", disk_info_.ToValue());
48 res->Set("swapinfo", swap_info_.ToValue());
process_metrics_linux.cc 561 std::unique_ptr<Value> SystemMemoryInfoKB::ToValue() const {
784 std::unique_ptr<Value> SystemDiskInfo::ToValue() const {
914 std::unique_ptr<Value> SwapInfo::ToValue() const {
  /external/v8/tools/clang/value_cleanup/tests/
list-value-append-expected.cc 23 std::unique_ptr<base::Value> ToValue() { return nullptr; }
36 list.Append(thing.ToValue());
list-value-append-original.cc 23 std::unique_ptr<base::Value> ToValue() { return nullptr; }
36 list.Append(thing.ToValue().release());

Completed in 75 milliseconds