Lines Matching refs:str1
91 /// @param str1 the first string to consider.
97 compute_middle_snake(const char* str1, const char* str2,
101 int str1_size = strlen(str1), str2_size = strlen(str2);
104 default_eq_functor>(str1, str1 + str1_size,
117 /// @param str1 the first string to consider.
122 /// from the point (M,N) (with M and N being the length of str1 and
128 ses_len(const char* str1,
132 int str1_size = strlen(str1), str2_size = strlen(str2);
135 return ses_len(str1, str1 + str1_size,
144 /// @param str1 the first string to consider.
157 compute_lcs(const char* str1, const char* str2, int &ses_len, string& lcs)
162 compute_diff(str1, str1 + strlen(str1),
171 ABG_ASSERT(str1[x] == str2[y]);
172 lcs.push_back(str1[x]);
179 /// @param str1 the first string to consider.
187 compute_ses(const char* str1, const char* str2, edit_script& ses)
190 compute_diff(str1, str1 + strlen(str1),