Searched refs:rep (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DBasicEditor.java69 FilterBasicRepresentation rep = getBasicRepresentation();
70 if (rep == null) {
73 return rep.getMaximum();
78 FilterBasicRepresentation rep = getBasicRepresentation();
79 if (rep == null) {
82 return rep.getMinimum();
92 FilterBasicRepresentation rep = getBasicRepresentation();
93 if (rep == null) {
96 return rep.getValue();
106 FilterBasicRepresentation rep
[all...]
H A DEditorCurves.java46 FilterRepresentation rep = getLocalRepresentation();
47 if (rep != null && getLocalRepresentation() instanceof FilterCurvesRepresentation) {
48 FilterCurvesRepresentation drawRep = (FilterCurvesRepresentation) rep;
H A DEditorTinyPlanet.java46 FilterRepresentation rep = getLocalRepresentation();
47 if (rep != null && rep instanceof FilterTinyPlanetRepresentation) {
48 FilterTinyPlanetRepresentation drawRep = (FilterTinyPlanetRepresentation) rep;
H A DEditorRedEye.java53 FilterRepresentation rep = getLocalRepresentation();
54 if (rep != null && getLocalRepresentation() instanceof FilterRedEyeRepresentation) {
55 FilterRedEyeRepresentation redEyeRep = (FilterRedEyeRepresentation) rep;
H A DEditorVignette.java47 FilterRepresentation rep = getLocalRepresentation();
48 if (rep != null && getLocalRepresentation() instanceof FilterVignetteRepresentation) {
49 FilterVignetteRepresentation drawRep = (FilterVignetteRepresentation) rep;
H A DParametricEditor.java147 protected Parameter getParameterToEdit(FilterRepresentation rep) { argument
150 } else if (rep instanceof Parameter) {
151 return ((Parameter) rep);
160 FilterRepresentation rep = getLocalRepresentation();
161 Parameter param = getParameterToEdit(rep);
H A DEditorDraw.java60 FilterRepresentation rep = getLocalRepresentation();
62 if (rep != null && getLocalRepresentation() instanceof FilterDrawRepresentation) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterVignette.java72 FilterVignetteRepresentation rep = (FilterVignetteRepresentation) getParameters();
73 if (rep == null) {
78 float value = rep.getValue() / 100.0f;
84 if (rep.isCenterSet()) {
86 cx = rep.getCenterX();
87 cy = rep.getCenterY();
92 rx = m.mapRadius(rep.getRadiusX());
93 ry = m.mapRadius(rep.getRadiusY());
H A DFilterCurvesRepresentation.java32 FilterCurvesRepresentation rep = new FilterCurvesRepresentation();
33 rep.useParametersFrom(this);
34 return rep;

Completed in 67 milliseconds