Searched refs:MaxSpecificity (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp164 unsigned MaxSpecificity = 0; variable
169 MaxSpecificity = std::max(MaxSpecificity, ThisSpecificity);
173 *Specificity = MaxSpecificity;
174 return MaxSpecificity > 0;
430 unsigned MaxSpecificity = 0; local
435 MaxSpecificity = std::max(MaxSpecificity, ThisSpecificity);
437 if (Specificity && MaxSpecificity > 0) {
438 *Specificity = MaxSpecificity;
[all...]
H A DRegistry.cpp603 unsigned MaxSpecificity = 0; local
611 if (MaxSpecificity < Specificity)
612 MaxSpecificity = Specificity;
621 if (!RetKinds.empty() && MaxSpecificity > 0) {
662 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity);

Completed in 108 milliseconds