Home
last modified time | relevance | path

Searched refs:get_edit_distance (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dspellcheck.c38 get_edit_distance (const char *s, int len_s, in get_edit_distance() function
132 get_edit_distance (const char *s, const char *t) in get_edit_distance() function
134 return get_edit_distance (s, strlen (s), t, strlen (t)); in get_edit_distance()
207 edit_distance_t actual = get_edit_distance (a, b); in test_get_edit_distance_one_way()
459 = get_edit_distance (test_data[i], test_data[j]); in test_metric_conditions()
469 = get_edit_distance (test_data[j], test_data[i]); in test_metric_conditions()
476 = get_edit_distance (test_data[i], test_data[k]); in test_metric_conditions()
478 = get_edit_distance (test_data[j], test_data[k]); in test_metric_conditions()
H A Dspellcheck.h28 get_edit_distance (const char *s, int len_s,
32 get_edit_distance (const char *s, const char *t);
132 = get_edit_distance (m_goal, m_goal_len,
H A Dspellcheck-tree.c33 get_edit_distance (tree ident_s, tree ident_t) in get_edit_distance() function
38 return get_edit_distance (IDENTIFIER_POINTER (ident_s), in get_edit_distance()
H A Dspellcheck-tree.h28 get_edit_distance (tree ident_s, tree ident_t);
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dspellcheck.cc46 get_edit_distance (const char *s, int len_s, in get_edit_distance() function
147 get_edit_distance (const char *s, const char *t) in get_edit_distance() function
149 return get_edit_distance (s, strlen (s), t, strlen (t)); in get_edit_distance()
222 edit_distance_t actual = get_edit_distance (a, b); in test_get_edit_distance_one_way()
499 = get_edit_distance (test_data[i], test_data[j]); in test_metric_conditions()
509 = get_edit_distance (test_data[j], test_data[i]); in test_metric_conditions()
H A Dspellcheck.h28 get_edit_distance (const char *s, int len_s,
32 get_edit_distance (const char *s, const char *t);
132 = get_edit_distance (m_goal, m_goal_len,
H A Dspellcheck-tree.cc33 get_edit_distance (tree ident_s, tree ident_t) in get_edit_distance() function
38 return get_edit_distance (IDENTIFIER_POINTER (ident_s), in get_edit_distance()
H A Dspellcheck-tree.h28 get_edit_distance (tree ident_s, tree ident_t);
H A DChangeLog-201819910 (get_edit_distance): ...this, and update for underlying renaming.
19912 (get_edit_distance): ...this.
19914 (get_edit_distance): ...this. Convert from Levenshtein distance
19930 (get_edit_distance): ...this.
H A DChangeLog-202020704 (get_edit_distance): Recognize case changes.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dmisc.c415 edit_distance_t dist = get_edit_distance (typo, tl, *cand, in gfc_closest_fuzzy_match()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dmisc.cc417 edit_distance_t dist = get_edit_distance (typo, tl, *cand, in gfc_closest_fuzzy_match()
H A DChangeLog-20181385 levenshtein_distance to get_edit_distance.