Searched refs:data (Results 451 - 475 of 660) sorted by relevance

<<11121314151617181920>>

/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifTag.java96 // Actual data count in tag (should be number of elements in value array)
138 * Gets the element size of the given data type in bytes.
178 * Gets the data type of this tag
194 * Gets the total data size in bytes of the value of this tag.
250 long[] data = new long[value.length];
252 data[i] = value[i];
254 mValue = data;
322 * <li>The data type is not {@link #TYPE_ASCII} or {@link #TYPE_UNDEFINED}.</li>
520 * method will fail if the data type is not {@link #TYPE_ASCII} or the
785 * @exception IllegalArgumentException if the data typ
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java151 * Reload the data so that the user can continue editing
173 * The loader is fetching data
178 * Not currently busy. We are waiting for the user to enter data
183 * The data is currently being saved. This is used to prevent more
259 // Used to temporarily store existing contact data during a rebind call (i.e. account switch)
399 // 2) not an orientation change. data needs to be loaded for first time.
513 // If we have already loaded data, we do not want to change it here to not confuse the user
685 * Some of old data are reused with new restriction enforced by the new account.
687 * @param oldState Old data being edited.
766 // bindEditors() can only bind views if there is data i
1679 onActivityResult(int requestCode, int resultCode, Intent data) argument
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifTag.java96 // Actual data count in tag (should be number of elements in value array)
138 * Gets the element size of the given data type in bytes.
178 * Gets the data type of this tag
194 * Gets the total data size in bytes of the value of this tag.
250 long[] data = new long[value.length];
252 data[i] = value[i];
254 mValue = data;
322 * <li>The data type is not {@link #TYPE_ASCII} or {@link #TYPE_UNDEFINED}.</li>
520 * method will fail if the data type is not {@link #TYPE_ASCII} or the
785 * @exception IllegalArgumentException if the data typ
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMoviePlayer.java522 byte[] data = cache.lookup(uri.hashCode());
523 if (data == null) return null;
526 new ByteArrayInputStream(data));
/packages/apps/Launcher3/src/com/android/gallery3d/exif/
H A DExifTag.java96 // Actual data count in tag (should be number of elements in value array)
138 * Gets the element size of the given data type in bytes.
178 * Gets the data type of this tag
194 * Gets the total data size in bytes of the value of this tag.
250 long[] data = new long[value.length];
252 data[i] = value[i];
254 mValue = data;
322 * <li>The data type is not {@link #TYPE_ASCII} or {@link #TYPE_UNDEFINED}.</li>
520 * method will fail if the data type is not {@link #TYPE_ASCII} or the
785 * @exception IllegalArgumentException if the data typ
[all...]
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifTag.java96 // Actual data count in tag (should be number of elements in value array)
138 * Gets the element size of the given data type in bytes.
178 * Gets the data type of this tag
194 * Gets the total data size in bytes of the value of this tag.
250 long[] data = new long[value.length];
252 data[i] = value[i];
254 mValue = data;
322 * <li>The data type is not {@link #TYPE_ASCII} or {@link #TYPE_UNDEFINED}.</li>
520 * method will fail if the data type is not {@link #TYPE_ASCII} or the
785 * @exception IllegalArgumentException if the data typ
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DSlideshowEditActivity.java325 Intent data) {
337 if ((data != null) && data.getBooleanExtra("done", false)) {
324 onActivityResult(int requestCode, int resultCode, Intent data) argument
/packages/apps/Settings/src/com/android/settings/
H A DCredentialStorage.java203 Log.e(TAG, "Failed to parse key data");
382 public void onActivityResult(int requestCode, int resultCode, Intent data) { argument
383 super.onActivityResult(requestCode, resultCode, data);
390 String password = data.getStringExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD);
H A DWirelessSettings.java443 public void onActivityResult(int requestCode, int resultCode, Intent data) { argument
445 Boolean isChoiceYes = data.getBooleanExtra(EXIT_ECM_RESULT, false);
450 super.onActivityResult(requestCode, resultCode, data);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DEmlAttachmentProvider.java57 * exception of the attachment raw data which is stored in the cache). When
71 * The buffer size used to copy data from cache to sd card.
303 final byte data[] = new byte[BUFFER_SIZE];
306 final int len = inputStream.read(data);
308 outputStream.write(data, 0, len);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAbstractConversationViewFragment.java417 ObjectCursor<ConversationMessage> data) {
420 if (mCursor == data) {
423 final MessageCursor messageCursor = (MessageCursor) data;
416 onLoadFinished(Loader<ObjectCursor<ConversationMessage>> loader, ObjectCursor<ConversationMessage> data) argument
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DStorageManager.java47 * a threshold limit (set in resource xml files), starts cleanup of the Downloads data dir
51 /** the max amount of space allowed to be taken up by the downloads data dir */
121 // do this check only once for every 1MB of downloaded data
189 * threshold typically is 10% of download data dir space quota.
215 // this download is going into downloads data dir. check space in that specific dir.
219 Log.w(Constants.TAG, "Downloads data dir: " + root +
237 * returns the number of bytes available in the downloads data dir
251 Log.i(Constants.TAG, "available space (in bytes) in downloads data dir: " + space);
328 final String data = cursor.getString(dataIndex);
329 if (TextUtils.isEmpty(data)) continu
[all...]
/packages/services/Telephony/src/com/android/phone/
H A DEmergencyDialer.java212 Uri data = getIntent().getData();
213 if (data != null && (Constants.SCHEME_TEL.equals(data.getScheme()))) {
/packages/apps/Calendar/src/com/android/calendar/
H A DExtensionsFactory.java129 public void send(String to, String msgId, Bundle data) {
/packages/apps/Camera2/src/com/android/camera/
H A DAndroidCameraManagerImpl.java706 final byte[] data, android.hardware.Camera camera) {
710 mCallback.onPictureTaken(data, mCamera);
748 final byte[] data, android.hardware.Camera camera) {
752 mCallback.onPreviewFrame(data, mCamera);
705 onPictureTaken( final byte[] data, android.hardware.Camera camera) argument
747 onPreviewFrame( final byte[] data, android.hardware.Camera camera) argument
/packages/apps/Camera2/src/com/android/camera/data/
H A DInProgressDataWrapper.java17 package com.android.camera.data;
31 * A wrapper class for in-progress data. Data that's still being processed
91 // No actions are allowed to modify the wrapped data.
99 // No actions are allowed to modify the wrapped data.
130 // Force the data type to be in-progress data.
/packages/apps/Dialer/src/com/android/dialer/list/
H A DPhoneFavoriteFragment.java124 public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor data) { argument
125 mCallLogAdapter.setMissedCalls(data);
141 public void onLoadFinished(Loader<Cursor> loader, Cursor data) { argument
143 mContactTileAdapter.setContactCursor(data);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterAlbumSet.java17 package com.android.gallery3d.data;
H A DFaceClustering.java17 package com.android.gallery3d.data;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
H A DUserPresetsManager.java1 package com.android.gallery3d.filtershow.data;
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetService.java30 import com.android.gallery3d.data.ContentListener;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DActionModeHandler.java39 import com.android.gallery3d.data.DataManager;
40 import com.android.gallery3d.data.MediaObject;
41 import com.android.gallery3d.data.MediaObject.PanoramaSupportCallback;
42 import com.android.gallery3d.data.Path;
H A DDetailsHelper.java25 import com.android.gallery3d.data.MediaDetails;
H A DMenuExecutor.java36 import com.android.gallery3d.data.DataManager;
37 import com.android.gallery3d.data.MediaItem;
38 import com.android.gallery3d.data.MediaObject;
39 import com.android.gallery3d.data.Path;
H A DTileImageViewAdapter.java29 import com.android.photos.data.GalleryBitmapPool;

Completed in 358 milliseconds

<<11121314151617181920>>