OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:commonsuffix
(Results
1 - 4
of
4
) sorted by null
/external/guava/guava-tests/test/com/google/common/base/
StringsTest.java
177
assertEquals("", Strings.
commonSuffix
("", ""));
178
assertEquals("", Strings.
commonSuffix
("abc", ""));
179
assertEquals("", Strings.
commonSuffix
("", "abc"));
180
assertEquals("", Strings.
commonSuffix
("abcde", "xyz"));
181
assertEquals("", Strings.
commonSuffix
("xyz", "abcde"));
182
assertEquals("", Strings.
commonSuffix
("xyz", "xyzabc"));
183
assertEquals("c", Strings.
commonSuffix
("abc", "ccccc"));
184
assertEquals("aa", Strings.
commonSuffix
("aa", "aaaaa"));
186
Strings.
commonSuffix
(new StringBuffer("xyzabc"), "xxxabc"));
190
Strings.
commonSuffix
("abc\uD8AB\uDCABdef", "xyz\uD8AB\uDCABdef"))
[
all
...]
/external/guava/guava/src/com/google/common/base/
Strings.java
214
public static String
commonSuffix
(CharSequence a, CharSequence b) {
/external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java
174
String
commonsuffix
= text1.substring(text1.length() - commonlength);
local
185
if (
commonsuffix
.length() != 0) {
186
diffs.addLast(new Diff(Operation.EQUAL,
commonsuffix
));
[
all
...]
/prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar
Completed in 2720 milliseconds