Lines Matching defs:error

3758             ss.error = getError();
3818 if (ss.error != null) {
3819 final CharSequence error = ss.error;
3820 // Display the error later, after the first layout pass
3823 setError(error);
4608 * Returns the error message that was set to be displayed with
4609 * {@link #setError}, or <code>null</code> if no error was set
4610 * or if it the error was cleared by the widget after user input.
4617 * Sets the right-hand compound drawable of the TextView to the "error"
4618 * icon and sets an error message that will be displayed in a popup when
4619 * the TextView has focus. The icon and error message will be reset to
4621 * <code>error</code> is <code>null</code>, the error message and icon
4625 public void setError(CharSequence error) {
4626 if (error == null) {
4633 setError(error, dr);
4639 * icon and sets an error message that will be displayed in a popup when
4640 * the TextView has focus. The icon and error message will be reset to
4643 * If the <code>error</code> is <code>null</code>, the error message will
4646 public void setError(CharSequence error, Drawable icon) {
4648 mEditor.setError(error, icon);
5849 * Keep track of what the error was before doing the input
5850 * so that if an input filter changed the error, we leave
5851 * that error showing. Otherwise, we take down whatever
5852 * error was showing when the user types something.
7568 * length <code>lengthBefore</code>. It is an error to attempt to make
9156 CharSequence error;
9170 if (error == null) {
9174 TextUtils.writeToParcel(error, out, flags);
9209 error = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);