Searched refs:data (Results 276 - 300 of 1136) sorted by relevance

<<11121314151617181920>>

/packages/apps/Nfc/tests/src/com/android/nfc/
H A DMockLlcpSocket.java43 public void send(byte[] data) throws IOException { argument
49 mPairedSocket.mReceivedPackets.add(data);
/packages/apps/TV/tests/common/src/com/android/tv/
H A DMockTvApplication.java23 import com.android.tv.data.ChannelDataManager;
24 import com.android.tv.data.ProgramDataManager;
/packages/apps/TV/tests/unit/src/com/android/tv/data/
H A DChannelNumberTest.java16 package com.android.tv.data;
18 import static com.android.tv.data.ChannelNumber.parseChannelNumber;
41 * {@link com.android.tv.data.ChannelNumber#parseChannelNumber(java.lang.String)}.
56 * Test method for {@link ChannelNumber#compareTo(com.android.tv.data.ChannelNumber)}.
/packages/apps/TV/usbtuner/proto/
H A Dtrack.proto17 package com.android.usbtuner.data;
19 option java_package = "com.android.usbtuner.data";
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DMessagingException.java75 // Exception type-specific data
113 * Constructs a MessagingException with an exceptionType, a message, and data
116 * @param data exception-type specific data for the exception (or null)
118 public MessagingException(int exceptionType, String message, Object data) { argument
121 mExceptionData = data;
133 * Return the exception data. Will be null if not explicitly set.
135 * @return Returns the exception data.
/packages/inputmethods/LatinIME/native/jni/
H A Drun-tests.sh69 target_test_local=$ANDROID_PRODUCT_OUT/data/nativetest/$target_test_name/$target_test_name
70 target_test_device=/data/nativetest/$target_test_name/$target_test_name
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dbyte_array_view.h41 AK_FORCE_INLINE const uint8_t *data() const { function in class:latinime::ReadOnlyByteArrayView
73 AK_FORCE_INLINE uint8_t *data() const { function in class:latinime::ReadWriteByteArrayView
/packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
H A DBlockedNumberBackupAgent.java83 public void onRestore(BackupDataInput data, int appVersionCode, argument
87 while (data.readNextHeader()) {
88 BackedUpBlockedNumber blockedNumber = readBlockedNumberFromData(data);
199 private BackedUpBlockedNumber readBlockedNumberFromData(BackupDataInput data) { argument
202 id = Integer.parseInt(data.getKey());
204 Log.e(TAG, "Unexpected key found in restore: " + data.getKey());
209 byte[] byteArray = new byte[data.getDataSize()];
210 data.readEntityData(byteArray, 0, byteArray.length);
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DAlbumDataAdapter.java64 PhotoSource.AlbumData data = getItem(position);
65 return mSettings.isAlbumEnabled(data.id);
87 PhotoSource.AlbumData data = getItem(position);
93 checkBox.setTag(R.id.data_payload, data);
99 textView.setText(data.title);
174 final PhotoSource.AlbumData data =
178 mSettings.setAlbumEnabled(data.id, isChecked);
180 if (DEBUG) Log.i(TAG, data.title + " is " +
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DMessagingException.java74 // Exception type-specific data
112 * Constructs a MessagingException with an exceptionType, a message, and data
115 * @param data exception-type specific data for the exception (or null)
117 public MessagingException(int exceptionType, String message, Object data) { argument
120 mExceptionData = data;
132 * Return the exception data. Will be null if not explicitly set.
134 * @return Returns the exception data.
/packages/services/Telephony/src/com/android/phone/vvm/omtp/sms/
H A DLegacyModeSmsHandler.java44 Bundle data = intent.getExtras().getBundle(VoicemailContract.EXTRA_VOICEMAIL_SMS_FIELDS);
47 SyncMessage message = new SyncMessage(data);
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperActivity.java41 protected void onActivityResult(int requestCode, int resultCode, Intent data) { argument
42 super.onActivityResult(requestCode, resultCode, data);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFragment.java73 import com.android.messaging.datamodel.data.ConversationData;
74 import com.android.messaging.datamodel.data.ConversationData.ConversationDataListener;
75 import com.android.messaging.datamodel.data.ConversationMessageData;
76 import com.android.messaging.datamodel.data.ConversationParticipantsData;
77 import com.android.messaging.datamodel.data.DraftMessageData;
78 import com.android.messaging.datamodel.data.DraftMessageData.DraftMessageDataListener;
79 import com.android.messaging.datamodel.data.MessageData;
80 import com.android.messaging.datamodel.data.MessagePartData;
81 import com.android.messaging.datamodel.data.ParticipantData;
82 import com.android.messaging.datamodel.data
839 onConversationMessagesCursorUpdated(final ConversationData data, final Cursor cursor, final ConversationMessageData newestMessage, final boolean isSync) argument
1190 onConversationParticipantDataLoaded(final ConversationData data) argument
1208 onSubscriptionListDataLoaded(final ConversationData data) argument
1228 onActivityResult(final int requestCode, final int resultCode, final Intent data) argument
1638 onDraftChanged(final DraftMessageData data, final int changeFlags) argument
1649 onDraftAttachmentLimitReached(final DraftMessageData data) argument
[all...]
H A DComposeMessageView.java45 import com.android.messaging.datamodel.data.ConversationData;
46 import com.android.messaging.datamodel.data.ConversationData.ConversationDataListener;
47 import com.android.messaging.datamodel.data.ConversationData.SimpleConversationDataListener;
48 import com.android.messaging.datamodel.data.DraftMessageData;
49 import com.android.messaging.datamodel.data.DraftMessageData.CheckDraftForSendTask;
50 import com.android.messaging.datamodel.data.DraftMessageData.CheckDraftTaskCallback;
51 import com.android.messaging.datamodel.data.DraftMessageData.DraftMessageDataListener;
52 import com.android.messaging.datamodel.data.MessageData;
53 import com.android.messaging.datamodel.data.MessagePartData;
54 import com.android.messaging.datamodel.data
166 bind(final DraftMessageData data, final IComposeMessageViewHost host) argument
471 onDraftChanged(final DraftMessageData data, final int changeFlags) argument
512 onDraftAttachmentLimitReached(final DraftMessageData data) argument
[all...]
H A DConversationInputManager.java27 import com.android.messaging.datamodel.data.ConversationData;
28 import com.android.messaging.datamodel.data.ConversationData.ConversationDataListener;
29 import com.android.messaging.datamodel.data.ConversationData.SimpleConversationDataListener;
30 import com.android.messaging.datamodel.data.DraftMessageData;
31 import com.android.messaging.datamodel.data.DraftMessageData.DraftMessageSubscriptionDataProvider;
32 import com.android.messaging.datamodel.data.MessagePartData;
33 import com.android.messaging.datamodel.data.PendingAttachmentData;
34 import com.android.messaging.datamodel.data.SubscriptionListData.SubscriptionListEntry;
106 public void onConversationParticipantDataLoaded(ConversationData data) {
107 mConversationDataModel.ensureBound(data);
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSmsPdu.java60 * coded according to 24.011. The IEI is not to be used, as the fixed order of the data makes a type 4 LV
79 SmsPdu(byte[] data, int type){ argument
80 this.mData = data;
85 this.mUserDataMsgOffset = gsmSubmitGetTpUdOffset(); // Assume no user data header
89 * Create a pdu instance based on the data generated on this device.
90 * @param data
95 SmsPdu(byte[]data, int encoding, int type, int languageTable){
96 this.mData = data;
119 /** The user data message payload size in bytes - excluding the user data heade
603 decodePdu(byte[] data, int type) argument
618 gsmStripOffScAddress(byte[] data) argument
630 gsmParseSubmitPdu(byte[] data) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemUtils.java17 package com.android.camera.data;
32 * An utility class for data in content provider.
60 * @param is An input stream with the data of the bitmap.
146 // Not called often because most modes save image data non-rotated.
167 byte[] data = retriever.getEmbeddedPicture();
168 if (data != null) {
169 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallWidgetReceiver.java59 * A simple data class that contains per-item information that the adapter below can reference.
84 public WidgetListAdapter(Launcher l, String mimeType, ClipData data, argument
89 mClipData = data;
140 final WidgetMimeTypeHandlerData data = mActivities.get(position);
141 final ResolveInfo resolveInfo = data.resolveInfo;
142 final AppWidgetProviderInfo widgetInfo = data.widgetInfo;
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DShareIntentFragment.java36 import com.android.messaging.datamodel.data.ConversationListData;
37 import com.android.messaging.datamodel.data.ConversationListItemData;
38 import com.android.messaging.datamodel.data.ConversationListData.ConversationListDataListener;
135 public void onConversationListCursorUpdated(final ConversationListData data, argument
137 mListBinding.ensureBound(data);
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepMessage.java74 public static SnepMessage fromByteArray(byte[] data) throws FormatException { argument
75 return new SnepMessage(data);
78 private SnepMessage(byte[] data) throws FormatException { argument
79 ByteBuffer input = ByteBuffer.wrap(data);
98 System.arraycopy(data, ndefOffset, bytes, 0, ndefLength);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationsInOutboxTipView.java95 final ObjectCursor<Folder> data) {
96 if (data != null && data.moveToFirst()) {
98 final Folder folder = data.getModel();
103 } while (data.moveToNext());
/packages/experimental/NotificationLog/src/com/android/notificationlog/
H A DNotificationLogActivity.java89 Object[] data = (Object[]) evt.getData();
92 String pkg = (String) data[0];
93 int id = (Integer) data[1];
94 String tag = (String) data[2];
95 String text = (String) data[3];
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DConversationData.java17 package com.android.messaging.datamodel.data;
47 import com.android.messaging.datamodel.data.SubscriptionListData.SubscriptionListEntry;
107 public void onConversationMessagesCursorUpdated(ConversationData data, Cursor cursor, argument
109 public void onConversationMetadataUpdated(ConversationData data); argument
111 public void onConversationParticipantDataLoaded(ConversationData data); argument
112 public void onSubscriptionListDataLoaded(ConversationData data); argument
189 // Check if data still bound to the requesting ui element
203 public void onLoadFinished(final Loader<Cursor> generic, final Cursor data) { argument
206 // Check if data still bound to the requesting ui element
208 if (data
372 onLoadFinished(final Loader<Cursor> generic, final Cursor data) argument
425 onLoadFinished(final Loader<Cursor> generic, final Cursor data) argument
789 onConversationMessagesCursorUpdated(final ConversationData data, final Cursor cursor, @Nullable final ConversationMessageData newestMessage, final boolean isSync) argument
795 onConversationMetadataUpdated(final ConversationData data) argument
801 onConversationParticipantDataLoaded(final ConversationData data) argument
804 onSubscriptionListDataLoaded(final ConversationData data) argument
813 onConversationMessagesCursorUpdated(final ConversationData data, final Cursor cursor, @Nullable final ConversationMessageData newestMessage, final boolean isSync) argument
822 onConversationMetadataUpdated(final ConversationData data) argument
836 onConversationParticipantDataLoaded(final ConversationData data) argument
843 onSubscriptionListDataLoaded(final ConversationData data) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactFragment.java134 * we're loading data.
206 public void onLoadFinished(Loader<ContactData> loader, ContactData data) { argument
209 setData(data);
222 public void setData(ContactData data) { argument
223 mEntities = data.entities;
224 mStatuses = data.statuses;
226 mNameRawContactId = data.nameRawContactId;
227 mDisplayNameSource = data.displayNameSource;
229 mContactHeaderWidget.bindFromContactLookupUri(data.uri);
292 // Collapse similar data item
646 public TextView data; field in class:ContactFragment.ViewCache
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDecodeUtils.java17 package com.android.gallery3d.data;
30 import com.android.photos.data.GalleryBitmapPool;
168 public static Bitmap decodeIfBigEnough(JobContext jc, byte[] data, argument
174 BitmapFactory.decodeByteArray(data, 0, data.length, options);
185 BitmapFactory.decodeByteArray(data, 0, data.length, options));
249 public static Bitmap decodeUsingPool(JobContext jc, byte[] data, int offset, argument
255 ? findCachedBitmap(jc, data, offset, length, options) : null;
257 Bitmap bitmap = decode(jc, data, offse
300 findCachedBitmap(JobContext jc, byte[] data, int offset, int length, Options options) argument
[all...]

Completed in 880 milliseconds

<<11121314151617181920>>