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 143 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
144 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
146 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 177 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
178 if (!PPOpts.ImplicitPCHInclude.empty()) {
187 PPOpts.ImplicitPCHInclude, FileMgr, PCHContainerRdr, *Diags);
189 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
190 PPOpts.ImplicitPCHInclude.clear();
420 PreprocessorOptions PPOpts;
421 remapper.applyMappings(PPOpts);
422 remap = PPOpts.RemappedFiles;
  /external/clang/lib/Frontend/
FrontendAction.cpp 282 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
283 StringRef PCHInclude = PPOpts.ImplicitPCHInclude;
297 PPOpts.ImplicitPCHInclude = Dir->path();
CompilerInstance.cpp 299 const PreprocessorOptions &PPOpts = getPreprocessorOpts();
303 if (!PPOpts.TokenCache.empty())
304 PTHMgr = PTHManager::Create(PPOpts.TokenCache, getDiagnostics());
325 if (PPOpts.DetailedRecord)
330 PP->getFileManager(), PPOpts);
333 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 364 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
366 if (!PPOpts.ImplicitPCHInclude.empty()) {
368 CI.getFileManager().getFile(PPOpts.ImplicitPCHInclude));
559 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
560 PPOpts.AllowPCHWithCompilerErrors = true;
573 PPOpts.DetailedRecord = true;
577 PPOpts.DetailedRecord = false;
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 98 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts;
653 Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
685 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; }
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 124 const PreprocessorOptions &PPOpts, bool Complain,
126 return First->ReadPreprocessorOptions(PPOpts, Complain,
128 Second->ReadPreprocessorOptions(PPOpts, Complain, SuggestedPredefines);
460 collectMacroDefinitions(const PreprocessorOptions &PPOpts,
463 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
464 StringRef Macro = PPOpts.Macros[I].first;
465 bool IsUndef = PPOpts.Macros[I].second;
499 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
507 collectMacroDefinitions(PPOpts, ASTFileMacros);
563 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines)
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]

Completed in 1010 milliseconds