Lines Matching refs:possible_key
748 WORD possible_key; /* possible key, to ease searches */ in find_occurs_in_text() local
900 possible_key.start = cursor; in find_occurs_in_text()
901 possible_key.size = word_end - word_start; in find_occurs_in_text()
902 cursor += possible_key.size; in find_occurs_in_text()
904 if (possible_key.size > maximum_word_length) in find_occurs_in_text()
905 maximum_word_length = possible_key.size; in find_occurs_in_text()
914 while (line_scan < possible_key.start) in find_occurs_in_text()
925 if (line_scan > possible_key.start) in find_occurs_in_text()
939 if (ignore_file && search_table (&possible_key, &ignore_table)) in find_occurs_in_text()
941 if (only_file && !search_table (&possible_key, &only_table)) in find_occurs_in_text()
965 while (line_scan < possible_key.start) in find_occurs_in_text()
986 occurs_cursor->reference = line_start - possible_key.start; in find_occurs_in_text()
1001 occurs_cursor->key = possible_key; in find_occurs_in_text()
1002 occurs_cursor->left = context_start - possible_key.start; in find_occurs_in_text()
1003 occurs_cursor->right = context_end - possible_key.start; in find_occurs_in_text()