Searched defs:messages (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/compat/gingerbread/android/support/v4/app/
H A DNotificationCompatBase.java59 UnreadConversation build(String[] messages, argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompat.java144 List<MessagingStyle.Message> messages = style.getMessages();
145 for (int i = messages.size() - 1; i >= 0; i--) {
146 MessagingStyle.Message m = messages.get(i);
147 // Incoming messages have a non-empty sender.
152 if (!messages.isEmpty()) {
153 // No incoming messages, fall back to outgoing message
154 return messages.get(messages.size() - 1);
194 List<MessagingStyle.Message> messages = style.getMessages();
197 for (int i = messages
209 hasMessagesWithoutSender( List<MessagingStyle.Message> messages) argument
[all...]
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp67 void Harness::onMessages(const std::list<omx_message> &messages) { argument
69 for (std::list<omx_message>::const_iterator it = messages.cbegin(); it != messages.cend(); ) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java136 protected void markMessagesAsRead(ArrayList<byte[]> messages) { argument
137 if (messages == null) {
144 //shouldn't really happen, as messages are marked as read, only
152 int count = messages.size();
155 byte[] ba = messages.get(i);
280 * Retrieves all messages currently stored on Icc.
290 "Reading messages from Icc");
575 * @param messages List of message records from EF_SMS.
578 protected ArrayList<SmsRawData> buildValidRawData(ArrayList<byte[]> messages) { argument
579 int count = messages
[all...]
/frameworks/av/media/libmedia/
H A DIOMX.cpp1238 virtual void onMessages(const std::list<omx_message> &messages) { argument
1240 std::list<omx_message>::const_iterator it = messages.cbegin();
1242 while (it != messages.cend()) {
1273 std::list<omx_message> messages; local
1277 if (haveFence < 0) { // we use -1 to mark end of messages
1286 messages.push_back(msg);
1290 onMessages(messages);
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp90 void dispatch(std::list<omx_message> &messages);
130 void OMX::CallbackDispatcher::dispatch(std::list<omx_message> &messages) { argument
135 mOwner->onMessages(messages);
140 std::list<omx_message> messages; local
152 messages.swap(mQueue);
155 dispatch(messages);
H A DOMXNodeInstance.cpp1818 void OMXNodeInstance::onMessages(std::list<omx_message> &messages) { argument
1819 for (std::list<omx_message>::iterator it = messages.begin(); it != messages.end(); ) {
1821 messages.erase(it++);
1827 if (!messages.empty()) {
1828 mObserver->onMessages(messages);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java456 * @param countWaiting The number of messages waiting, if known. Use
458 * messages are waiting
476 // byte 1 is the number of voice messages waiting
1473 private void handleSmses(ArrayList<byte[]> messages) { argument
1474 int count = messages.size();
1477 byte[] ba = messages.get(i);
/frameworks/av/media/libstagefright/
H A DACodec.cpp133 virtual void onMessages(const std::list<omx_message> &messages) { argument
134 if (messages.empty()) {
141 for (std::list<omx_message>::const_iterator it = messages.cbegin();
142 it != messages.cend(); ++it) {
203 notify->setObject("messages", msgList);
245 // Handles a list of messages. Returns true iff messages were handled.
5685 CHECK(msg->findObject("messages", &obj));
/frameworks/base/core/java/android/app/
H A DNotification.java216 * notification, this could be the number of unread messages.
949 * {@link #extras} key: the username to be displayed for all messages sent by the user including
968 public static final String EXTRA_MESSAGES = "android.messages";
4619 * messages of varying types between any number of people.
4630 * .setContentTitle(&quot;2 new messages wtih &quot; + sender.toString())
4635 * .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender())
4636 * .addMessage(messages[1].getText(), messages[
5062 getBundleArrayForMessages(List<Message> messages) argument
6668 UnreadConversation(String[] messages, RemoteInput remoteInput, PendingIntent replyPendingIntent, PendingIntent readPendingIntent, String[] participants, long latestTimestamp) argument
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java364 * Notification key: the username to be displayed for all messages sent by the user
381 public static final String EXTRA_MESSAGES = "android.messages";
2015 * messages of varying types between any number of people.
2027 * .setContentTitle(&quot;2 new messages wtih &quot; + sender.toString())
2032 * .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender())
2033 * .addMessage(messages[1].getText(), messages[1].getTime(), messages[
2302 getBundleArrayForMessages(List<Message> messages) argument
3881 UnreadConversation(String[] messages, RemoteInput remoteInput, PendingIntent replyPendingIntent, PendingIntent readPendingIntent, String[] participants, long latestTimestamp) argument
[all...]

Completed in 350 milliseconds