HomeSort by: relevance | last modified time | path
    Searched defs:PPRec (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Edit/
EditedSource.h 38 const PPConditionalDirectiveRecord *PPRec;
74 const PPConditionalDirectiveRecord *PPRec = nullptr)
75 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), IdentTable(LangOpts) {}
81 return PPRec;
Commit.h 54 const PPConditionalDirectiveRecord *PPRec;
65 const PPConditionalDirectiveRecord *PPRec = nullptr)
66 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec) {}
  /src/external/apache2/llvm/dist/clang/tools/libclang/
Indexing.cpp 149 PPConditionalDirectiveRecord &PPRec;
165 PPConditionalDirectiveRecord &ppRec,
167 : ParsedRegionsStorage(ParsedRegionsStorage), PPRec(ppRec), PP(pp),
212 SourceLocation RegionLoc = PPRec.findConditionalDirectiveRegionLoc(Loc);
220 PPRec.getSourceManager().getDecomposedLoc(RegionLoc);
364 auto *PPRec = new PPConditionalDirectiveRecord(PP.getSourceManager());
365 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(PPRec));
367 std::make_unique<ParsedSrcLocationsTracker>(*SKData, *PPRec, PP);
CIndex.cpp 239 PreprocessingRecord &PPRec,
253 const auto &Entities = PPRec.getPreprocessedEntitiesInRange(R);
255 PPRec, FID);
411 PreprocessingRecord &PPRec = *AU->getPreprocessor().getPreprocessingRecord();
421 return visitPreprocessedEntitiesInRange(SourceRange(B, E), PPRec,
431 SourceRange(B, AU->getEndOfPreambleFileID()), PPRec, *this);
435 SourceRange(AU->getStartOfMainFileID(), E), PPRec, *this);
438 return visitPreprocessedEntitiesInRange(SourceRange(B, E), PPRec, *this);
444 return visitPreprocessedEntities(PPRec.local_begin(), PPRec.local_end()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 101 const PPConditionalDirectiveRecord *PPRec;
119 const PPConditionalDirectiveRecord *PPRec,
124 Remapper(remapper), FileMgr(fileMgr), PPRec(PPRec), PP(PP),
136 PPRec));
199 PPRec = new PPConditionalDirectiveRecord(CompInst->getSourceManager());
200 CI.getPreprocessor().addPPCallbacks(std::unique_ptr<PPCallbacks>(PPRec));
204 MigrateDir, ObjCMigAction, Remapper, CompInst->getFileManager(), PPRec,
2012 PPRec = new PPConditionalDirectiveRecord(CI.getSourceManager());
2024 CI.getPreprocessor().addPPCallbacks(std::unique_ptr<PPCallbacks>(PPRec));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 2151 PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
2152 if (PPRec)
2153 WritePreprocessorDetail(*PPRec, MacroOffsetsBase);
2316 if (PPRec)
2317 Record.push_back(MacroDefinitions[PPRec->findMacroDefinition(MI)]);
2356 void ASTWriter::WritePreprocessorDetail(PreprocessingRecord &PPRec,
2358 if (PPRec.local_begin() == PPRec.local_end())
2384 = (Chain ? PPRec.getNumLoadedPreprocessedEntities() : 0)
2388 for (PreprocessingRecord::iterator E = PPRec.local_begin()
    [all...]
ASTReader.cpp 1781 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
1783 PPRec.getPPEntityID(GlobalID - 1, /*isLoaded=*/true);
1785 PPRec.getPreprocessedEntity(PPID));
1787 PPRec.RegisterMacroDefinition(Macro, PPDef);
5917 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
5918 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
5980 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
6000 PPRec.getLoadedPreprocessedEntity(GlobalID - 1));
6005 ME = new (PPRec) MacroExpansion(Name, Range);
6007 ME = new (PPRec) MacroExpansion(Def, Range)
    [all...]

Completed in 35 milliseconds