Home
last modified time | relevance | path

Searched refs:Occurences (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp531 Occurences.emplace_back(KindIndex, Mention); in addVariableOccurence()
537 Occurences.emplace_back(Variables.size(), Mention); in addVariableOccurence()
565 assert(Other.Occurences.size() == Occurences.size()); in countPatternDifferences()
566 for (unsigned i = 0; i < Occurences.size(); ++i) { in countPatternDifferences()
567 auto ThisOccurence = Occurences[i]; in countPatternDifferences()
568 auto OtherOccurence = Other.Occurences[i]; in countPatternDifferences()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCloneDetection.h357 std::vector<VariableOccurence> Occurences; variable