/packages/apps/Calendar/src/com/android/calendar/ |
CloudNotificationBackplane.java | 28 public void send(String to, String msgId, Bundle data) throws IOException;
|
ExtensionsFactory.java | 129 public void send(String to, String msgId, Bundle data) {
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
ViewHelper.java | 33 void showError(int msgId) { 35 v.setText(msgId);
|
CertInstaller.java | 449 private void toastErrorAndFinish(int msgId) { 450 Toast.makeText(this, msgId, Toast.LENGTH_SHORT).show();
|
/packages/apps/Exchange/src/com/android/exchange/ |
EasOutboxService.java | 257 * @param msgId the id of the message we're sending 261 private static OriginalMessageInfo getOriginalMessageInfo(Context context, long msgId) { 270 new String[] {Long.toString(msgId)}); 297 private void sendFailed(long msgId, int result) { 300 Message.update(mContext, Message.CONTENT_URI, msgId, cv); 330 * @param msgId the _id of the message to send 333 int sendMessage(File cacheDir, long msgId) throws IOException, MessagingException { 342 Message msg = Message.restoreMessageWithId(mContext, msgId); 355 referenceInfo = getOriginalMessageInfo(mContext, msgId); 465 sendFailed(msgId, result) [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
AddressUtils.java | 43 String msgId = uri.getLastPathSegment(); 46 builder.appendPath(msgId).appendPath("addr");
|
Recycler.java | 342 String msgId = uri.getLastPathSegment(); 347 "thread_id in (select thread_id from pdu where _id=" + msgId +
|
/packages/services/Telephony/src/com/android/phone/ |
TimeConsumingPreferenceActivity.java | 83 int msgId; 88 msgId = R.string.response_error; 92 msgId = R.string.radio_off_error; 97 msgId = R.string.fdn_check_failure; 102 msgId = R.string.exception_error; 109 builder.setMessage(getText(msgId));
|
FdnSetting.java | 361 int msgId; 364 msgId = R.string.oldPin2Label; 368 msgId = R.string.newPin2Label; 372 msgId = R.string.confirmPin2Label; 376 msgId = R.string.label_puk2_code; 382 mButtonChangePin2.setDialogMessage(getText(msgId) + "\n" + getText(strId)); 384 mButtonChangePin2.setDialogMessage(msgId);
|
CallFeaturesSetting.java | [all...] |
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
PduPersister.java | 356 private PduPart[] loadParts(long msgId) throws MmsException { 358 Uri.parse("content://mms/" + msgId + "/part"), 366 Log.v(TAG, "loadParts(" + msgId + "): no part to load."); 481 private void loadAddress(long msgId, PduHeaders headers) { 483 Uri.parse("content://mms/" + msgId + "/addr"), 555 long msgId = ContentUris.parseId(uri); 594 // Check whether 'msgId' has been assigned a valid value. 595 if (msgId == -1L) { 600 loadAddress(msgId, headers); 609 PduPart[] parts = loadParts(msgId); [all...] |
/frameworks/opt/mms/src/java/com/google/android/mms/util/ |
PduCache.java | 142 String msgId = uri.getLastPathSegment(); 143 return purgeSingleEntry(Uri.withAppendedPath(Mms.CONTENT_URI, msgId)); 199 String msgId = uri.getLastPathSegment(); 200 normalizedKey = Uri.withAppendedPath(Mms.CONTENT_URI, msgId);
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
RetryScheduler.java | 105 long msgId = ContentUris.parseId(uri); 109 uriBuilder.appendQueryParameter("message", String.valueOf(msgId)); 133 int respStatus = getResponseStatus(msgId); 160 respStatus = getRetrieveStatus(msgId); 231 Log.v(TAG, "Cannot found correct pending status for: " + msgId); 239 private int getResponseStatus(long msgID) { 242 Mms.Outbox.CONTENT_URI, null, Mms._ID + "=" + msgID, null, null); 257 private int getRetrieveStatus(long msgID) { 260 Mms.Inbox.CONTENT_URI, null, Mms._ID + "=" + msgID, null, null);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
EditSlideDurationActivity.java | 160 private void notifyUser(int msgId) { 163 Toast.makeText(this, msgId, Toast.LENGTH_SHORT).show();
|
DeliveryReportActivity.java | 137 long msgId = 0L; 140 msgId = icicle.getLong("message_id"); 143 if (msgId == 0L) { 144 msgId = intent.getLongExtra("message_id", 0L); 147 return msgId;
|
MessageListAdapter.java | 159 long msgId = cursor.getLong(mColumnsMap.mColumnMsgId); 161 MessageItem msgItem = getCachedMessageItem(type, msgId, cursor); 231 public MessageItem getCachedMessageItem(String type, long msgId, Cursor c) { 232 MessageItem item = mMessageItemCache.get(getKey(type, msgId));
|
ComposeMessageActivity.java | 534 * @param msgId Message id of the message. This is the _id of the sms or pdu row and is 541 private MessageItem getMessageItem(String type, long msgId, 543 return mMsgListAdapter.getCachedMessageItem(type, msgId, 663 long msgId = cursor.getLong(COLUMN_ID); 664 deletingLastItem = msgId == mMessageItem.mMsgId; [all...] |
/packages/apps/UnifiedEmail/assets/ |
script.js | 210 var msgId; 224 msgId = el.parentElement.id; 237 if (msgId) { 253 if (msgId) { 273 if (msgId) { 292 if (msgId) { 320 if (msgId) { 322 existingText = gTransformText[msgId]; 328 gTransformText[msgId] = transformText; 329 window.mail.onMessageTransform(msgId, transformText) [all...] |
/packages/apps/Mms/tests/src/com/android/mms/ui/ |
ComposeMessageActivityTests.java | 143 long msgId = cursor.getLong(mColumnsMap.mColumnMsgId); 145 MessageItem msgItem = mMsgListAdapter.getCachedMessageItem(type, msgId, cursor);
|
SmsTest.java | 256 long msgId = cursor.getLong(COLUMN_ID); 258 mActivity.mMsgListAdapter.getCachedMessageItem(type, msgId, cursor);
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsProvider.java | 699 String msgId = null; 708 msgId = uri.getLastPathSegment(); 747 if (msgId != null) { 748 extraSelection = Mms._ID + "=" + msgId; [all...] |
/external/chromium_org/chrome/third_party/chromevox/ |
chromeVoxChromeBackgroundScript.js | [all...] |
chromeVoxChromeOptionsScript.js | 53 cvox.KeyMap.readJSON_=function(a){var b=chrome.extension.getURL(a);if(!b)throw"Invalid path: "+a;a=new XMLHttpRequest;a.open("GET",b,!1);a.send();return a.responseText};cvox.KeyMap.prototype.resetModifier=function(){localStorage.cvoxKey=cvox.ChromeVox.modKeyStr};cvox.KeyMap.prototype.buildCommandToKey_=function(){for(var a=0;a<this.bindings_.length;a++){var b=this.bindings_[a];void 0==this.commandToKey_[b.command]&&(this.commandToKey_[b.command]=b.sequence)}};cvox.CommandStore={};cvox.CommandStore.categories=function(){var a={},b;for(b in cvox.CommandStore.CMD_WHITELIST){var c=cvox.CommandStore.CMD_WHITELIST[b];c.category&&(a[c.category]=!0)}b=[];for(var d in a)b.push(d);return b};cvox.CommandStore.messageForCommand=function(a){return(cvox.CommandStore.CMD_WHITELIST[a]||{}).msgId};cvox.CommandStore.categoryForCommand=function(a){return(cvox.CommandStore.CMD_WHITELIST[a]||{}).category}; 55 cvox.CommandStore.CMD_WHITELIST={toggleStickyMode:{announce:!1,msgId:"toggle_sticky_mode",disallowOOBE:!0,category:"modifier_keys"},toggleKeyPrefix:{announce:!1,skipInput:!0,msgId:"prefix_key",disallowOOBE:!0,category:"modifier_keys"},passThroughMode:{announce:!1,msgId:"pass_through_key_description",category:"modifier_keys"},stopSpeech:{announce:!1,disallowContinuation:!0,doDefault:!0,msgId:"stop_speech_key",category:"controlling_speech"},toggleChromeVox:{announce:!1,platformFilter:cvox.PlatformFilter.WML, 56 msgId:"toggle_chromevox_active",category:"controlling_speech"},decreaseTtsRate:{announce:!1,msgId:"decrease_tts_rate",category:"controlling_speech"},increaseTtsRate:{announce:!1,msgId:"increase_tts_rate",category:"controlling_speech"},decreaseTtsPitch:{announce:!1,msgId:"decrease_tts_pitch",category:"controlling_speech"},increaseTtsPitch:{announce:!1,msgId:"increase_tts_pitch",category:"controlling_speech"},decreaseTtsVolume:{announce:!1,msgId:"decrease (…) [all...] |
chromeVoxChromePageScript.js | [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatService.java | 47 RilMessage(int msgId, String rawData) { 48 mId = msgId;
|