Home
last modified time | relevance | path

Searched refs:JSONWriter (Results 1 – 25 of 27) sorted by relevance

12

/third_party/gn/src/base/json/
Djson_writer.h16 class JSONWriter {
45 JSONWriter(int options, std::string* json);
60 JSONWriter(const JSONWriter&) = delete;
61 JSONWriter& operator=(const JSONWriter&) = delete;
Djson_writer.cc28 bool JSONWriter::Write(const Value& node, std::string* json) { in Write()
33 bool JSONWriter::WriteWithOptions(const Value& node, in WriteWithOptions()
40 JSONWriter writer(options, json); in WriteWithOptions()
49 JSONWriter::JSONWriter(int options, std::string* json) in JSONWriter() function in base::JSONWriter
56 bool JSONWriter::BuildJSONString(const Value& node, size_t depth) { in BuildJSONString()
171 void JSONWriter::IndentLine(size_t depth) { in IndentLine()
/third_party/node/src/
Dnode_report.cc64 static void PrintVersionInformation(JSONWriter* writer);
65 static void PrintJavaScriptErrorStack(JSONWriter* writer,
69 static void PrintEmptyJavaScriptStack(JSONWriter* writer);
70 static void PrintJavaScriptStack(JSONWriter* writer,
73 static void PrintJavaScriptErrorProperties(JSONWriter* writer,
76 static void PrintNativeStack(JSONWriter* writer);
77 static void PrintResourceUsage(JSONWriter* writer);
78 static void PrintGCStatistics(JSONWriter* writer, Isolate* isolate);
79 static void PrintSystemInformation(JSONWriter* writer);
80 static void PrintLoadedLibraries(JSONWriter* writer);
[all …]
Dnode_report_utils.cc9 static constexpr auto null = JSONWriter::Null{};
15 JSONWriter* writer) { in ReportEndpoint()
51 static void ReportEndpoints(uv_handle_t* h, JSONWriter* writer) { in ReportEndpoints()
84 static void ReportPipeEndpoints(uv_handle_t* h, JSONWriter* writer) { in ReportPipeEndpoints()
119 static void ReportPath(uv_handle_t* h, JSONWriter* writer) { in ReportPath()
160 JSONWriter* writer = static_cast<JSONWriter*>(arg); in WalkHandle()
Dnode_v8.h48 JSONWriter* writer();
62 JSONWriter writer_;
Djson_utils.h25 class JSONWriter {
27 JSONWriter(std::ostream& out, bool compact) in JSONWriter() function
Dnode_v8.cc230 static void SetHeapStatistics(JSONWriter* writer, Isolate* isolate) { in SetHeapStatistics()
280 JSONWriter* writer = profiler->writer(); in BeforeGCCallback()
298 JSONWriter* writer = profiler->writer(); in AfterGCCallback()
329 JSONWriter* GCProfiler::writer() { in writer()
/third_party/cef/libcef/common/
Djson_impl.cc24 op |= base::JSONWriter::OPTIONS_OMIT_BINARY_VALUES; in GetJSONWriterOptions()
26 op |= base::JSONWriter::OPTIONS_OMIT_DOUBLE_TYPE_PRESERVATION; in GetJSONWriterOptions()
28 op |= base::JSONWriter::OPTIONS_PRETTY_PRINT; in GetJSONWriterOptions()
85 if (base::JSONWriter::WriteWithOptions( in CefWriteJSON()
/third_party/gn/src/gn/
Djson_project_writer.h27 FRIEND_TEST_ALL_PREFIXES(JSONWriter, ActionWithResponseFile);
28 FRIEND_TEST_ALL_PREFIXES(JSONWriter, ForEachWithResponseFile);
29 FRIEND_TEST_ALL_PREFIXES(JSONWriter, RustTarget);
Djson_project_writer.cc443 base::JSONWriter::WriteWithOptions(*description.get(), in GenerateJSON()
444 base::JSONWriter::OPTIONS_PRETTY_PRINT, in GenerateJSON()
498 base::JSONWriter::WriteWithOptions( in GenerateJSON()
499 toolchain, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json_dict); in GenerateJSON()
Djson_project_writer_unittest.cc14 using JSONWriter = TestWithScheduler; typedef
16 TEST_F(JSONWriter, ActionWithResponseFile) { in TEST_F() argument
Dcommand_args.cc250 base::JSONWriter::WriteWithOptions( in ListArgs()
251 *list.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &s); in ListArgs()
Dcommand_desc.cc685 base::JSONWriter::WriteWithOptions( in RunDesc()
686 *res.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &s); in RunDesc()
Dcommand_format.cc1226 base::JSONWriter::WriteWithOptions( in DoFormat()
1227 root->GetJSONNode(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &os); in DoFormat()
Danalyzer.cc227 if (!base::JSONWriter::Write(*value.get(), &output)) in OutputsToJSON()
/third_party/cef/libcef/browser/devtools/
Ddevtools_file_manager.cc193 base::JSONWriter::Write(*arg1, &json); in CallClientFunction()
196 base::JSONWriter::Write(*arg2, &json); in CallClientFunction()
199 base::JSONWriter::Write(*arg3, &json); in CallClientFunction()
Ddevtools_controller.cc64 if (!base::JSONWriter::Write(message, &protocol_message)) in ExecuteDevToolsMethod()
/third_party/skia/src/utils/
DSkShaperJSONWriter.h24 SkShaperJSONWriter(SkJSONWriter* JSONWriter, const char* utf8, size_t size);
DSkShaperJSONWriter.cpp17 SkShaperJSONWriter::SkShaperJSONWriter(SkJSONWriter* JSONWriter, const char* utf8, size_t size) in SkShaperJSONWriter() argument
18 : fJSONWriter{JSONWriter} in SkShaperJSONWriter()
/third_party/skia/modules/skparagraph/tests/
DSkShaperJSONWriter.h25 SkShaperJSONWriter(SkJSONWriter* JSONWriter, const char* utf8, size_t size);
DSkShaperJSONWriter.cpp24 SkShaperJSONWriter::SkShaperJSONWriter(SkJSONWriter* JSONWriter, const char* utf8, size_t size) in SkShaperJSONWriter() argument
25 : fJSONWriter{JSONWriter} in SkShaperJSONWriter()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp1906 class JSONWriter { class
1919 JSONWriter(llvm::raw_ostream &OS) : OS(OS) {} in JSONWriter() function in __anon6298e3330911::JSONWriter
1928 bool JSONWriter::containedIn(StringRef Parent, StringRef Path) { in containedIn()
1942 StringRef JSONWriter::containedPart(StringRef Parent, StringRef Path) { in containedPart()
1948 void JSONWriter::startDirectory(StringRef Path) { in startDirectory()
1959 void JSONWriter::endDirectory() { in endDirectory()
1967 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry()
1977 void JSONWriter::write(ArrayRef<YAMLVFSEntry> Entries, in write()
2052 JSONWriter(OS).write(Mappings, UseExternalNames, IsCaseSensitive, in write()
/third_party/cef/libcef/browser/views/
Dview_impl.h463 base::JSONWriter::WriteWithOptions(*info, 0, &json_string); in ToString()
/third_party/gn/src/base/
Dvalues.cc1298 JSONWriter::WriteWithOptions(value, JSONWriter::OPTIONS_PRETTY_PRINT, &json); in operator <<()
/third_party/node/doc/changelogs/
DCHANGELOG_V13.md337 * \[[`f284d599bb`](https://github.com/nodejs/node/commit/f284d599bb)] - **src**: move JSONWriter in…

12