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 87 static void AddFID(FIDMap &FIDs, SmallVectorImpl<FileID> &V,
91 FIDMap::iterator I = FIDs.find(FID);
92 if (I != FIDs.end()) return;
93 FIDs[FID] = V.size();
97 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM,
100 FIDMap::const_iterator I = FIDs.find(FID);
101 assert(I != FIDs.end());
350 // Build up a set of FIDs that we use by scanning the locations and
353 SmallVector<FileID, 10> Fids;
375 AddFID(FM, Fids, SM, piece->getLocation().asLocation())
    [all...]

Completed in 75 milliseconds