Home | History | Annotate | Download | only in widget

Lines Matching refs:bufferType

546         int buffertype = 0;
598 buffertype = a.getInt(attr, buffertype);
881 BufferType bufferType = BufferType.EDITABLE;
972 bufferType = BufferType.SPANNABLE;
983 switch (buffertype) {
985 bufferType = BufferType.NORMAL;
988 bufferType = BufferType.SPANNABLE;
991 bufferType = BufferType.EDITABLE;
1018 if (bufferType == BufferType.NORMAL)
1019 bufferType = BufferType.SPANNABLE;
1090 setText(text, bufferType);
1264 * an argument of BufferType.SPANNABLE or BufferType.EDITABLE, you can cast
2808 * display buffer, upgrading it to BufferType.EDITABLE if it was
2817 * display buffer, upgrading it to BufferType.EDITABLE if it was
2822 setText(mText, BufferType.EDITABLE);
3161 public void setText(CharSequence text, BufferType type) {
3169 private void setText(CharSequence text, BufferType type,
3218 if (type == BufferType.EDITABLE || mInput != null || needEditableForNotification) {
3224 } else if (type == BufferType.SPANNABLE || mMovement != null) {
3233 if (type == BufferType.EDITABLE || text instanceof Spannable) {
3241 type = (type == BufferType.EDITABLE) ? BufferType.EDITABLE : BufferType.SPANNABLE;
3450 * Like {@link #setText(CharSequence, android.widget.TextView.BufferType)},
3453 * @see #setText(CharSequence, android.widget.TextView.BufferType)
3455 public final void setTextKeepState(CharSequence text, BufferType type) {
3476 public final void setText(int resid, BufferType type) {
4724 setText(getText(), selectable ? BufferType.SPANNABLE : BufferType.NORMAL);
5802 setText(text.text, TextView.BufferType.EDITABLE);
7311 setText(mText, BufferType.SPANNABLE);
8702 public enum BufferType {
11487 private BufferType mBufferType = BufferType.NORMAL;