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

1 2 3 4 5 6

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
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...]
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);
FilterRedEyeRepresentation.java 39 FilterRedEyeRepresentation representation = new FilterRedEyeRepresentation(); local
40 copyAllParameters(representation);
41 return representation;
45 protected void copyAllParameters(FilterRepresentation representation) {
46 super.copyAllParameters(representation);
47 representation.useParametersFrom(this);
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...]
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...]
FilterColorBorderRepresentation.java 79 FilterColorBorderRepresentation representation = local
81 copyAllParameters(representation);
82 return representation;
86 protected void copyAllParameters(FilterRepresentation representation) {
87 super.copyAllParameters(representation);
88 representation.useParametersFrom(this);
93 FilterColorBorderRepresentation representation = (FilterColorBorderRepresentation) a; local
94 setName(representation.getName());
95 setColor(representation.getColor());
96 mParamColor.copyPalletFrom(representation.mParamColor)
    [all...]
FilterPointRepresentation.java 37 protected void copyAllParameters(FilterRepresentation representation) {
38 super.copyAllParameters(representation);
39 representation.useParametersFrom(this);
69 FilterPointRepresentation representation = (FilterPointRepresentation) a; local
71 for (FilterPoint redEyeCandidate : representation.mCandidates) {
FilterUserPresetRepresentation.java 45 FilterRepresentation representation = new FilterUserPresetRepresentation(getName(), local
47 return representation;
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...]
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;
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...]
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;
  /external/v8/test/cctest/
gay-shortest.h 38 const char* representation; member in struct:v8::internal::PrecomputedShortest
gay-fixed.h 39 const char* representation; member in struct:v8::internal::PrecomputedFixed
gay-precision.h 39 const char* representation; member in struct:v8::internal::PrecomputedPrecision
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
GenericKey.java 8 private Object representation; field in class:GenericKey
12 * @param representation key data
14 public GenericKey(Object representation)
17 this.representation = representation;
20 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation)
23 this.representation = representation;
26 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation)
29 this.representation = representation
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); local
68 CPPUNIT_ASSERT( representation == "1000100010001" );
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); local
68 CPPUNIT_ASSERT( representation == "1000100010001" );
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
AbstractListChromosome.java 27 * @param <T> type of the representation list
34 private final List<T> representation; field in class:AbstractListChromosome
38 * @param representation inner representation of the chromosome
40 public AbstractListChromosome(final List<T> representation) {
42 checkValidity(representation);
44 throw new IllegalArgumentException(String.format("Invalid representation for %s", getClass().getSimpleName()), e);
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation));
51 * @param representation inner representation of the chromosom
    [all...]

Completed in 264 milliseconds

1 2 3 4 5 6