Lines Matching defs:what

1222             // If set, the input type overrides what was set using the deprecated singleLine flag.
1600 // now compute what (if any) algorithmic styling is needed
3456 * in the TextView beyond what is required for the text itself.
4568 * is useful since it matches what the user can see (obfuscated text or not).
6144 * Keep track of what the error was before doing the input
8061 void spanChange(Spanned buf, Object what, int oldStart, int newStart, int oldEnd, int newEnd) {
8070 if (what == Selection.SELECTION_END) {
8082 if (what == Selection.SELECTION_START) {
8096 if ((buf.getSpanFlags(what)&Spanned.SPAN_INTERMEDIATE) == 0) {
8107 if (what instanceof UpdateAppearance || what instanceof ParagraphStyle ||
8108 what instanceof CharacterStyle) {
8122 if (MetaKeyKeyListener.isMetaTracker(buf, what)) {
8124 if (ims != null && MetaKeyKeyListener.isSelectingMetaTracker(buf, what)) {
8137 if (what instanceof ParcelableSpan) {
8161 + newStart + "-" + newEnd + " " + what);
8168 what instanceof SpellCheckSpan) {
8169 mEditor.mSpellChecker.onSpellCheckSpanRemoved((SpellCheckSpan) what);
9294 * Paste, Replace and Share actions, depending on what this View supports.
9333 * Paste and Replace actions, depending on what this View supports.
10175 public void onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) {
10177 + " st=" + st + " en=" + en + " what=" + what + ": " + buf);
10178 TextView.this.spanChange(buf, what, s, st, e, en);
10181 public void onSpanAdded(Spannable buf, Object what, int s, int e) {
10183 + " what=" + what + ": " + buf);
10184 TextView.this.spanChange(buf, what, -1, s, -1, e);
10187 public void onSpanRemoved(Spannable buf, Object what, int s, int e) {
10189 + " what=" + what + ": " + buf);
10190 TextView.this.spanChange(buf, what, s, -1, e, -1);