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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDirectRepresentation.java 23 FilterDirectRepresentation representation = new FilterDirectRepresentation(getName()); local
24 copyAllParameters(representation);
25 return representation;
29 protected void copyAllParameters(FilterRepresentation representation) {
30 super.copyAllParameters(representation);
31 representation.useParametersFrom(this);
SimpleImageFilter.java 24 FilterRepresentation representation = new FilterBasicRepresentation("Default", 0, 50, 100); local
25 representation.setShowParameterValue(true);
26 return representation;
29 public void useRepresentation(FilterRepresentation representation) {
30 FilterBasicRepresentation parameters = (FilterBasicRepresentation) representation;
FilterFxRepresentation.java 47 FilterFxRepresentation representation = new FilterFxRepresentation(getName(),0,0); local
48 copyAllParameters(representation);
49 return representation;
53 protected void copyAllParameters(FilterRepresentation representation) {
54 super.copyAllParameters(representation);
55 representation.useParametersFrom(this);
61 FilterFxRepresentation representation = (FilterFxRepresentation) a; local
62 setName(representation.getName());
63 setSerializationName(representation.getSerializationName());
64 setBitmapResource(representation.getBitmapResource())
    [all...]
ImageFilterContrast.java 31 FilterBasicRepresentation representation = local
33 representation.setName("Contrast");
34 representation.setSerializationName(SERIALIZATION_NAME);
36 representation.setFilterClass(ImageFilterContrast.class);
37 representation.setTextId(R.string.contrast);
38 representation.setMinimum(-100);
39 representation.setMaximum(100);
40 representation.setDefaultValue(0);
41 representation.setSupportsPartialRendering(true);
42 return representation;
    [all...]
ImageFilterExposure.java 30 FilterBasicRepresentation representation = local
32 representation.setName("Exposure");
33 representation.setSerializationName(SERIALIZATION_NAME);
34 representation.setFilterClass(ImageFilterExposure.class);
35 representation.setTextId(R.string.exposure);
36 representation.setMinimum(-100);
37 representation.setMaximum(100);
38 representation.setDefaultValue(0);
39 representation.setSupportsPartialRendering(true);
40 return representation;
    [all...]
ImageFilterNegative.java 15 FilterRepresentation representation = new FilterDirectRepresentation("Negative"); local
16 representation.setSerializationName(SERIALIZATION_NAME);
17 representation.setFilterClass(ImageFilterNegative.class);
18 representation.setTextId(R.string.negative);
19 representation.setShowParameterValue(false);
20 representation.setEditorId(ImageOnlyEditor.ID);
21 representation.setSupportsPartialRendering(true);
22 representation.setIsBooleanFilter(true);
23 return representation;
29 public void useRepresentation(FilterRepresentation representation) {
    [all...]
ImageFilterSaturated.java 31 FilterBasicRepresentation representation = local
33 representation.setName("Saturated");
34 representation.setSerializationName(SERIALIZATION_NAME);
35 representation.setFilterClass(ImageFilterSaturated.class);
36 representation.setTextId(R.string.saturation);
37 representation.setMinimum(-100);
38 representation.setMaximum(100);
39 representation.setDefaultValue(0);
40 representation.setSupportsPartialRendering(true);
41 return representation;
    [all...]
ImageFilterShadows.java 31 FilterBasicRepresentation representation = local
33 representation.setName("Shadows");
34 representation.setSerializationName(SERIALIZATION_NAME);
35 representation.setFilterClass(ImageFilterShadows.class);
36 representation.setTextId(R.string.shadow_recovery);
37 representation.setMinimum(-100);
38 representation.setMaximum(100);
39 representation.setDefaultValue(0);
40 representation.setSupportsPartialRendering(true);
41 return representation;
    [all...]
ImageFilterVibrance.java 30 FilterBasicRepresentation representation = local
32 representation.setName("Vibrance");
33 representation.setSerializationName(SERIALIZATION_NAME);
34 representation.setFilterClass(ImageFilterVibrance.class);
35 representation.setTextId(R.string.vibrance);
36 representation.setMinimum(-100);
37 representation.setMaximum(100);
38 representation.setDefaultValue(0);
39 representation.setSupportsPartialRendering(true);
40 return representation;
    [all...]
FilterImageBorderRepresentation.java 41 FilterImageBorderRepresentation representation = local
43 copyAllParameters(representation);
44 return representation;
48 protected void copyAllParameters(FilterRepresentation representation) {
49 super.copyAllParameters(representation);
50 representation.useParametersFrom(this);
55 FilterImageBorderRepresentation representation = (FilterImageBorderRepresentation) a; local
56 setName(representation.getName());
57 setDrawableResource(representation.getDrawableResource());
62 public boolean equals(FilterRepresentation representation) {
    [all...]
FiltersManagerInterface.java 20 ImageFilter getFilterForRepresentation(FilterRepresentation representation);
ImageFilterWBalance.java 33 FilterRepresentation representation = new FilterDirectRepresentation("WBalance"); local
34 representation.setSerializationName(SERIALIZATION_NAME);
35 representation.setFilterClass(ImageFilterWBalance.class);
36 representation.setFilterType(FilterRepresentation.TYPE_WBALANCE);
37 representation.setTextId(R.string.wbalance);
38 representation.setShowParameterValue(false);
39 representation.setEditorId(ImageOnlyEditor.ID);
40 representation.setSupportsPartialRendering(true);
41 representation.setIsBooleanFilter(true);
42 return representation;
    [all...]
ImageFilterEdge.java 30 FilterRepresentation representation = super.getDefaultRepresentation(); local
31 representation.setName("Edge");
32 representation.setSerializationName(SERIALIZATION_NAME);
33 representation.setFilterClass(ImageFilterEdge.class);
34 representation.setTextId(R.string.edge);
35 representation.setSupportsPartialRendering(true);
36 return representation;
ImageFilterHighlights.java 35 FilterBasicRepresentation representation = local
37 representation.setName("Highlights");
38 representation.setSerializationName(SERIALIZATION_NAME);
39 representation.setFilterClass(ImageFilterHighlights.class);
40 representation.setTextId(R.string.highlight_recovery);
41 representation.setMinimum(-100);
42 representation.setMaximum(100);
43 representation.setDefaultValue(0);
44 representation.setSupportsPartialRendering(true);
45 return representation;
    [all...]
ImageFilterHue.java 34 FilterBasicRepresentation representation = local
36 representation.setName("Hue");
37 representation.setSerializationName(SERIALIZATION_NAME);
38 representation.setFilterClass(ImageFilterHue.class);
39 representation.setMinimum(-180);
40 representation.setMaximum(180);
41 representation.setTextId(R.string.hue);
42 representation.setEditorId(BasicEditor.ID);
43 representation.setSupportsPartialRendering(true);
44 return representation;
    [all...]
FilterTinyPlanetRepresentation.java 42 FilterTinyPlanetRepresentation representation = new FilterTinyPlanetRepresentation(); local
43 copyAllParameters(representation);
44 return representation;
48 protected void copyAllParameters(FilterRepresentation representation) {
49 super.copyAllParameters(representation);
50 representation.useParametersFrom(this);
55 FilterTinyPlanetRepresentation representation = (FilterTinyPlanetRepresentation) a; local
57 mAngle = representation.mAngle;
58 setZoom(representation.getZoom());
82 public boolean equals(FilterRepresentation representation) {
    [all...]
ImageFilterKMeans.java 38 FilterBasicRepresentation representation = (FilterBasicRepresentation) super.getDefaultRepresentation(); local
39 representation.setName("KMeans");
40 representation.setSerializationName(SERIALIZATION_NAME);
41 representation.setFilterClass(ImageFilterKMeans.class);
42 representation.setMaximum(20);
43 representation.setMinimum(2);
44 representation.setValue(4);
45 representation.setDefaultValue(4);
46 representation.setPreviewValue(4);
47 representation.setTextId(R.string.kmeans)
    [all...]
ImageFilterBwFilter.java 33 FilterBasicRepresentation representation = (FilterBasicRepresentation) super.getDefaultRepresentation(); local
34 representation.setName("BW Filter");
35 representation.setSerializationName(SERIALIZATION_NAME);
37 representation.setFilterClass(ImageFilterBwFilter.class);
38 representation.setMaximum(180);
39 representation.setMinimum(-180);
40 representation.setTextId(R.string.bwfilter);
41 representation.setSupportsPartialRendering(true);
42 return representation;
ImageFilterDownsample.java 38 FilterBasicRepresentation representation = (FilterBasicRepresentation) super.getDefaultRepresentation(); local
39 representation.setName("Downsample");
40 representation.setSerializationName(SERIALIZATION_NAME);
42 representation.setFilterClass(ImageFilterDownsample.class);
43 representation.setMaximum(100);
44 representation.setMinimum(1);
45 representation.setValue(50);
46 representation.setDefaultValue(50);
47 representation.setPreviewValue(3);
48 representation.setTextId(R.string.downsample)
    [all...]
ImageFilterSharpen.java 34 FilterRepresentation representation = new FilterBasicRepresentation("Sharpen", 0, 0, 100); local
35 representation.setSerializationName(SERIALIZATION_NAME);
36 representation.setShowParameterValue(true);
37 representation.setFilterClass(ImageFilterSharpen.class);
38 representation.setTextId(R.string.sharpness);
39 representation.setOverlayId(R.drawable.filtershow_button_colors_sharpen);
40 representation.setEditorId(BasicEditor.ID);
41 representation.setSupportsPartialRendering(true);
42 return representation;
45 public void useRepresentation(FilterRepresentation representation) {
    [all...]
FilterRepresentation.java 57 FilterRepresentation representation = new FilterRepresentation(mName); local
58 representation.useParametersFrom(this);
59 return representation;
62 protected void copyAllParameters(FilterRepresentation representation) {
63 representation.setName(getName());
64 representation.setFilterClass(getFilterClass());
65 representation.setFilterType(getFilterType());
66 representation.setSupportsPartialRendering(supportsPartialRendering());
67 representation.setTextId(getTextId());
68 representation.setEditorId(getEditorId())
    [all...]
  /external/chromium_org/v8/test/cctest/
gay-fixed.h 37 const char* representation; member in struct:v8::internal::PrecomputedFixed
gay-precision.h 37 const char* representation; member in struct:v8::internal::PrecomputedPrecision
gay-shortest.h 36 const char* representation; member in struct:v8::internal::PrecomputedShortest
  /external/chromium_org/v8/src/
field-index.cc 19 lookup_result->representation().IsDouble());

Completed in 1528 milliseconds

1 2 3 4 5 6 7 8 91011>>