HomeSort by: relevance | last modified time | path
    Searched defs:PPOpts (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 153 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
154 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
156 PPOpts.RemappedFilesKeepOriginalName = false;
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ARCMT.cpp 178 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
179 if (!PPOpts.ImplicitPCHInclude.empty()) {
188 PPOpts.ImplicitPCHInclude, FileMgr, PCHContainerRdr, *Diags);
190 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
191 PPOpts.ImplicitPCHInclude.clear();
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendAction.cpp 726 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
727 StringRef PCHInclude = PPOpts.ImplicitPCHInclude;
743 PPOpts.ImplicitPCHInclude = std::string(Dir->path());
ASTUnit.cpp 264 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
265 for (const auto &RB : PPOpts.RemappedFileBuffers)
521 PreprocessorOptions &PPOpts;
530 HeaderSearchOptions &HSOpts, PreprocessorOptions &PPOpts,
534 : PP(PP), Context(Context), HSOpts(HSOpts), PPOpts(PPOpts),
557 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain,
559 this->PPOpts = PPOpts;
793 AST->PPOpts = std::make_shared<PreprocessorOptions>()
    [all...]
CompilerInstance.cpp 227 const PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
228 if (PPOpts.ImplicitPCHInclude.empty())
231 StringRef PCHInclude = PPOpts.ImplicitPCHInclude;
446 const PreprocessorOptions &PPOpts = getPreprocessorOpts();
463 if (PPOpts.DetailedRecord)
468 PP->getFileManager(), PPOpts);
471 InitializePreprocessor(*PP, PPOpts, getPCHContainerReader(),
1053 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1058 PPOpts.resetNonModularOptions();
1063 PPOpts.Macros.erase
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
ASTUnit.h 120 std::shared_ptr<PreprocessorOptions> PPOpts;
472 assert(PPOpts && "ASTUnit does not have preprocessor options");
473 return *PPOpts;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
Indexing.cpp 350 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
352 if (!PPOpts.ImplicitPCHInclude.empty()) {
353 auto File = CI.getFileManager().getFile(PPOpts.ImplicitPCHInclude);
590 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
591 PPOpts.AllowPCHWithCompilerErrors = true;
604 PPOpts.DetailedRecord = true;
608 PPOpts.DetailedRecord = false;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 1335 const PreprocessorOptions &PPOpts = PP.getPreprocessorOpts();
1338 Record.push_back(PPOpts.Macros.size());
1339 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
1340 AddString(PPOpts.Macros[I].first, Record);
1341 Record.push_back(PPOpts.Macros[I].second);
1345 Record.push_back(PPOpts.Includes.size());
1346 for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I)
1347 AddString(PPOpts.Includes[I], Record);
1350 Record.push_back(PPOpts.MacroIncludes.size());
1351 for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I
    [all...]
ASTReader.cpp 208 const PreprocessorOptions &PPOpts, bool Complain,
210 return First->ReadPreprocessorOptions(PPOpts, Complain,
212 Second->ReadPreprocessorOptions(PPOpts, Complain, SuggestedPredefines);
589 collectMacroDefinitions(const PreprocessorOptions &PPOpts,
592 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
593 StringRef Macro = PPOpts.Macros[I].first;
594 bool IsUndef = PPOpts.Macros[I].second;
630 /// \p PPOpts in SuggestedPredefines.
631 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
640 collectMacroDefinitions(PPOpts, ASTFileMacros)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 134 std::shared_ptr<PreprocessorOptions> PPOpts;
886 Preprocessor(std::shared_ptr<PreprocessorOptions> PPOpts,
917 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; }
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 2605 const auto &PPOpts = CGM.getPreprocessorOpts();
2608 for (auto &M : PPOpts.Macros) {

Completed in 49 milliseconds