Searched refs:repl (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/text/method/ |
D | QwertyKeyListener.java | 268 Replaced[] repl = content.getSpans(0, content.length(), in onKeyDown() local 270 for (int a = 0; a < repl.length; a++) in onKeyDown() 271 content.removeSpan(repl[a]); in onKeyDown() 325 Replaced[] repl = content.getSpans(selStart - consider, selStart, in onKeyDown() local 328 if (repl.length > 0) { in onKeyDown() 329 int st = content.getSpanStart(repl[0]); in onKeyDown() 330 int en = content.getSpanEnd(repl[0]); in onKeyDown() 331 String old = new String(repl[0].mText); in onKeyDown() 333 content.removeSpan(repl[0]); in onKeyDown() 423 Replaced[] repl = content.getSpans(0, content.length(), Replaced.class); in markAsReplaced() local [all …]
|
D | TextKeyListener.java | 173 QwertyKeyListener.Replaced[] repl = e.getSpans(0, e.length(), in clear() local 175 final int count = repl.length; in clear() 177 e.removeSpan(repl[i]); in clear()
|
/frameworks/base/core/java/android/text/ |
D | SpannableStringBuilder.java | 517 CharSequence repl = mFilters[i].filter(tb, tbstart, tbend, this, start, end); in replace() local 519 if (repl != null) { in replace() 520 tb = repl; in replace() 522 tbend = repl.length(); in replace()
|
D | Html.java | 1065 private static void end(Editable text, Class kind, Object repl) { in end() argument 1069 setSpanFromMark(text, obj, repl); in end()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessList.java | 1217 ByteBuffer repl = ByteBuffer.allocate(4 * 2); 1221 if (writeLmkd(buf, repl)) { 1222 int i = repl.getInt(); 1227 return new Integer(repl.getInt()); 1282 private static boolean writeLmkd(ByteBuffer buf, ByteBuffer repl) { 1302 if (writeLmkdCommandLS(buf) && (repl == null || readLmkdReplyLS(repl))) {
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | RecipientEditTextView.java | 2859 DrawableRecipientChip[] repl = getSpannable().getSpans(selStart, selStart, in onTextChanged() local 2861 if (repl.length > 0) { in onTextChanged() 2863 DrawableRecipientChip toDelete = repl[0]; in onTextChanged()
|