Searched defs:NumMatches (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1665 unsigned NumMatches = 0; local
1666 if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
1667 if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
1668 if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
1669 if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
1674 for (unsigned i = 0; i != NumMatches; ++i) {
1677 if (i + 1 == NumMatches)
/external/clang/lib/Sema/
H A DSemaOverload.cpp9190 int NumMatches = Resolver.getNumMatches(); local
9192 if (NumMatches == 0 && Complain) {
9198 else if (NumMatches > 1 && Complain)
9200 else if (NumMatches == 1) {

Completed in 62 milliseconds