HomeSort by relevance Sort by last modified time
    Searched full:hue (Results 51 - 75 of 423) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
IconPalette.java 61 * @return a color of the same hue with enough contrast against the background.
103 * Finds a text color with sufficient contrast over bg that has the same hue as the original
117 * @return a color with the same hue as {@param color}, potentially darkened to meet the
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdp.cpp 245 if (mParams.params.pa_params.hue != data.hsicData.hue) {
247 "Hue has changed from %d to %d",
248 mParams.params.pa_params.hue,data.hsicData.hue);
279 mParams.params.pa_params.hue = data.hsicData.hue;
  /hardware/qcom/display/msm8994/liboverlay/
overlayMdp.cpp 233 if (mParams.params.pa_params.hue != data.hsicData.hue) {
235 "Hue has changed from %d to %d",
236 mParams.params.pa_params.hue,data.hsicData.hue);
267 mParams.params.pa_params.hue = (float)data.hsicData.hue;
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightBarTests.java 165 assertLessThan("Too many pixels with a changed hue", 0.05f,
252 // should still be mostly the same hue.
253 float hueDiff = Math.abs(ColorUtils.hue(background) - ColorUtils.hue(c));
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/res/layout/
main_layout.xml 65 android:text="@string/hue"/>
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/res/layout/
main_layout.xml 65 android:text="@string/hue"/>
  /external/dng_sdk/source/
dng_camera_profile.cpp 379 for (uint32 hue = 0; hue < hues; hue++)
385 map.GetDelta (hue, sat, val, modify);
878 for (uint32 hue = 0; hue < hues; hue++)
890 hueSatMap.SetDelta (hue, sat, val, modify);
1375 DNG_REPORT ("Unsupported hue sat map / look table encoding.");
dng_camera_profile.h 240 // 2-D (or 3-D) hue/sat tables to modify colors.
245 // Value (V of HSV) encoding for hue/sat tables.
249 // 3-D hue/sat table to apply a "look".
567 // Accessors for hue sat maps.
598 // Accessors for hue sat map encoding.
600 /// Returns the hue sat map encoding (see ProfileHueSatMapEncoding tag).
607 /// Sets the hue sat map encoding (see ProfileHueSatMapEncoding tag) to the
822 /// Find the hue/sat table to use for a given white point, if any.
  /external/tensorflow/tensorflow/contrib/image/
__init__.py 20 transformas (including changing saturation and hue) in YIQ space and
  /hardware/qcom/display/msm8084/libqdutils/
qdMetaData.h 46 int32_t hue; member in struct:HSICData_t
  /hardware/qcom/display/msm8226/libqdutils/
qdMetaData.h 46 int32_t hue; member in struct:HSICData_t
  /hardware/qcom/display/msm8994/libqdutils/
qdMetaData.h 46 int32_t hue; member in struct:HSICData_t
  /external/tensorflow/tensorflow/core/kernels/
adjust_hsv_gpu.cu.h 46 // hue
118 // hue adjustment
  /frameworks/base/core/java/com/android/internal/graphics/
ColorUtils.java 202 * Convert RGB components to HSL (hue-saturation-lightness).
204 * <li>outHsl[0] is Hue [0 .. 360)</li>
254 * Convert the ARGB color to its HSL (hue-saturation-lightness) components.
256 * <li>outHsl[0] is Hue [0 .. 360)</li>
269 * Convert HSL (hue-saturation-lightness) components to a RGB color.
271 * <li>hsl[0] is Hue [0 .. 360)</li>
597 * the hue using the shortest angle.
613 // Since hue is circular we will need to interpolate carefully
  /frameworks/base/core/java/com/android/internal/graphics/palette/
VariationalKMeansQuantizer.java 83 // Normalize hue so all values go from 0 to 1.
112 // Convert data to final format, de-normalizing the hue.
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorHueView.java 97 float hue = 360 * (x) / (float) w; local
99 mTmpHSV[0] = hue;
  /external/ImageMagick/coders/
sixel.c 149 static int hue_to_rgb(int n1, int n2, int hue)
153 if (hue < 0) {
154 hue += HLSMAX;
157 if (hue > HLSMAX) {
158 hue -= HLSMAX;
161 if (hue < (HLSMAX / 6)) {
162 return (n1 + (((n2 - n1) * hue + (HLSMAX / 12)) / (HLSMAX / 6)));
164 if (hue < (HLSMAX / 2)) {
167 if (hue < ((HLSMAX * 2) / 3)) {
168 return (n1 + (((n2 - n1) * (((HLSMAX * 2) / 3) - hue) + (HLSMAX / 12))/(HLSMAX / 6)))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xcms.h 748 XcmsFloat /* hue */,
755 XcmsFloat /* hue */,
762 XcmsFloat /* hue */,
768 XcmsFloat /* hue */,
775 XcmsFloat /* hue */,
  /frameworks/base/core/java/com/android/internal/util/
NotificationColorUtil.java 297 * @return a color with the same hue as {@param color}, potentially darkened to meet the
367 * @return a color with the same hue as {@param color}, potentially darkened to meet the
404 * Finds a large text color with sufficient contrast over bg that has the same or darker hue as
416 * Finds a text color with sufficient contrast over bg that has the same or darker hue as the
426 * Finds a color with sufficient contrast over bg that has the same or darker hue as the
441 * has the same hue as the original color.
485 * @return a color of the same hue with enough contrast against the backgrounds.
    [all...]
  /external/ImageMagick/MagickCore/
composite.c 183 static void HCLComposite(const MagickRealType hue,const MagickRealType chroma,
202 h=6.0*hue;
250 const MagickRealType blue,MagickRealType *hue,MagickRealType *chroma,
264 assert(hue != (MagickRealType *) NULL);
284 *hue=(h/6.0);
1223 hue, local
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Color.h 293 // Hue color
294 void hue(const double hue_);
295 double hue(void) const;
  /external/ImageMagick/tests/
validate.c 98 static void ConvertHSIToRGB(const double hue,const double saturation,
104 h=360.0*hue;
136 const double blue,double *hue,double *saturation,double *intensity)
145 *hue=0.0;
153 *hue=atan2(beta,alpha)*(180.0/MagickPI)/360.0;
154 if (*hue < 0.0)
155 *hue+=1.0;
158 static void ConvertHSVToRGB(const double hue,const double saturation,
167 h=hue*360.0;
367 const double hue,double *X,double *Y,double *Z
    [all...]
  /external/ImageMagick/www/Magick++/
Color.html 205 <p>Representation of a color in Hue/Saturation/Luminosity (HSL) colorspace.</p>
215 void hue ( double hue_ );
216 double hue ( void ) const;
  /frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
DemoModeController.java 129 final float hue = y / (h / 360); local
132 final int color = Color.HSVToColor(new float[]{hue, sat, val});
133 if (DEBUG) Log.d(TAG, String.format("hsv=(%s,%s,%s) argb=#%08x", hue, sat, val, color));
  /packages/apps/Gallery2/res/values-en-rAU/
filtershow_strings.xml 74 <string name="hue" msgid="6231252147971086030">"Hue"</string>
114 <string name="draw_hue" msgid="4975135843189267133">"Hue"</string>

Completed in 1668 milliseconds

1 23 4 5 6 7 8 91011>>