Home
last modified time | relevance | path

Searched refs:MacroIncludes (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPreprocessorOptions.h69 std::vector<std::string> MacroIncludes; variable
250 MacroIncludes.clear(); in resetNonModularOptions()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DChainedIncludesSource.cpp135 CInvok->getPreprocessorOpts().MacroIncludes.clear(); in createChainedIncludesSource()
H A DInitPreprocessor.cpp1368 for (unsigned i = 0, e = InitOpts.MacroIncludes.size(); i != e; ++i) in InitializePreprocessor()
1369 AddImplicitIncludeMacros(Builder, InitOpts.MacroIncludes[i]); in InitializePreprocessor()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp1441 Record.push_back(PPOpts.MacroIncludes.size()); in WriteControlBlock()
1442 for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I) in WriteControlBlock()
1443 AddString(PPOpts.MacroIncludes[I], Record); in WriteControlBlock()
H A DASTReader.cpp770 for (unsigned I = 0, N = ExistingPPOpts.MacroIncludes.size(); I != N; ++I) { in checkPreprocessorOptions()
771 StringRef File = ExistingPPOpts.MacroIncludes[I]; in checkPreprocessorOptions()
772 if (llvm::is_contained(PPOpts.MacroIncludes, File)) in checkPreprocessorOptions()
5945 PPOpts.MacroIncludes.push_back(ReadString(Record, Idx)); in ParsePreprocessorOptions()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td3237 MarshallingInfoStringVector<PreprocessorOpts<"MacroIncludes">>;