OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COMPOSING
(Results
1 - 3
of
3
) 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
...]
/external/smack/src/org/jivesoftware/smackx/provider/
MessageEventProvider.java
59
if (parser.getName().equals(MessageEvent.
COMPOSING
))
/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
225
// ignore the
composing
text.
262
* The default implementation removes the
composing
state from th
[
all
...]
Completed in 53 milliseconds