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

  /external/grpc-grpc/test/cpp/qps/
parse_json.cc 56 grpc::string json_string; local
59 BinaryToJsonString(type_resolver.get(), type, binary, &json_string);
61 return json_string;
report.cc 167 grpc::string json_string = local
170 output_file << json_string; local
  /external/libchrome/base/json/
json_file_value_serializer.cc 37 std::string json_string; local
38 JSONStringValueSerializer serializer(&json_string);
46 int data_size = static_cast<int>(json_string.size());
47 if (base::WriteFile(json_file_path_, json_string.data(), data_size) !=
61 int JSONFileValueDeserializer::ReadFileToString(std::string* json_string) {
62 DCHECK(json_string);
63 if (!base::ReadFileToString(json_file_path_, json_string)) {
78 last_read_size_ = json_string->size();
103 std::string json_string; local
104 int error = ReadFileToString(&json_string);
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
gcs_config_ops.cc 86 string json_string; variable
87 OP_REQUIRES_OK(ctx, ParseScalarArgument<string>(ctx, "json", &json_string));
91 std::stringstream json_stream(json_string);
93 errors::InvalidArgument("Could not parse json: ", json_string));
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 137 std::string json_string = delegate_->GetSupportedFormats(); local
138 LOG(LS_INFO) << json_string;
142 if (!reader.parse(json_string, json_values)) {
  /external/grpc-grpc/test/core/security/
json_token_test.cc 96 char* json_string = test_json_key_str(nullptr); local
98 grpc_auth_json_key_create_from_string(json_string);
114 gpr_free(json_string);
126 char* json_string = test_json_key_str(non_closing_part3); local
128 grpc_auth_json_key_create_from_string(json_string);
130 gpr_free(json_string);
142 char* json_string = test_json_key_str(no_type_part3); local
144 grpc_auth_json_key_create_from_string(json_string);
146 gpr_free(json_string);
157 char* json_string = test_json_key_str(no_client_id_part3) local
171 char* json_string = test_json_key_str(no_client_email_part3); local
186 char* json_string = test_json_key_str(no_private_key_id_part3); local
377 char* json_string = test_json_key_str(nullptr); local
    [all...]

Completed in 628 milliseconds