HomeSort by relevance Sort by last modified time
    Searched defs:PPOpts (Results 1 - 12 of 12) sorted by null

  /external/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 142 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
143 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
145 PPOpts.RemappedFilesKeepOriginalName = false;
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 141 PreprocessorOptions PPOpts;
142 remapper.applyMappings(PPOpts);
144 for (const auto &RB : PPOpts.RemappedFileBuffers)
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 176 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
177 if (!PPOpts.ImplicitPCHInclude.empty()) {
186 PPOpts.ImplicitPCHInclude, FileMgr, PCHContainerRdr, *Diags);
188 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
189 PPOpts.ImplicitPCHInclude.clear();
419 PreprocessorOptions PPOpts;
420 remapper.applyMappings(PPOpts);
421 remap = PPOpts.RemappedFiles;
  /external/clang/lib/Frontend/
FrontendAction.cpp 264 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
265 StringRef PCHInclude = PPOpts.ImplicitPCHInclude;
279 PPOpts.ImplicitPCHInclude = Dir->path();
CompilerInstance.cpp 297 const PreprocessorOptions &PPOpts = getPreprocessorOpts();
301 if (!PPOpts.TokenCache.empty())
302 PTHMgr = PTHManager::Create(PPOpts.TokenCache, getDiagnostics());
323 if (PPOpts.DetailedRecord)
328 PP->getFileManager(), PPOpts);
331 InitializePreprocessor(*PP, PPOpts, getPCHContainerReader(),
    [all...]
ASTUnit.cpp 250 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
251 for (const auto &RB : PPOpts.RemappedFileBuffers)
687 PreprocessorOptions *PPOpts = new PreprocessorOptions();
690 PPOpts->addRemappedFile(RemappedFile.first, RemappedFile.second);
698 new Preprocessor(PPOpts, AST->getDiagnostics(), AST->ASTFileLangOpts,
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 170 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts = new PreprocessorOptions();
171 Preprocessor PP(PPOpts, Diags, LangOpts, SourceMgr, HeaderInfo, ModLoader,
  /external/clang/tools/libclang/
Indexing.cpp 419 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
421 if (!PPOpts.ImplicitPCHInclude.empty()) {
423 CI.getFileManager().getFile(PPOpts.ImplicitPCHInclude));
606 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
607 PPOpts.AllowPCHWithCompilerErrors = true;
620 PPOpts.DetailedRecord = true;
624 PPOpts.DetailedRecord = false;
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 97 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts;
646 Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
678 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; }
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 123 const PreprocessorOptions &PPOpts, bool Complain,
125 return First->ReadPreprocessorOptions(PPOpts, Complain,
127 Second->ReadPreprocessorOptions(PPOpts, Complain, SuggestedPredefines);
454 collectMacroDefinitions(const PreprocessorOptions &PPOpts,
457 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
458 StringRef Macro = PPOpts.Macros[I].first;
459 bool IsUndef = PPOpts.Macros[I].second;
493 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
501 collectMacroDefinitions(PPOpts, ASTFileMacros);
557 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines)
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]

Completed in 318 milliseconds