Lines Matching defs:value
64 bool value;
65 bool result = node.GetAsBoolean(&value);
67 json_string_->append(value ? "true" : "false");
72 int value;
73 bool result = node.GetAsInteger(&value);
75 json_string_->append(IntToString(value));
80 std::string value;
81 bool result = node.GetAsString(&value);
83 EscapeJSONString(value, true, json_string_);
96 for (const auto& value : *list) {
97 if (omit_binary_values_ && value.type() == Value::Type::BINARY)
106 if (!BuildJSONString(value, depth))
129 if (omit_binary_values_ && itr.value().type() == Value::Type::BINARY) {
147 if (!BuildJSONString(itr.value(), depth + 1U))
164 DLOG_IF(ERROR, !omit_binary_values_) << "Cannot serialize binary value.";