Home
last modified time | relevance | path

Searched refs:RawStream (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/pseudo/benchmarks/
H A DBenchmark.cpp76 TokenStream RawStream = pseudo::lex(*SourceText, LangOpts); in lexAndPreprocess() local
77 auto DirectiveStructure = DirectiveTree::parse(RawStream); in lexAndPreprocess()
78 chooseConditionalBranches(DirectiveStructure, RawStream); in lexAndPreprocess()
80 cook(DirectiveStructure.stripDirectives(RawStream), LangOpts); in lexAndPreprocess()
107 TokenStream RawStream = clang::pseudo::lex(*SourceText, LangOpts); in preprocess() local
109 auto DirectiveStructure = DirectiveTree::parse(RawStream); in preprocess()
110 chooseConditionalBranches(DirectiveStructure, RawStream); in preprocess()
112 cook(DirectiveStructure.stripDirectives(RawStream), LangOpts)); in preprocess()
/llvm-project-15.0.7/clang-tools-extra/pseudo/fuzzer/
H A DFuzzer.cpp35 auto RawStream = lex(CodeStr, LangOpts); in operator ()() local
36 auto DirectiveStructure = DirectiveTree::parse(RawStream); in operator ()()
37 clang::pseudo::chooseConditionalBranches(DirectiveStructure, RawStream); in operator ()()
40 clang::pseudo::stripComments(cook(RawStream, LangOpts)); in operator ()()
/llvm-project-15.0.7/clang-tools-extra/pseudo/tool/
H A DClangPseudo.cpp106 llvm::Optional<clang::pseudo::TokenStream> RawStream; in main() local
111 RawStream = clang::pseudo::lex(SourceText, LangOpts); in main()
112 TokenStream *Stream = RawStream.getPointer(); in main()
114 auto DirectiveStructure = clang::pseudo::DirectiveTree::parse(*RawStream); in main()
115 clang::pseudo::chooseConditionalBranches(DirectiveStructure, *RawStream); in main()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DCrashRecoveryTest.cpp111 llvm::raw_string_ostream RawStream(Res); in TEST() local
112 PrintStackTrace(RawStream, 1); in TEST()
113 std::string Str = RawStream.str(); in TEST()
/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp67 raw_ostream *RawStream = in createOutputStream() local
69 auto OS = CoveragePrinter::OwnedStream(RawStream); in createOutputStream()