Searched refs:rep (Results 26 - 38 of 38) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterGradRepresentation.java127 FilterGradRepresentation rep = (FilterGradRepresentation) a;
129 int n = (rep.mCurrentBand == null) ? 0 : rep.mBands.indexOf(rep.mCurrentBand);
130 for (Band band : rep.mBands) {
154 FilterGradRepresentation rep = (FilterGradRepresentation) representation;
156 if (rep.getNumberOfBands() != n) {
161 Band b2 = rep.mBands.get(i);
H A DFilterChanSatRepresentation.java113 FilterChanSatRepresentation rep = (FilterChanSatRepresentation) representation;
115 if (rep.getValue(i) != getValue(i))
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DImagePreset.java153 public void updateOrAddFilterRepresentation(FilterRepresentation rep) { argument
154 int pos = getPositionForRepresentation(rep);
156 mFilters.elementAt(pos).useParametersFrom(rep);
158 addFilter(rep.copy());
352 FilterRepresentation rep = preset.getFilterRepresentationForType(
354 addFilter(rep);
371 FilterRepresentation rep = mFilters.elementAt(index);
372 if (rep.getFilterType() != FilterRepresentation.TYPE_GEOMETRY) {
406 FilterRepresentation rep = mFilters.elementAt(i);
407 if (rep
[all...]
H A DCacheProcessing.java48 for (FilterRepresentation rep : representations) {
49 if (!rep.canMergeWith(representation)) {
289 + " similar rep ? " + (similar ? "YES" : "NO")
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorCrop.java90 FilterRepresentation rep = getLocalRepresentation();
91 if (rep == null || rep instanceof FilterCropRepresentation) {
92 mImageCrop.setFilterCropRepresentation((FilterCropRepresentation) rep);
H A DParametricEditor.java157 protected Parameter getParameterToEdit(FilterRepresentation rep) { argument
160 } else if (rep instanceof Parameter) {
161 return ((Parameter) rep);
170 FilterRepresentation rep = getLocalRepresentation();
171 Parameter param = getParameterToEdit(rep);
H A DEditor.java222 public void commitLocalRepresentation(FilterRepresentation rep) { argument
224 filter.add(rep);
H A DEditorColorBorderTabletUI.java70 public void setColorBorderRepresentation(FilterColorBorderRepresentation rep) { argument
71 mRep = rep;
H A DEditorDrawTabletUI.java74 public void setDrawRepresentation(FilterDrawRepresentation rep) { argument
75 mRep = rep;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageShow.java445 FilterMirrorRepresentation rep =
455 if (rep.isHorizontal() && !rep.isVertical()) {
457 } else if (rep.isVertical() && !rep.isHorizontal()) {
459 } else if (rep.isHorizontal() && rep.isVertical()) {
465 if (rep.isHorizontal() && !rep.isVertical()) {
467 } else if (rep
[all...]
H A DImageStraighten.java105 public void setFilterStraightenRepresentation(FilterStraightenRepresentation rep) { argument
106 mLocalRep = (rep == null) ? new FilterStraightenRepresentation() : rep;
H A DGeometryMathUtils.java281 FilterRepresentation rep) {
285 if (ImagePreset.sameSerializationName(rep, r)) {
289 if (!rep.isNil()) {
290 geometry.add(rep);
280 replaceInstances(Collection<FilterRepresentation> geometry, FilterRepresentation rep) argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
H A DFilterShowActivity.java425 for (FilterUserPresetRepresentation rep : mVersions) {
427 new Action(this, rep, Action.FULL_VIEW, true));
435 FilterUserPresetRepresentation rep = new FilterUserPresetRepresentation(
437 mVersions.add(rep);
447 FilterUserPresetRepresentation rep =
449 if (rep == null) {
452 mUserPresetsManager.delete(rep.getId());
1302 FilterRepresentation rep = null;
1304 rep = historyItem.getFilterRepresentation();
1306 mMasterImage.setPreset(original, rep, tru
[all...]

Completed in 104 milliseconds

12