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

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
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 33 FilterRepresentation representation = new FilterBasicRepresentation("Sharpen", 0, 0, 100); local
34 representation.setSerializationName(SERIALIZATION_NAME);
35 representation.setShowParameterValue(true);
36 representation.setFilterClass(ImageFilterSharpen.class);
37 representation.setTextId(R.string.sharpness);
38 representation.setOverlayId(R.drawable.filtershow_button_colors_sharpen);
39 representation.setEditorId(R.id.imageShow);
40 representation.setSupportsPartialRendering(true);
41 return representation;
44 public void useRepresentation(FilterRepresentation representation) {
    [all...]
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...]
FilterCurvesRepresentation.java 37 FilterCurvesRepresentation representation = new FilterCurvesRepresentation(); local
38 copyAllParameters(representation);
39 return representation;
43 protected void copyAllParameters(FilterRepresentation representation) {
44 super.copyAllParameters(representation);
45 representation.useParametersFrom(this);
54 FilterCurvesRepresentation representation = (FilterCurvesRepresentation) a; local
57 Spline sp = representation.mSplines[i];
78 public boolean equals(FilterRepresentation representation) {
79 if (!super.equals(representation)) {
    [all...]
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);
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) {
FilterChanSatRepresentation.java 34 * Representation for a filter that has per channel & Master saturation
86 FilterChanSatRepresentation representation = new FilterChanSatRepresentation(); local
87 copyAllParameters(representation);
88 return representation;
92 protected void copyAllParameters(FilterRepresentation representation) {
93 super.copyAllParameters(representation);
94 representation.useParametersFrom(this);
99 FilterChanSatRepresentation representation = (FilterChanSatRepresentation) a; local
102 mAllParam[i].copyFrom(representation.mAllParam[i]);
108 public boolean equals(FilterRepresentation representation) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_icon_image_unittest.cc 53 // |GetImageForScale| simply returns image representation from the image given
242 // Gets representation for a scale factor.
243 gfx::ImageSkiaRep representation = local
246 // Before the image representation is loaded, image should contain blank
247 // image representation.
249 representation.sk_bitmap(),
256 representation = image.image_skia().GetRepresentation(ui::SCALE_FACTOR_100P);
258 // We should get the right representation now.
259 EXPECT_TRUE(gfx::BitmapsAreEqual(representation.sk_bitmap(), bitmap_16));
260 EXPECT_EQ(16, representation.pixel_width())
303 gfx::ImageSkiaRep representation = local
343 gfx::ImageSkiaRep representation = local
378 gfx::ImageSkiaRep representation = local
420 gfx::ImageSkiaRep representation = local
463 gfx::ImageSkiaRep representation = local
503 gfx::ImageSkiaRep representation = local
547 gfx::ImageSkiaRep representation = local
    [all...]
extension_icon_image.h 43 // representation will be left blank if the resource loading fails.
76 // Loads an image representation for the scale factor.
77 // If the representation gets loaded synchronously, it is returned by this
79 // If representation loading is asynchronous, an empty image
80 // representation is returned. When the representation gets loaded the
100 // The icon with whose representation |image_skia_| should be updated if
101 // its own representation load fails.
  /external/libcap-ng/libcap-ng-0.7/docs/
capng_print_caps_numeric.3 11 capng_print_caps_numeric will create a numeric representation of the internal capabilities. The representation can be sent to either stdout or a buffer by passing CAPNG_PRINT_STDOUT or CAPNG_PRINT_BUFFER respectively for the where parameter. If the option was for a buffer, this function will malloc a buffer that the caller must free.
13 The set parameter controls what is included in the representation. The legal options are CAPNG_SELECT_CAPS for the traditional capabilities, CAPNG_SELECT_BOUNDS for the bounding set, or CAPNG_SELECT_BOTH if clearing both is desired.
capng_capability_to_name.3 11 capng_capabilityi_to_name will take the integer being passed and look it up to see what its text string representation would be. The integer being input must be in the valid range defined in linux/capabiliy.h. The string that is output is the same as the define text from linux/capabiliy.h with the CAP_ prefix removed and lower case. This is useful for taking integer representation and converting it to something more user friendly for display.
capng_print_caps_text.3 11 capng_print_caps_text will create a text string representation of the internal capability set specified. The representation can be sent to either stdout or a buffer by passing CAPNG_PRINT_STDOUT or CAPNG_PRINT_BUFFER respectively for the where parameter. If the option was for a buffer, this function will malloc a buffer that the caller must free.
  /external/proguard/src/proguard/classfile/
package.html 9 a complete representation that can be read, modified, and written back.
11 an incomplete representation that can be only be read. It is however
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
spectrum_ar_model_tables.h 45 /* representation levels for quantized reflection coefficient 1 */
48 /* representation levels for quantized reflection coefficient 2 */
51 /* representation levels for quantized reflection coefficient 3 */
54 /* representation levels for quantized reflection coefficient 4 */
57 /* representation levels for quantized reflection coefficient 5 */
60 /* representation levels for quantized reflection coefficient 6 */
72 /* pointers to AR representation levels tables */
80 /* representation levels for quantized Gain coefficient */
  /external/chromium_org/v8/src/
hydrogen-representation-changes.cc 28 #include "hydrogen-representation-changes.h"
34 HValue* value, HValue* use_value, int use_index, Representation to) {
35 // Insert the representation change right before its use. For phi-uses we
43 // For constants we try to make the representation change at compile
44 // time. When a representation change is not possible without loss of
52 // Try to create a new copy of the constant with the new representation.
73 Representation r = value->representation();
80 Representation req = use_value->RequiredInputRepresentation(use_index);
107 if (phi->representation().IsInteger32())
    [all...]
  /external/clang/test/CodeGen/
bool-convert.c 2 // All of these should uses the memory representation of _Bool
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ImagePreset.java 81 FilterRepresentation representation = null; local
83 representation = mFilters.elementAt(position).copy();
85 return representation;
103 public int getPositionForRepresentation(FilterRepresentation representation) {
105 if (sameSerializationName(mFilters.elementAt(i), representation)) {
140 FilterRepresentation representation = mFilters.elementAt(position); local
141 if (representation != null) {
142 representation = representation.copy();
144 return representation;
431 FilterRepresentation representation = mFilters.elementAt(i); local
509 FilterRepresentation representation = mFilters.elementAt(i); local
560 FilterRepresentation representation = mFilters.elementAt(i); local
578 FilterRepresentation representation = mFilters.elementAt(i); local
619 FilterRepresentation representation = mFilters.elementAt(i); local
    [all...]
FilterEnvironment.java 110 public void applyRepresentation(FilterRepresentation representation,
112 ImageFilter filter = mFiltersManager.getFilterForRepresentation(representation);
113 filter.useRepresentation(representation);
122 public Bitmap applyRepresentation(FilterRepresentation representation, Bitmap bitmap) {
123 if (representation instanceof FilterUserPresetRepresentation) {
129 ImageFilter filter = mFiltersManager.getFilterForRepresentation(representation);
131 Log.e(LOGTAG,"No ImageFilter for "+representation.getSerializationName());
133 filter.useRepresentation(representation);
  /external/chromium/chrome/browser/extensions/
extension_preference_api.h 48 // Converts the representation of a preference as seen by the extension
49 // into a representation that is used in the pref stores of the browser.
50 // Returns the pref store representation in case of success or sets
56 // Converts the representation of the preference as stored in the browser
57 // into a representation that is used by the extension.
58 // Returns the extension representation in case of success or NULL otherwise.
  /external/chromium_org/chrome/browser/chromeos/login/
user_image.h 15 // Wrapper class storing a still image and it's raw representation. Could be
24 // representation for it.
34 // Creates a new instance from a given still frame and raw representation.
36 // original |raw_image| and raw_image() will return the encoded representation
44 // Optional raw representation of the still image.
51 // Optional raw representation of the animated image.
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_namespace.h 22 // Converts a namespace to its string representation.
26 // Converts a string representation of a namespace to its namespace, or INVALID
  /external/libsepol/src/
context.h 10 /* Create a context structure from high level representation */
21 /* Create a context structure from string representation */
  /external/smack/src/org/jivesoftware/smack/util/
StringEncoder.java 22 * Encodes an string to another representation
30 * Decodes an string back to it's initial representation
  /external/bison/lib/
quote.h 27 /* Return an unambiguous printable representation of ARG (of size
33 /* Return an unambiguous printable representation of ARG (of size
38 /* Return an unambiguous printable representation of ARG, allocated in
42 /* Return an unambiguous printable representation of ARG, suitable for

Completed in 1155 milliseconds

12 3 4 5 6 7 8 91011>>