Searched defs:after (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/text/
H A DTextWatcher.java27 * are about to be replaced by new text with length <code>after</code>.
32 int count, int after);
31 beforeTextChanged(CharSequence s, int start, int count, int after) argument
H A DDynamicLayout.java168 private void reflow(CharSequence s, int where, int before, int after) { argument
186 after += diff;
192 int look = TextUtils.indexOf(text, '\n', where + after);
196 look++; // we want the index after the \n
198 int change = look - (where + after);
200 after += change;
211 Object[] force = sp.getSpans(where, where + after,
223 after += diff;
227 if (en > where + after) {
230 int diff = en - (where + after);
410 reflow(CharSequence s, int where, int before, int after) argument
419 beforeTextChanged(CharSequence s, int where, int before, int after) argument
424 onTextChanged(CharSequence s, int where, int before, int after) argument
[all...]
H A DSpannableStringBuilder.java133 int after = mText.length - (mGapStart + mGapLength);
136 System.arraycopy(mText, mText.length - after,
137 newtext, newlen - after, after);
800 * Return the next offset after <code>start</code> but less than or
873 private TextWatcher[] sendTextWillChange(int start, int before, int after) { argument
878 recip[i].beforeTextChanged(this, start, before, after);
885 int after) {
889 recip[i].onTextChanged(this, start, before, after);
884 sendTextChange(TextWatcher[] recip, int start, int before, int after) argument
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberFormattingTextWatcher.java53 // If deleting the hyphen, also delete the char before or after that
70 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
78 && after == 0 // Deleting
/frameworks/base/core/tests/coretests/src/android/text/
H A DSpannedTest.java176 int after) { }
175 beforeTextChanged(CharSequence s, int start, int count, int after) argument
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java72 int count, int after) {
71 beforeTextChanged(CharSequence s, int start, int count, int after) argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java187 * after a layout.
241 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
242 super.onTextChanged(text, start, before, after);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DAccountUnlockScreen.java124 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
/frameworks/base/core/java/android/text/format/
H A DTime.java27 * a moment in time, specified with second precision. It is modelled after
398 * fields, call {@link #normalize(boolean)} after parsing.
518 * after adding or subtracting days or explicitly setting the "monthDay"
526 * or {@link #set(Time)} or after parsing a date string.
619 * Returns true if the time represented by this Time object occurs after
625 public boolean after(Time that) { method in class:Time
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java54 * only after a given number of characters defined by
777 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
799 if (DEBUG) Log.v(TAG, "after text changed: openBefore=" + mOpenBefore
1015 * are asynchronous, so the result may come back after enough text
1275 * the drop down as soon as possible after user opens up the search dialog, without
1514 * is propagated to our window only after the first list layout, therefore
1515 * after the list attempts to resurrect the selection.
H A DAbsListView.java273 * The desired offset to the top of the mMotionPosition view after a scroll
332 * bitmap cache after scrolling.
566 * called after the scroll has completed
794 * When the scrolling cache is enabled, the caches are kept after the
2203 // We may be here after stopping a fling and continuing to scroll.
4053 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
H A DTextView.java1099 * {@link #setFocusable} again after calling this to get the focusability
1159 * {@link #setFocusable} again after calling this to get the focusability
1274 * of text from showing. It is only valid to call this after measuring.
1307 * of text from showing. It is only valid to call this after measuring.
2503 // Display the error later, after the first layout pass
3284 * or if it the error was cleared by the widget after user input.
3762 // - onFocusChanged cannot start it when focus is given to a view with selected text (after
4445 // onKeyOther was added after 1.0, so if it isn't
4479 // onKeyOther was added after 1.0, so if it isn't
5626 * This has to be called after layou
6249 onTextChanged(CharSequence text, int start, int before, int after) argument
6295 sendBeforeTextChanged(CharSequence text, int start, int before, int after) argument
6310 sendOnTextChanged(CharSequence text, int start, int before, int after) argument
6339 handleTextChanged(CharSequence buffer, int start, int before, int after) argument
6489 beforeTextChanged(CharSequence buffer, int start, int before, int after) argument
6502 onTextChanged(CharSequence buffer, int start, int before, int after) argument
[all...]

Completed in 128 milliseconds