Lines Matching defs:what

921             // If set, the input type overrides what was set using the deprecated singleLine flag.
1237 // now compute what (if any) algorithmic styling is needed
2661 * in the TextView beyond what is required for the text itself.
3771 * is useful since it matches what the user can see (obfuscated text or not).
5282 * Keep track of what the error was before doing the input
7064 // updateSpellCheckSpans. Result depends on what will be added (space or text)
7146 void spanChange(Spanned buf, Object what, int oldStart, int newStart, int oldEnd, int newEnd) {
7155 if (what == Selection.SELECTION_END) {
7166 if (what == Selection.SELECTION_START) {
7180 if ((buf.getSpanFlags(what)&Spanned.SPAN_INTERMEDIATE) == 0) {
7191 if (what instanceof UpdateAppearance || what instanceof ParagraphStyle ||
7192 what instanceof CharacterStyle) {
7206 if (MetaKeyKeyListener.isMetaTracker(buf, what)) {
7208 if (ims != null && MetaKeyKeyListener.isSelectingMetaTracker(buf, what)) {
7221 if (what instanceof ParcelableSpan) {
7245 + newStart + "-" + newEnd + " " + what);
7252 what instanceof SpellCheckSpan) {
7253 mEditor.mSpellChecker.onSpellCheckSpanRemoved((SpellCheckSpan) what);
7941 * Paste actions, depending on what this View supports.
8612 switch (msg.what) {
8750 public void onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) {
8752 + " st=" + st + " en=" + en + " what=" + what + ": " + buf);
8753 TextView.this.spanChange(buf, what, s, st, e, en);
8756 public void onSpanAdded(Spannable buf, Object what, int s, int e) {
8758 + " what=" + what + ": " + buf);
8759 TextView.this.spanChange(buf, what, -1, s, -1, e);
8762 public void onSpanRemoved(Spannable buf, Object what, int s, int e) {
8764 + " what=" + what + ": " + buf);
8765 TextView.this.spanChange(buf, what, s, -1, e, -1);