Home
last modified time | relevance | path

Searched refs:JSONScopedPrinter (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DScopedPrinter.cpp38 JSONScopedPrinter::JSONScopedPrinter( in JSONScopedPrinter() function in llvm::JSONScopedPrinter
/llvm-project-15.0.7/llvm/unittests/Support/
H A DScopedPrinterTest.cpp23 JSONScopedPrinter PrettyPrintWriter(OS, /*PrettyPrint=*/true); in TEST()
24 JSONScopedPrinter NoPrettyPrintWriter(OS, /*PrettyPrint=*/false); in TEST()
41 JSONScopedPrinter DictScopeWriter(OS, /*PrettyPrint=*/false, in TEST()
48 JSONScopedPrinter ListScopeWriter(OS, /*PrettyPrint=*/false, in TEST()
55 JSONScopedPrinter NoScopeWriter(OS, /*PrettyPrint=*/false); in TEST()
66 JSONScopedPrinter JSONWriter;
114 EXPECT_TRUE(JSONScopedPrinter::classof(&JSONWriter)); in TEST_F()
116 EXPECT_FALSE(JSONScopedPrinter::classof(&Writer)); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DScopedPrinter.h514 class JSONScopedPrinter : public ScopedPrinter {
539 JSONScopedPrinter(raw_ostream &OS, bool PrettyPrint = false,
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp603 return std::make_unique<JSONScopedPrinter>( in createWriter()