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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
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...]
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...]
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...]
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);
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...]
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;
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...]
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...]
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;
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;
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...]
FilterBasicRepresentation.java 52 FilterBasicRepresentation representation = new FilterBasicRepresentation(getName(),0,0,0); local
53 copyAllParameters(representation);
54 return representation;
58 protected void copyAllParameters(FilterRepresentation representation) {
59 super.copyAllParameters(representation);
60 representation.useParametersFrom(this);
66 FilterBasicRepresentation representation = (FilterBasicRepresentation) a; local
67 setMinimum(representation.getMinimum());
68 setMaximum(representation.getMaximum());
69 setValue(representation.getValue())
    [all...]
  /external/chromium_org/v8/src/
property-details.h 81 class Representation {
94 Representation() : kind_(kNone) { }
96 static Representation None() { return Representation(kNone); }
97 static Representation Tagged() { return Representation(kTagged); }
98 static Representation Smi() { return Representation(kSmi); }
99 static Representation Integer32() { return Representation(kInteger32);
225 Representation representation() { function in class:v8::internal::BASE_EMBEDDED
    [all...]
hydrogen-instructions.h 292 bool AddAndCheckOverflow(const Representation& r, Range* other);
293 bool SubAndCheckOverflow(const Representation& r, Range* other);
294 bool MulAndCheckOverflow(const Representation& r, Range* other);
422 bool ToStringOrToNumberCanBeObserved(Representation representation) {
437 return !representation.IsSmiOrInteger32() && !representation.IsDouble();
696 Representation representation() const { return representation_; }
697 void ChangeRepresentation(Representation r)
5466 inline Representation representation() const { function in class:v8::HObjectAccess
5670 Representation representation = access.representation(); local
    [all...]
  /external/v8/src/
hydrogen-instructions.h 291 class Representation {
302 Representation() : kind_(kNone) { }
304 static Representation None() { return Representation(kNone); }
305 static Representation Tagged() { return Representation(kTagged); }
306 static Representation Integer32() { return Representation(kInteger32); }
307 static Representation Double() { return Representation(kDouble);
    [all...]
  /dalvik/dx/tests/113-old-style-inner-class/
info.txt 2 converstion of old-style anonymous inner classes (whose representation
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkObjectParser.h 29 Returns a string representation of a boolean.
35 Returns a string representation of the text pointer passed in.
40 Returns a string representation of an integer with the text parameter
47 Returns a string representation of the SkIRects coordinates.
53 Returns a string representation of an SkMatrix's contents
59 Returns a string representation of an SkPaint's color
65 Returns a string representation of a SkPath's points.
71 Returns a string representation of the points in the point array.
78 Returns a string representation of the SkCanvas PointMode enum.
83 Returns a string representation of the SkRects coordinates
    [all...]
  /external/skia/src/utils/debugger/
SkObjectParser.h 29 Returns a string representation of a boolean.
35 Returns a string representation of the text pointer passed in.
40 Returns a string representation of an integer with the text parameter
47 Returns a string representation of the SkIRects coordinates.
53 Returns a string representation of an SkMatrix's contents
59 Returns a string representation of an SkPaint's color
65 Returns a string representation of a SkPath's points.
71 Returns a string representation of the points in the point array.
78 Returns a string representation of the SkCanvas PointMode enum.
83 Returns a string representation of the SkRects coordinates
    [all...]
  /dalvik/dx/tests/078-dex-local-variable-table/
Blort.java 57 // Test for representation of boolean.
62 // Test for representation of byte.
67 // Test for representation of char.
72 // Test for representation of double.
77 // Test for representation of float.
82 // Test for representation of int.
87 // Test for representation of long.
92 // Test for representation of short.
97 // Test for representation of Object.
102 // Test for representation of String (as a token example of a non-Objec
    [all...]

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>