Home
last modified time | relevance | path

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

/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.cc35 using node::JSONWriter;
63 static void PrintVersionInformation(JSONWriter* writer);
64 static void PrintJavaScriptErrorStack(JSONWriter* writer,
68 static void PrintJavaScriptErrorProperties(JSONWriter* writer,
71 static void PrintNativeStack(JSONWriter* writer);
72 static void PrintResourceUsage(JSONWriter* writer);
73 static void PrintGCStatistics(JSONWriter* writer, Isolate* isolate);
74 static void PrintSystemInformation(JSONWriter* writer);
75 static void PrintLoadedLibraries(JSONWriter* writer);
76 static void PrintComponentVersions(JSONWriter* writer);
[all …]
Dnode_report_utils.cc8 using node::JSONWriter;
11 static constexpr auto null = JSONWriter::Null{};
17 JSONWriter* writer) { in ReportEndpoint()
53 static void ReportEndpoints(uv_handle_t* h, JSONWriter* writer) { in ReportEndpoints()
86 static void ReportPipeEndpoints(uv_handle_t* h, JSONWriter* writer) { in ReportPipeEndpoints()
122 static void ReportPath(uv_handle_t* h, JSONWriter* writer) { in ReportPath()
164 JSONWriter* writer = static_cast<JSONWriter*>(arg); in WalkHandle()
Djson_utils.h17 class JSONWriter {
19 JSONWriter(std::ostream& out, bool compact) in JSONWriter() function
/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/flutter/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/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 __anoneb0544320911::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/chromium/patch/
D0003-ohos-1115.patch15567 + base::JSONWriter::Write(result, &json);