OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shorttext
(Results
1 - 2
of
2
) sorted by null
/external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java
221
String
shorttext
= text1.length() > text2.length() ? text2 : text1;
local
222
int i = longtext.indexOf(
shorttext
);
228
diffs.add(new Diff(Operation.EQUAL,
shorttext
));
229
diffs.add(new Diff(op, longtext.substring(i +
shorttext
.length())));
232
longtext =
shorttext
= null; // Garbage collect.
710
String
shorttext
= text1.length() > text2.length() ? text2 : text1;
local
711
if (longtext.length() < 10 ||
shorttext
.length() < 1) {
716
String[] hm1 = diff_halfMatchI(longtext,
shorttext
,
719
String[] hm2 = diff_halfMatchI(longtext,
shorttext
,
744
* Does a substring of
shorttext
exist within longtext such that th
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MainKeyboardView.java
[
all
...]
Completed in 1018 milliseconds