Home | History | Annotate | Download | only in blink_gc_plugin

Lines Matching refs:json_

773         json_(0) {
870 json_ = JsonWriter::from(instance_.createOutputFile(
881 if (!err && json_) {
882 json_->OpenList();
884 json_ = 0;
903 if (json_) {
904 json_->CloseList();
905 delete json_;
906 json_ = 0;
1312 if (!json_)
1315 json_->OpenObject();
1316 json_->Write("name", info->record()->getQualifiedNameAsString());
1317 json_->Write("loc", GetLocString(info->record()->getLocStart()));
1318 json_->CloseObject();
1322 DumpEdgeVisitor(JsonWriter* json) : json_(json) {}
1328 json_->OpenObject();
1329 json_->Write("src", src->record()->getQualifiedNameAsString());
1330 json_->Write("dst", dst->record()->getQualifiedNameAsString());
1331 json_->Write("lbl", lbl);
1332 json_->Write("kind", kind);
1333 json_->Write("loc", loc);
1334 json_->Write("ptr",
1342 json_->CloseObject();
1374 JsonWriter* json_;
1380 DumpEdgeVisitor visitor(json_);
1838 JsonWriter* json_;