Home | History | Annotate | Download | only in gcc

Lines Matching defs:candidates

44 /* Given TARGET, an identifier, and CANDIDATES, a vec of identifiers,
45 determine which element within CANDIDATES has the lowest edit
53 find_closest_identifier (tree target, const auto_vec<tree> *candidates)
60 FOR_EACH_VEC_ELT (*candidates, i, identifier)
80 auto_vec<tree> candidates;
83 ASSERT_EQ (NULL, find_closest_identifier (get_identifier (""), &candidates));
89 candidates.safe_push (apple);
90 candidates.safe_push (banana);
91 candidates.safe_push (cherry);
94 &candidates));
96 &candidates));
98 &candidates));
101 &candidates));