Searched refs:PPRec (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Edit/
H A DEditedSource.h30 const PPConditionalDirectiveRecord *PPRec; member in class:clang::edit::EditedSource
49 const PPConditionalDirectiveRecord *PPRec = 0,
51 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec),
58 return PPRec;
H A DCommit.h50 const PPConditionalDirectiveRecord *PPRec; member in class:clang::edit::Commit
62 const PPConditionalDirectiveRecord *PPRec = 0)
63 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(0),
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Edit/
H A DCommit.cpp40 PPRec(Editor.getPPCondDirectiveRecord()),
78 if (PPRec &&
79 PPRec->areInDifferentConditionalDirectiveRegion(loc, range.getBegin())) {
310 if (PPRec && PPRec->rangeIntersectsConditionalDirective(range.getAsRange()))
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp89 const PPConditionalDirectiveRecord *PPRec; member in class:__anon3088::ObjCMigrateASTConsumer
100 const PPConditionalDirectiveRecord *PPRec,
107 Remapper(remapper), FileMgr(fileMgr), PPRec(PPRec), PP(PP),
121 PPRec, false));
161 PPRec = new PPConditionalDirectiveRecord(CompInst->getSourceManager()); local
162 CompInst->getPreprocessor().addPPCallbacks(PPRec);
169 PPRec,
1752 PPRec = new PPConditionalDirectiveRecord(CI.getSourceManager()); local
1764 CI.getPreprocessor().addPPCallbacks(PPRec);
96 ObjCMigrateASTConsumer(StringRef migrateDir, unsigned astMigrateActions, FileRemapper &remapper, FileManager &fileMgr, const PPConditionalDirectiveRecord *PPRec, Preprocessor &PP, bool isOutputFile, ArrayRef<std::string> WhiteList) argument
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPreprocessingRecord.cpp25 InclusionDirective::InclusionDirective(PreprocessingRecord &PPRec, argument
35 = (char*)PPRec.Allocate(FileName.size() + 1, llvm::alignOf<char>());
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessingRecord.h233 InclusionDirective(PreprocessingRecord &PPRec,
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h434 void WritePreprocessorDetail(PreprocessingRecord &PPRec);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1891 PreprocessingRecord *PPRec = PP.getPreprocessingRecord(); local
1892 if (PPRec)
1893 WritePreprocessorDetail(*PPRec);
2032 if (PPRec)
2033 Record.push_back(MacroDefinitions[PPRec->findMacroDefinition(MI)]);
2093 void ASTWriter::WritePreprocessorDetail(PreprocessingRecord &PPRec) { argument
2094 if (PPRec.local_begin() == PPRec.local_end())
2120 = (Chain ? PPRec.getNumLoadedPreprocessedEntities() : 0)
2124 for (PreprocessingRecord::iterator E = PPRec
[all...]
H A DASTReader.cpp1201 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord(); local
1203 PPID = PPRec.getPPEntityID(GlobalID-1, /*isLoaded=*/true);
1205 cast_or_null<MacroDefinition>(PPRec.getPreprocessedEntity(PPID));
1207 PPRec.RegisterMacroDefinition(Macro, PPDef);
4128 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
4129 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
4166 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord(); local
4182 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
4187 ME = new (PPRec) MacroExpansion(Name, Range);
4189 ME = new (PPRec) MacroExpansio
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DASTUnit.cpp2851 if (PreprocessingRecord *PPRec = PP->getPreprocessingRecord())
2852 return std::make_pair(PPRec->local_begin(), PPRec->local_end());

Completed in 630 milliseconds