Home
last modified time | relevance | path

Searched refs:FilterRotateRepresentation (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DFilterRotateRepresentation.java29 public class FilterRotateRepresentation extends FilterRepresentation { class
32 private static final String TAG = FilterRotateRepresentation.class.getSimpleName();
64 public FilterRotateRepresentation(Rotation rotation) { in FilterRotateRepresentation() method in FilterRotateRepresentation
68 setFilterClass(FilterRotateRepresentation.class); in FilterRotateRepresentation()
76 public FilterRotateRepresentation(FilterRotateRepresentation r) { in FilterRotateRepresentation() method in FilterRotateRepresentation
81 public FilterRotateRepresentation() { in FilterRotateRepresentation() method in FilterRotateRepresentation
106 public void set(FilterRotateRepresentation r) { in set()
124 return new FilterRotateRepresentation(this); in copy()
129 if (!(representation instanceof FilterRotateRepresentation)) { in copyAllParameters()
138 if (!(a instanceof FilterRotateRepresentation)) { in useParametersFrom()
[all …]
DBaseFiltersManager.java310 new FilterRotateRepresentation(), in addTools()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageRotate.java26 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
32 private FilterRotateRepresentation mLocalRep = new FilterRotateRepresentation();
43 public void setFilterRotateRepresentation(FilterRotateRepresentation rep) { in setFilterRotateRepresentation()
44 mLocalRep = (rep == null) ? new FilterRotateRepresentation() : rep; in setFilterRotateRepresentation()
52 public FilterRotateRepresentation getFinalRepresentation() { in getFinalRepresentation()
DGeometryMathUtils.java33 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
34 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation.Rotation;
49 public Rotation rotation = FilterRotateRepresentation.getNil();
62 rotation = FilterRotateRepresentation.getNil(); in wipe()
69 return rotation == FilterRotateRepresentation.getNil() && in isNil()
267 if (r.getSerializationName() == FilterRotateRepresentation.SERIALIZATION_NAME) { in unpackGeometry()
268 out.rotation = ((FilterRotateRepresentation) r).getRotation(); in unpackGeometry()
DMasterImage.java35 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
429 if (newRepresentation instanceof FilterRotateRepresentation) { in onNewLook()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
DEditorRotate.java29 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
57 .getFilterWithSerializationName(FilterRotateRepresentation.SERIALIZATION_NAME)); in reflectCurrentFilter()
60 if (rep == null || rep instanceof FilterRotateRepresentation) { in reflectCurrentFilter()
61 mImageRotate.setFilterRotateRepresentation((FilterRotateRepresentation) rep); in reflectCurrentFilter()
64 + FilterRotateRepresentation.class.getSimpleName()); in reflectCurrentFilter()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DImagePreset.java35 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
272 if (a instanceof FilterRotateRepresentation in equals()
715 if (FilterRotateRepresentation.SERIALIZATION_NAME.equals(name)) { in creatFilterFromName()
716 return new FilterRotateRepresentation(); in creatFilterFromName()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
DFilterShowActivity.java96 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
620 if (!(filterRepresentation instanceof FilterRotateRepresentation) in useFilterRepresentation()
626 || filterRepresentation instanceof FilterRotateRepresentation in useFilterRepresentation()
658 if (representation instanceof FilterRotateRepresentation) { in showRepresentation()
659 FilterRotateRepresentation r = (FilterRotateRepresentation) representation; in showRepresentation()