Lines Matching refs:Matches
196 bool Matches; in compareNode() local
198 std::tie(C, Matches, Value) = in compareNode()
201 if (Matches) { in compareNode()
384 bool Matches; in nameToCodepoint() local
386 std::tie(Node, Matches, Value) = compareNode(0, Name, Strict, Buffer); in nameToCodepoint()
387 if (Matches) { in nameToCodepoint()
425 llvm::SmallVector<MatchForCodepointName> Matches; in nearestMatchesForCodepointName() local
426 Matches.reserve(MaxMatchesCount + 1); in nearestMatchesForCodepointName()
431 if (Matches.size() == MaxMatchesCount) in nearestMatchesForCodepointName()
445 Matches, Distance, in nearestMatchesForCodepointName()
451 if (It == Matches.end() && Matches.size() == MaxMatchesCount) in nearestMatchesForCodepointName()
455 Matches.insert(It, std::move(M)); in nearestMatchesForCodepointName()
456 if (Matches.size() > MaxMatchesCount) in nearestMatchesForCodepointName()
457 Matches.pop_back(); in nearestMatchesForCodepointName()
541 return Matches; in nearestMatchesForCodepointName()