HomeSort by relevance Sort by last modified time
    Searched refs:photo (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /packages/apps/UnifiedEmail/src/com/android/mail/
ContactInfo.java 26 public final Bitmap photo; field in class:ContactInfo
36 public ContactInfo(Uri contactUri, Bitmap photo) {
37 this(contactUri, null, photo);
40 private ContactInfo(Uri contactUri, byte[] photoBytes, Bitmap photo) {
43 this.photo = photo;
48 return "{photo=" + (photo != null ? photo : photoBytes) + "}";
  /external/opencv3/modules/photo/
opencl_kernels_photo.hpp 11 namespace photo namespace in namespace:cv::ocl
opencl_kernels_photo.cpp 10 namespace photo namespace in namespace:cv::ocl
  /external/opencv3/modules/photo/perf/
perf_main.cpp 11 CV_PERF_TEST_MAIN_WITH_IMPLS(photo, impls, perf::printCudaInfo())
  /frameworks/base/packages/Keyguard/scripts/
copy_profile_icons.sh 7 for photo in `adb $* shell ls /data/system/users | grep -v xml`
9 photo=${photo/$'\r'/}
10 adb shell mkdir /data/user/${user}/users/${photo}
11 adb pull /data/system/users/${photo}/photo.png
12 adb push photo.png /data/user/${user}/users/${photo}
  /packages/apps/Messaging/src/com/android/messaging/ui/photoviewer/
BuglePhotoViewActivity.java 19 import com.android.ex.photo.PhotoViewActivity;
20 import com.android.ex.photo.PhotoViewController;
BuglePhotoPageAdapter.java 23 import com.android.ex.photo.adapters.PhotoPagerAdapter;
24 import com.android.ex.photo.fragments.PhotoViewFragment;
BuglePhotoViewFragment.java 23 import com.android.ex.photo.PhotoViewCallbacks;
24 import com.android.ex.photo.fragments.PhotoViewFragment;
25 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 347 private double[] getCenter(View photo) {
348 float width = (float) ((Integer) photo.getTag(R.id.photo_width)).intValue();
349 float height = (float) ((Integer) photo.getTag(R.id.photo_height)).intValue();
350 double[] center = { photo.getX() + width / 2f,
351 - (photo.getY() + height / 2f) };
437 for (View photo: mOnTable) {
438 if (photo != getSelection()) {
439 dropOnTable(photo);
465 View photo = inflater.inflate(R.layout.photo, null) local
    [all...]
PhotoCarousel.java 149 public void onPostExecute(Bitmap photo) {
150 if (photo != null) {
151 mBitmapQueue.offer(photo);
184 Bitmap photo = mBitmapQueue.poll(); local
185 if (photo != null) {
187 int width = photo.getWidth();
188 int height = photo.getHeight();
191 destination.setImageBitmap(photo);
197 Bitmap old = mBitmapStore.put(destination, photo);
206 private void setScaleType(View photo) {
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 1 package com.android.ex.photo;
8 import com.android.ex.photo.adapters.PhotoPagerAdapter;
9 import com.android.ex.photo.fragments.PhotoViewFragment;
10 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
62 * Called when the cursor that contains the photo list data
65 * @param cursor the cursor containing the photo list data
ActionBarInterface.java 1 package com.android.ex.photo;
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/
ImageRotationCalculator.java 17 package com.android.camera.one.v2.photo;
PictureTaker.java 17 package com.android.camera.one.v2.photo;
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
ContactFetcher.java 17 package com.android.mail.photo;
  /packages/apps/Contacts/src/com/android/contacts/editor/
CompactContactEditorFragment.java 107 // Set up the photo widget
110 // If there is an updated full resolution photo apply it now, this will be the case if
111 // the user selects or takes a new photo, then rotates the device.
194 public void setPrimaryPhoto(CompactPhotoSelectionFragment.Photo photo) {
195 getContent().setPrimaryPhoto(photo);
197 // Update the photo ID we will try to match when selecting the photo to display
198 mPhotoId = photo.photoId;
237 final ArrayList<CompactPhotoSelectionFragment.Photo> photos = getContent().getPhotos()
    [all...]
CompactPhotoSelectionFragment.java 46 * Displays {@link Photo}s in a grid and calls back the host when one is clicked.
62 * Invoked when the user wants to change their photo.
64 void onPhotoSelected(Photo photo);
68 * Holds a photo {@link ValuesDelta} and {@link AccountType} information to draw
71 public static final class Photo implements Parcelable {
73 public static final Creator<Photo> CREATOR = new Creator<Photo>() {
75 public Photo createFromParcel(Parcel in) {
76 return new Photo(in)
223 final Photo photo = mPhotos.get(position); local
    [all...]
AggregationSuggestionView.java 88 ImageView photo = (ImageView) findViewById(R.id.aggregation_suggestion_photo); local
89 if (suggestion.photo != null) {
90 photo.setImageBitmap(BitmapFactory.decodeByteArray(
91 suggestion.photo, 0, suggestion.photo.length));
93 photo.setImageDrawable(ContactPhotoManager.getDefaultAvatarDrawableForContact(
  /packages/services/Telecomm/src/com/android/server/telecom/
ContactsAsyncHelper.java 37 * Helper class for loading contacts photo asynchronously.
51 * @param photo Drawable object obtained by the async load.
57 public void onImageLoadComplete(int token, Drawable photo, Bitmap photoIcon,
71 /** Handler run on a worker thread to load photo asynchronously. */
82 public Drawable photo; field in class:ContactsAsyncHelper.WorkerArgs
109 Log.e(this, e, "Error opening photo input stream");
113 args.photo = Drawable.createFromStream(inputStream,
118 args.photoIcon = getPhotoIconWhenAppropriate(args.context, args.photo);
123 args.photo = null;
142 args.listener.onImageLoadComplete(msg.what, args.photo, args.photoIcon
    [all...]
  /external/opencv3/modules/photo/misc/java/test/
PhotoTest.java 1 package org.opencv.test.photo;
6 import org.opencv.photo.Photo;
17 Photo.inpaint(gray255, gray0, dst, 3, Photo.INPAINT_TELEA);
  /frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
MainActivity.java 8 import com.android.ex.photo.Intents;
9 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
PhotoPagerLoader.java 18 package com.android.ex.photo.loaders;
25 import com.android.ex.photo.provider.PhotoContract;
28 * Loader for a set of photo IDs.
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Trace.java 17 package com.android.ex.photo.util;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
PhotoPagerAdapter.java 18 package com.android.ex.photo.adapters;
26 import com.android.ex.photo.Intents;
27 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
28 import com.android.ex.photo.fragments.PhotoViewFragment;
29 import com.android.ex.photo.provider.PhotoContract.PhotoViewColumns;
30 import com.android.ex.photo.provider.PhotoContract.PhotoQuery;
33 * Pager adapter for the photo view
  /external/opencv3/modules/java/src/
photo+Tonemap.java 5 package org.opencv.photo;

Completed in 370 milliseconds

1 2 3 4 5 6 7 8