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

  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 143 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
144 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
146 PPOpts.RemappedFilesKeepOriginalName = false;
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 138 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts = new PreprocessorOptions();
139 Preprocessor PP(PPOpts, Diags, LangOpts,
  /frameworks/compile/slang/
slang.cpp 212 llvm::IntrusiveRefCntPtr<clang::PreprocessorOptions> PPOpts =
214 mPP.reset(new clang::Preprocessor(PPOpts,
  /external/clang/lib/Frontend/
FrontendAction.cpp 240 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
241 StringRef PCHInclude = PPOpts.ImplicitPCHInclude;
254 PPOpts.ImplicitPCHInclude = Dir->path();
CompilerInstance.cpp 215 const PreprocessorOptions &PPOpts = getPreprocessorOpts();
219 if (!PPOpts.TokenCache.empty())
220 PTHMgr = PTHManager::Create(PPOpts.TokenCache, getDiagnostics());
241 if (PPOpts.DetailedRecord)
244 InitializePreprocessor(*PP, PPOpts, getHeaderSearchOpts(), getFrontendOpts());
792 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
797 PPOpts.resetNonModularOptions();
802 PPOpts.Macros.erase(std::remove_if(PPOpts.Macros.begin(), PPOpts.Macros.end()
    [all...]
ASTUnit.cpp 249 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
251 FB = PPOpts.remapped_file_buffer_begin(),
252 FBEnd = PPOpts.remapped_file_buffer_end();
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 139 PreprocessorOptions PPOpts;
140 remapper.applyMappings(PPOpts);
142 for (unsigned i = 0, e = PPOpts.RemappedFileBuffers.size(); i != e; ++i) {
143 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second;
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 178 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
179 if (!PPOpts.ImplicitPCHInclude.empty()) {
188 ASTReader::getOriginalSourceFile(PPOpts.ImplicitPCHInclude,
191 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
192 PPOpts.ImplicitPCHInclude.clear();
425 PreprocessorOptions PPOpts;
426 remapper.applyMappings(PPOpts);
427 remap = PPOpts.RemappedFiles;
455 PreprocessorOptions PPOpts;
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 429 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
431 if (!PPOpts.ImplicitPCHInclude.empty()) {
433 CI.getFileManager().getFile(PPOpts.ImplicitPCHInclude));
640 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
641 PPOpts.AllowPCHWithCompilerErrors = true;
652 PPOpts.DetailedRecord = true;
656 PPOpts.DetailedRecord = false;
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 87 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts;
407 Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
427 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; }
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 217 static void collectMacroDefinitions(const PreprocessorOptions &PPOpts,
220 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
221 StringRef Macro = PPOpts.Macros[I].first;
222 bool IsUndef = PPOpts.Macros[I].second;
256 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
263 collectMacroDefinitions(PPOpts, ASTFileMacros);
319 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines) {
332 if (std::find(PPOpts.Includes.begin(), PPOpts.Includes.end(), File)
333 != PPOpts.Includes.end()
    [all...]

Completed in 1118 milliseconds