HomeSort by relevance Sort by last modified time
    Searched refs:FilterRotateRepresentation (Results 1 - 8 of 8) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRotate.java 26 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
32 private FilterRotateRepresentation mLocalRep = new FilterRotateRepresentation();
43 public void setFilterRotateRepresentation(FilterRotateRepresentation rep) {
44 mLocalRep = (rep == null) ? new FilterRotateRepresentation() : rep;
52 public FilterRotateRepresentation getFinalRepresentation() {
GeometryMathUtils.java 33 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();
69 return rotation == FilterRotateRepresentation.getNil() &&
267 if (r.getSerializationName() == FilterRotateRepresentation.SERIALIZATION_NAME) {
268 out.rotation = ((FilterRotateRepresentation) r).getRotation();
MasterImage.java 35 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
429 if (newRepresentation instanceof FilterRotateRepresentation) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRotateRepresentation.java 29 public class FilterRotateRepresentation extends FilterRepresentation {
32 private static final String TAG = FilterRotateRepresentation.class.getSimpleName();
64 public FilterRotateRepresentation(Rotation rotation) {
68 setFilterClass(FilterRotateRepresentation.class);
76 public FilterRotateRepresentation(FilterRotateRepresentation r) {
81 public FilterRotateRepresentation() {
106 public void set(FilterRotateRepresentation r) {
124 return new FilterRotateRepresentation(this);
129 if (!(representation instanceof FilterRotateRepresentation)) {
    [all...]
BaseFiltersManager.java 327 new FilterRotateRepresentation(),
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorRotate.java 29 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
57 .getFilterWithSerializationName(FilterRotateRepresentation.SERIALIZATION_NAME));
60 if (rep == null || rep instanceof FilterRotateRepresentation) {
61 mImageRotate.setFilterRotateRepresentation((FilterRotateRepresentation) rep);
64 + FilterRotateRepresentation.class.getSimpleName());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ImagePreset.java 35 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
272 if (a instanceof FilterRotateRepresentation
715 if (FilterRotateRepresentation.SERIALIZATION_NAME.equals(name)) {
716 return new FilterRotateRepresentation();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 98 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation;
624 if (!(filterRepresentation instanceof FilterRotateRepresentation)
630 || filterRepresentation instanceof FilterRotateRepresentation
662 if (representation instanceof FilterRotateRepresentation) {
663 FilterRotateRepresentation r = (FilterRotateRepresentation) representation;
    [all...]

Completed in 1729 milliseconds