HomeSort by relevance Sort by last modified time
    Searched refs:Fids (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 22 static void AddFID(FIDMap &FIDs, SmallVectorImpl<FileID> &V,
26 FIDMap::iterator I = FIDs.find(FID);
27 if (I != FIDs.end()) return;
28 FIDs[FID] = V.size();
32 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM,
35 FIDMap::const_iterator I = FIDs.find(FID);
36 assert(I != FIDs.end());
100 // Build up a set of FIDs that we use by scanning the locations and
103 SmallVector<FileID, 10> Fids;
109 AddFID(FM, Fids, SM, D.getLocation())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 84 static void AddFID(FIDMap &FIDs, SmallVectorImpl<FileID> &V,
88 FIDMap::iterator I = FIDs.find(FID);
89 if (I != FIDs.end()) return;
90 FIDs[FID] = V.size();
94 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM,
97 FIDMap::const_iterator I = FIDs.find(FID);
98 assert(I != FIDs.end());
367 // Build up a set of FIDs that we use by scanning the locations and
370 SmallVector<FileID, 10> Fids;
392 AddFID(FM, Fids, SM, piece->getLocation().asLocation())
    [all...]

Completed in 5251 milliseconds