Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessorOptions.h68 std::vector<std::string> MacroIncludes; variable
242 MacroIncludes.clear(); in resetNonModularOptions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DChainedIncludesSource.cpp135 CInvok->getPreprocessorOpts().MacroIncludes.clear(); in createChainedIncludesSource()
H A DInitPreprocessor.cpp1261 for (unsigned i = 0, e = InitOpts.MacroIncludes.size(); i != e; ++i) in InitializePreprocessor()
1262 AddImplicitIncludeMacros(Builder, InitOpts.MacroIncludes[i]); in InitializePreprocessor()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp738 for (unsigned I = 0, N = ExistingPPOpts.MacroIncludes.size(); I != N; ++I) { in checkPreprocessorOptions()
739 StringRef File = ExistingPPOpts.MacroIncludes[I]; in checkPreprocessorOptions()
740 if (std::find(PPOpts.MacroIncludes.begin(), PPOpts.MacroIncludes.end(), in checkPreprocessorOptions()
742 != PPOpts.MacroIncludes.end()) in checkPreprocessorOptions()
5891 PPOpts.MacroIncludes.push_back(ReadString(Record, Idx)); in ParsePreprocessorOptions()
H A DASTWriter.cpp1350 Record.push_back(PPOpts.MacroIncludes.size()); in WriteControlBlock()
1351 for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I) in WriteControlBlock()
1352 AddString(PPOpts.MacroIncludes[I], Record); in WriteControlBlock()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td2918 MarshallingInfoStringVector<PreprocessorOpts<"MacroIncludes">>;