Home
last modified time | relevance | path

Searched refs:PreprocessorOptions (Results 1 – 25 of 25) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/include/clang/Lex/
H A DPreprocessorOptions.h44 class PreprocessorOptions : public RefCountedBase<PreprocessorOptions> {
143 PreprocessorOptions() : UsePredefines(true), DetailedRecord(false), in PreprocessorOptions() function
H A DPreprocessor.h59 class PreprocessorOptions; variable
96 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts;
469 Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
498 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; } in getPreprocessorOpts()
/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInvocation.h69 IntrusiveRefCntPtr<PreprocessorOptions> PreprocessorOpts;
91 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts()
92 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts()
H A DUtils.h49 class PreprocessorOptions; variable
65 const PreprocessorOptions &PPOpts,
H A DCompilerInstance.h281 PreprocessorOptions &getPreprocessorOpts() { in getPreprocessorOpts()
284 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts()
/minix3/external/bsd/llvm/dist/clang/include/clang/ARCMigrate/
H A DFileRemapper.h27 class PreprocessorOptions; variable
57 void applyMappings(PreprocessorOptions &PPOpts) const;
/minix3/external/bsd/llvm/dist/clang/unittests/Lex/
H A DPPCallbacksTest.cpp172 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts = new PreprocessorOptions(); in InclusionDirectiveFilenameRange()
207 Preprocessor PP(new PreprocessorOptions(), Diags, OpenCLLangOpts, SourceMgr, in PragmaOpenCLExtensionCall()
H A DPPConditionalDirectiveRecordTest.cpp99 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr, in TEST_F()
H A DLexerTest.cpp71 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr, in CheckLex()
/minix3/external/bsd/llvm/dist/clang/unittests/Basic/
H A DSourceManagerTest.cpp84 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr, in TEST_F()
201 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr, in TEST_F()
299 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr, in TEST_F()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp141 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in BeginInvocation()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp242 const PreprocessorOptions &InitOpts) { in InitializeFileRemapping()
290 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createPreprocessor()
869 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in compileModuleImpl()
893 PreprocessorOptions &ImportingPPOpts in compileModuleImpl()
896 ImportingPPOpts.FailedModules = new PreprocessorOptions::FailedModulesSet; in compileModuleImpl()
1248 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createModuleManager()
H A DASTUnit.cpp256 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit()
696 PreprocessorOptions *PPOpts = new PreprocessorOptions(); in LoadFromASTFile()
1106 PreprocessorOptions &PreprocessorOpts = Clang->getPreprocessorOpts(); in Parse()
1188 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts(); in ComputePreamble()
1349 PreprocessorOptions &PreprocessorOpts in getMainBufferWithPrecompiledPreamble()
1956 PreprocessorOptions &PPOpts = CI->getPreprocessorOpts(); in LoadFromCommandLine()
2019 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in Reparse()
2318 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete()
H A DFrontendAction.cpp263 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in BeginSourceFile()
H A DCompilerInvocation.cpp54 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase()
62 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
1668 static void ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args, in ParsePreprocessorArgs()
1964 const PreprocessorOptions &ppOpts = getPreprocessorOpts(); in getModuleHash()
H A DFrontendActions.cpp518 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions()
H A DInitPreprocessor.cpp888 const PreprocessorOptions &InitOpts, in InitializePreprocessor()
/minix3/external/bsd/llvm/dist/clang/include/clang/Serialization/
H A DASTReader.h79 class PreprocessorOptions; variable
168 virtual bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions()
234 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
262 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain,
1521 const PreprocessorOptions &PPOpts);
/minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/
H A DARCMT.cpp172 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts(); in createInvocationForMigration()
414 PreprocessorOptions PPOpts; in getFileRemappings()
H A DFileRemapper.cpp192 void FileRemapper::applyMappings(PreprocessorOptions &PPOpts) const { in applyMappings()
/minix3/external/bsd/llvm/dist/clang/tools/arcmt-test/
H A Darcmt-test.cpp139 PreprocessorOptions PPOpts; in printResult()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DIndexing.cpp419 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in CreateASTConsumer()
628 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts(); in clang_indexSourceFile_Impl()
/minix3/external/bsd/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp58 Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, in Preprocessor()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp116 const PreprocessorOptions &PPOpts, bool Complain, in ReadPreprocessorOptions()
433 collectMacroDefinitions(const PreprocessorOptions &PPOpts, in collectMacroDefinitions()
472 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts, in checkPreprocessorOptions()
473 const PreprocessorOptions &ExistingPPOpts, in checkPreprocessorOptions()
582 bool PCHValidator::ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions()
585 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts(); in ReadPreprocessorOptions()
4186 const PreprocessorOptions &ExistingPPOpts;
4192 const PreprocessorOptions &ExistingPPOpts, in SimplePCHValidator()
4210 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions()
4404 const PreprocessorOptions &PPOpts) { in isAcceptableASTFile()
[all …]
H A DASTWriter.cpp1348 const PreprocessorOptions &PPOpts = PP.getPreprocessorOpts(); in WriteControlBlock()