Home
last modified time | relevance | path

Searched refs:json_ (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/kash/
Dkernel_pack.cc91 json_ = static_cast<FlexArray *>(ptr); in ReadFromJsonFile()
93 if (json_ == nullptr) { in ReadFromJsonFile()
98 json_->len = bin_size; in ReadFromJsonFile()
100 (void)kernel_json.read(json_->contents, SizeToLong(json_->len)); in ReadFromJsonFile()
112 delete[] json_; in ReadFromJsonFile()
113 json_ = nullptr; in ReadFromJsonFile()
151 delete[] json_; in ReadFromJsonFile()
152 json_ = nullptr; in ReadFromJsonFile()
158 delete[] json_; in ReadFromJsonFile()
159 json_ = nullptr; in ReadFromJsonFile()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/
Dkernel.h132 KernelPack() : json_(nullptr), kernel_(nullptr) {} in KernelPack()
137 const FlexArray *GetJson() const { return json_; } in GetJson()
140 if (json_ != nullptr) { in ~KernelPack()
141 delete[] json_; in ~KernelPack()
142 json_ = nullptr; in ~KernelPack()
154 FlexArray *json_; variable
/third_party/grpc/src/core/ext/filters/client_channel/
Dservice_config.cc46 : json_string_(std::move(json_string)), json_(std::move(json)) { in ServiceConfig()
48 if (json_.type() != Json::Type::OBJECT) { in ServiceConfig()
56 ServiceConfigParser::ParseGlobalParameters(args, json_, &global_error); in ServiceConfig()
135 auto it = json_.object_value().find("methodConfig"); in ParsePerMethodParams()
136 if (it != json_.object_value().end()) { in ParsePerMethodParams()
Dservice_config.h103 Json json_; variable
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc145 json_(), in JsonStreamParser()
214 p_ = json_ = *scratch; in FinishParse()
216 p_ = json_ = leftover_; in FinishParse()
239 p_ = json_ = chunk; in ParseChunk()
831 const char* json_start = json_.data(); in ReportFailure()
834 std::min(p_start + kContextLength, json_start + json_.size()); in ReportFailure()
Djson_stream_parser.h238 StringPiece json_; variable
/third_party/ejdb/src/bindings/ejdb2_jni/src/
Dejdb2jni.c312 jstring json_, in Java_com_softmotions_ejdb2_EJDB2__1put() argument
320 const char *json = (*env)->GetStringUTFChars(env, json_, 0); in Java_com_softmotions_ejdb2_EJDB2__1put()
346 (*env)->ReleaseStringUTFChars(env, json_, json); in Java_com_softmotions_ejdb2_EJDB2__1put()