Lines Matching refs:value
78 bool Add(const char* key, const char* value);
79 bool Add(const char* key, bool value);
80 bool Add(const char* key, int32_t value);
81 bool Add(const char* key, uint32_t value);
82 bool Add(const char* key, int64_t value);
83 bool Add(const char* key, double value);
84 bool Add(const char* key, const Value& value);
86 bool Add(const char* value);
87 bool Add(bool value);
88 bool Add(int32_t value);
89 bool Add(uint32_t value);
90 bool Add(int64_t value);
91 bool Add(double value);
92 bool Add(const Value& value);
94 bool Replace(const char* key, bool value);
95 bool Replace(const char* key, int32_t value);
96 bool Replace(const char* key, uint32_t value);
97 bool Replace(const char* key, int64_t value);
98 bool Replace(const char* key, double value);
99 bool Replace(const char* key, const char* value);
100 bool Replace(const char* key, const Value& value);
102 bool Replace(int index, bool value);
103 bool Replace(int index, int32_t value);
104 bool Replace(int index, uint32_t value);
105 bool Replace(int index, int64_t value);
106 bool Replace(int index, double value);
107 bool Replace(int index, const char* value);
108 bool Replace(int index, const Value& value);
129 static Json2::Value CreateBool(const bool value);
130 static Json2::Value CreateString(const std::string& value);
131 static Json2::Value DepthCopy(const Json2::Value& value);