Lines Matching refs:results
84 MarkGlueResults, // Indicate which interior nodes have glue results.
85 CompleteMatch, // Finish a match and update the results.
86 MorphNodeTo // Build a node, finish a match and update results.
957 /// pushing the chain and glue results.
1146 /// CompleteMatchMatcher - Complete a match by replacing the results of the
1150 SmallVector<unsigned, 2> Results;
1153 CompleteMatchMatcher(ArrayRef<unsigned> results,
1155 : Matcher(CompleteMatch), Results(results.begin(), results.end()),
1158 unsigned getNumResults() const { return Results.size(); }
1159 unsigned getResult(unsigned R) const { return Results[R]; }
1169 return cast<CompleteMatchMatcher>(M)->Results == Results &&