HomeSort by relevance Sort by last modified time
    Searched defs:COMPOSING (Results 1 - 2 of 2) sorted by null

  /external/smack/src/org/jivesoftware/smackx/packet/
MessageEvent.java 50 * <li>Composing<br>
51 * In threaded chat conversations, this indicates that the recipient is composing a reply to a
62 public static final String COMPOSING = "composing";
70 private boolean composing = false; field in class:MessageEvent
97 * when the receiver is composing a reply.
98 * When the message is a notification returns if the receiver of the message is composing a
101 * @return true if the sender is requesting to be notified when composing or when notifying
102 * that the receiver of the message is composing a reply
105 return composing;
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 51 static final Object COMPOSING = new ComposingText();
77 text.removeSpan(COMPOSING);
99 if (o == COMPOSING) {
115 text.setSpan(COMPOSING, start, end,
120 return text.getSpanStart(COMPOSING);
124 return text.getSpanEnd(COMPOSING);
129 * returns its own fake editable that is just used for composing text;
191 * Default implementation replaces any existing composing text with
226 // ignore the composing text.
263 * The default implementation removes the composing state from th
    [all...]

Completed in 175 milliseconds