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

1 2 3

  /external/v8/test/cctest/
gay-shortest.h 36 const char* representation; member in struct:v8::internal::PrecomputedShortest
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
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterFxRepresentation.java 50 FilterFxRepresentation representation = (FilterFxRepresentation) super.clone(); local
51 representation.setName(getName());
52 representation.setBitmapResource(getBitmapResource());
53 representation.setNameResource(getNameResource());
54 return representation;
59 FilterFxRepresentation representation = (FilterFxRepresentation) a; local
60 setName(representation.getName());
61 setBitmapResource(representation.getBitmapResource());
62 setNameResource(representation.getNameResource());
67 public boolean equals(FilterRepresentation representation) {
    [all...]
FilterColorBorderRepresentation.java 47 FilterColorBorderRepresentation representation = (FilterColorBorderRepresentation) super.clone(); local
48 representation.setName(getName());
49 representation.setColor(getColor());
50 representation.setBorderSize(getBorderSize());
51 representation.setBorderRadius(getBorderRadius());
52 return representation;
57 FilterColorBorderRepresentation representation = (FilterColorBorderRepresentation) a; local
58 setName(representation.getName());
59 setColor(representation.getColor());
60 setBorderSize(representation.getBorderSize())
    [all...]
FilterImageBorderRepresentation.java 43 FilterImageBorderRepresentation representation = (FilterImageBorderRepresentation) super.clone(); local
44 representation.setName(getName());
45 representation.setDrawableResource(getDrawableResource());
46 return representation;
51 FilterImageBorderRepresentation representation = (FilterImageBorderRepresentation) a; local
52 setName(representation.getName());
53 setDrawableResource(representation.getDrawableResource());
58 public boolean equals(FilterRepresentation representation) {
59 if (!super.equals(representation)) {
62 if (representation instanceof FilterImageBorderRepresentation)
    [all...]
FilterTinyPlanetRepresentation.java 39 FilterTinyPlanetRepresentation representation = (FilterTinyPlanetRepresentation) super local
41 representation.mAngle = mAngle;
42 representation.setZoom(getZoom());
43 return representation;
48 FilterTinyPlanetRepresentation representation = (FilterTinyPlanetRepresentation) a; local
50 mAngle = representation.mAngle;
51 setZoom(representation.getZoom());
FilterBasicRepresentation.java 50 FilterBasicRepresentation representation = (FilterBasicRepresentation) super.clone(); local
51 representation.setMinimum(getMinimum());
52 representation.setMaximum(getMaximum());
53 representation.setValue(getValue());
55 Log.v(LOGTAG, "cloning from <" + this + "> to <" + representation + ">");
57 return representation;
63 FilterBasicRepresentation representation = (FilterBasicRepresentation) a; local
64 setMinimum(representation.getMinimum());
65 setMaximum(representation.getMaximum());
66 setValue(representation.getValue())
    [all...]
ImageFilterContrast.java 30 FilterBasicRepresentation representation = local
32 representation.setName("Contrast");
33 representation.setFilterClass(ImageFilterContrast.class);
34 representation.setTextId(R.string.contrast);
35 representation.setButtonId(R.id.contrastButton);
37 representation.setMinimum(-100);
38 representation.setMaximum(100);
39 representation.setDefaultValue(0);
40 representation.setSupportsPartialRendering(true);
41 return representation;
    [all...]
ImageFilterEdge.java 30 FilterRepresentation representation = super.getDefaultRepresentation(); local
31 representation.setName("Edge");
32 representation.setFilterClass(ImageFilterEdge.class);
33 representation.setTextId(R.string.edge);
34 representation.setButtonId(R.id.edgeButton);
35 representation.setSupportsPartialRendering(true);
36 return representation;
ImageFilterExposure.java 30 FilterBasicRepresentation representation = local
32 representation.setName("Exposure");
33 representation.setFilterClass(ImageFilterExposure.class);
34 representation.setTextId(R.string.exposure);
35 representation.setButtonId(R.id.exposureButton);
36 representation.setMinimum(-100);
37 representation.setMaximum(100);
38 representation.setDefaultValue(0);
39 representation.setSupportsPartialRendering(true);
40 return representation;
    [all...]
ImageFilterHue.java 33 FilterBasicRepresentation representation = local
35 representation.setName("Hue");
36 representation.setFilterClass(ImageFilterHue.class);
37 representation.setMinimum(-180);
38 representation.setMaximum(180);
39 representation.setTextId(R.string.hue);
40 representation.setButtonId(R.id.hueButton);
41 representation.setEditorId(BasicEditor.ID);
42 representation.setSupportsPartialRendering(true);
43 return representation;
    [all...]
ImageFilterNegative.java 15 FilterRepresentation representation = new FilterDirectRepresentation("Negative"); local
16 representation.setFilterClass(ImageFilterNegative.class);
17 representation.setTextId(R.string.negative);
18 representation.setButtonId(R.id.negativeButton);
19 representation.setShowEditingControls(false);
20 representation.setShowParameterValue(false);
21 representation.setEditorId(ImageOnlyEditor.ID);
22 representation.setSupportsPartialRendering(true);
23 return representation;
29 public void useRepresentation(FilterRepresentation representation) {
    [all...]
ImageFilterSaturated.java 31 FilterBasicRepresentation representation = local
33 representation.setName("Saturated");
34 representation.setFilterClass(ImageFilterSaturated.class);
35 representation.setTextId(R.string.saturation);
36 representation.setButtonId(R.id.saturationButton);
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.setFilterClass(ImageFilterShadows.class);
35 representation.setTextId(R.string.shadow_recovery);
36 representation.setButtonId(R.id.shadowRecoveryButton);
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.setFilterClass(ImageFilterVibrance.class);
34 representation.setTextId(R.string.vibrance);
35 representation.setButtonId(R.id.vibranceButton);
36 representation.setMinimum(-100);
37 representation.setMaximum(100);
38 representation.setDefaultValue(0);
39 representation.setSupportsPartialRendering(true);
40 return representation;
    [all...]
ImageFilterWBalance.java 32 FilterRepresentation representation = new FilterDirectRepresentation("WBalance"); local
33 representation.setFilterClass(ImageFilterWBalance.class);
34 representation.setPriority(FilterRepresentation.TYPE_WBALANCE);
35 representation.setTextId(R.string.wbalance);
36 representation.setButtonId(R.id.wbalanceButton);
37 representation.setShowEditingControls(false);
38 representation.setShowParameterValue(false);
39 representation.setEditorId(ImageOnlyEditor.ID);
40 representation.setSupportsPartialRendering(true);
41 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;
ImageFilterBwFilter.java 32 FilterBasicRepresentation representation = (FilterBasicRepresentation) super.getDefaultRepresentation(); local
33 representation.setName("BW Filter");
34 representation.setFilterClass(ImageFilterBwFilter.class);
35 representation.setMaximum(180);
36 representation.setMinimum(-180);
37 representation.setTextId(R.string.bwfilter);
38 representation.setButtonId(R.id.bwfilterButton);
39 representation.setSupportsPartialRendering(true);
40 return representation;
FilterCurvesRepresentation.java 43 FilterCurvesRepresentation representation = (FilterCurvesRepresentation) a; local
46 Spline sp = representation.mSplines[i];
FilterPointRepresentation.java 35 FilterPointRepresentation representation = (FilterPointRepresentation) super local
37 representation.mCandidates = (Vector<FilterPoint>) mCandidates.clone();
38 return representation;
68 FilterPointRepresentation representation = (FilterPointRepresentation) a; local
70 for (FilterPoint redEyeCandidate : representation.mCandidates) {
  /external/stlport/test/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-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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9Curve.java 65 ASN1ObjectIdentifier representation local
71 if (representation.equals(tpBasis))
73 // Trinomial basis representation
79 // Pentanomial basis representation

Completed in 1390 milliseconds

1 2 3