Home
last modified time | relevance | path

Searched refs:ExistingPPOpts (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Serialization/
DASTReader.cpp500 const PreprocessorOptions &ExistingPPOpts, in checkPreprocessorOptions() argument
510 collectMacroDefinitions(ExistingPPOpts, ExistingMacros, &ExistingMacroNames); in checkPreprocessorOptions()
563 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines) { in checkPreprocessorOptions()
565 Diags->Report(diag::err_pch_undef) << ExistingPPOpts.UsePredefines; in checkPreprocessorOptions()
572 PPOpts.DetailedRecord != ExistingPPOpts.DetailedRecord) { in checkPreprocessorOptions()
580 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) { in checkPreprocessorOptions()
581 StringRef File = ExistingPPOpts.Includes[I]; in checkPreprocessorOptions()
582 if (File == ExistingPPOpts.ImplicitPCHInclude) in checkPreprocessorOptions()
594 for (unsigned I = 0, N = ExistingPPOpts.MacroIncludes.size(); I != N; ++I) { in checkPreprocessorOptions()
595 StringRef File = ExistingPPOpts.MacroIncludes[I]; in checkPreprocessorOptions()
[all …]
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp631 const PreprocessorOptions &ExistingPPOpts, in checkPreprocessorOptions() argument
642 collectMacroDefinitions(ExistingPPOpts, ExistingMacros, &ExistingMacroNames); in checkPreprocessorOptions()
695 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines && Validate) { in checkPreprocessorOptions()
697 Diags->Report(diag::err_pch_undef) << ExistingPPOpts.UsePredefines; in checkPreprocessorOptions()
704 PPOpts.DetailedRecord != ExistingPPOpts.DetailedRecord && Validate) { in checkPreprocessorOptions()
712 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) { in checkPreprocessorOptions()
713 StringRef File = ExistingPPOpts.Includes[I]; in checkPreprocessorOptions()
715 if (!ExistingPPOpts.ImplicitPCHInclude.empty() && in checkPreprocessorOptions()
716 !ExistingPPOpts.PCHThroughHeader.empty()) { in checkPreprocessorOptions()
725 if (File == ExistingPPOpts.ImplicitPCHInclude) in checkPreprocessorOptions()
[all …]