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

1 2 3

  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
CrossProcessFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
DocumentaryFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
GrayscaleFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
LomoishFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
NegativeFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
PosterizeFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
SepiaFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
33 public void process(Photo src, Photo dst) {
AutoFixFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
ColorTemperatureFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
FaceliftFilter.java 21 import com.android.gallery3d.photoeditor.Photo;
41 public void process(Photo src, Photo dst) {
FillLightFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
FisheyeFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
GrainFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
HighlightFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
SaturationFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
ShadowFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
SharpenFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
StraightenFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
39 public void process(Photo src, Photo dst) {
TintFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
37 public void process(Photo src, Photo dst) {
VignetteFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
42 public void process(Photo src, Photo dst) {
DuotoneFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
39 public void process(Photo src, Photo dst) {
FlipFilter.java 22 import com.android.gallery3d.photoeditor.Photo;
39 public void process(Photo src, Photo dst) {
RedEyeFilter.java 23 import com.android.gallery3d.photoeditor.Photo;
43 public void process(Photo src, Photo dst) {
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
Photo.java 22 * Photo that holds a GL texture and all its methods must be only accessed from the GL thread.
24 public class Photo {
31 * Factory method to ensure every Photo instance holds a valid texture.
33 public static Photo create(Bitmap bitmap) {
34 return (bitmap != null) ? new Photo(
38 public static Photo create(int width, int height) {
39 return new Photo(RendererUtils.createTexture(), width, height);
42 private Photo(int texture, int width, int height) {
52 public boolean matchDimension(Photo photo) {
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_PhotoTest.java 24 import android.provider.ContactsContract.CommonDataKinds.Photo;
55 TestData photoData = rawContact.newDataRow(Photo.CONTENT_ITEM_TYPE)
56 .with(Photo.PHOTO, getTestPhotoData())
60 photoData.assertColumn(Photo.RAW_CONTACT_ID, rawContact.getId());
61 photoData.assertBlobColumnNotNull(Photo.PHOTO);
66 TestData photoData = rawContact.newDataRow(Photo.CONTENT_ITEM_TYPE)
67 .with(Photo.PHOTO, EMPTY_TEST_PHOTO_DATA
    [all...]

Completed in 175 milliseconds

1 2 3