Lines Matching refs:score
4262 int score; member
4301 int score; in fuzzy_match_compute_score() local
4309 score = 100; in fuzzy_match_compute_score()
4315 score += penalty; in fuzzy_match_compute_score()
4319 score += UNMATCHED_LETTER_PENALTY * unmatched; in fuzzy_match_compute_score()
4332 score += SEQUENTIAL_BONUS; in fuzzy_match_compute_score()
4334 score += GAP_PENALTY * (currIdx - prevIdx); in fuzzy_match_compute_score()
4361 score += CAMEL_BONUS; in fuzzy_match_compute_score()
4365 score += PATH_SEPARATOR_BONUS; in fuzzy_match_compute_score()
4367 score += WORD_SEPARATOR_BONUS; in fuzzy_match_compute_score()
4372 score += FIRST_LETTER_BONUS; in fuzzy_match_compute_score()
4375 return score; in fuzzy_match_compute_score()
4527 int score = 0; in fuzzy_match() local
4563 score = 0; in fuzzy_match()
4565 matchCount = fuzzy_match_recursive(pat, str, 0, &score, str, len, NULL, in fuzzy_match()
4575 *outScore += score; in fuzzy_match()
4596 int v1 = ((fuzzyItem_T *)s1)->score; in fuzzy_match_item_compare()
4597 int v2 = ((fuzzyItem_T *)s2)->score; in fuzzy_match_item_compare()
4643 int score; in fuzzy_match_in_list() local
4649 ptrs[i].score = SCORE_NONE; in fuzzy_match_in_list()
4680 && fuzzy_match(itemstr, str, matchseq, &score, matches, in fuzzy_match_in_list()
4710 ptrs[i].score = score; in fuzzy_match_in_list()
4745 if (ptrs[i].score == SCORE_NONE) in fuzzy_match_in_list()
4760 if (ptrs[i].score == SCORE_NONE) in fuzzy_match_in_list()
4774 if (ptrs[i].score == SCORE_NONE) in fuzzy_match_in_list()
4776 if (list_append_number(l, ptrs[i].score) == FAIL) in fuzzy_match_in_list()