HomeSort by relevance Sort by last modified time
    Searched defs:Palette (Results 1 - 11 of 11) sorted by null

  /prebuilts/go/darwin-x86/src/image/color/
color.go 279 // Palette is a palette of colors.
280 type Palette []Color
282 // Convert returns the palette color closest to c in Euclidean R,G,B space.
283 func (p Palette) Convert(c Color) Color {
290 // Index returns the index of the palette color closest to c in Euclidean
292 func (p Palette) Index(c Color) int {
  /prebuilts/go/linux-x86/src/image/color/
color.go 279 // Palette is a palette of colors.
280 type Palette []Color
282 // Convert returns the palette color closest to c in Euclidean R,G,B space.
283 func (p Palette) Convert(c Color) Color {
290 // Index returns the index of the palette color closest to c in Euclidean
292 func (p Palette) Index(c Color) int {
  /prebuilts/sdk/current/support/v7/palette/
android-support-v7-palette.jar 
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Image.c 268 EFI_HII_IMAGE_PALETTE_INFO *Palette;
281 Palette = AllocateZeroPool (PaletteSize);
282 ASSERT (Palette != NULL);
283 CopyMem (Palette, PaletteInfo, PaletteSize);
286 CopyRgbToGopPixel (&PaletteValue[0], &Palette->PaletteValue[0], 1);
287 CopyRgbToGopPixel (&PaletteValue[1], &Palette->PaletteValue[1], 1);
288 FreePool (Palette);
352 EFI_HII_IMAGE_PALETTE_INFO *Palette;
366 Palette = AllocateZeroPool (PaletteSize);
367 ASSERT (Palette != NULL);
    [all...]
  /external/swiftshader/src/D3D9/
Direct3DDevice9.hpp 298 struct Palette
304 std::map<int, Palette> palette; member in class:D3D9::Direct3DDevice9
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
AnalogWatchFaceService.java 34 import android.support.v7.graphics.Palette;
186 Palette.generateAsync(
188 new Palette.PaletteAsyncListener() {
190 public void onGenerated(Palette palette) {
191 if (palette != null) {
193 Log.d(TAG, "Palette: " + palette);
196 mWatchHandHighlightColor = palette.getVibrantColor(Color.RED);
197 mWatchHandColor = palette.getLightVibrantColor(Color.WHITE)
    [all...]
SweepWatchFaceService.java 32 import android.support.v7.graphics.Palette;
158 Palette.generateAsync(
160 new Palette.PaletteAsyncListener() {
162 public void onGenerated(Palette palette) {
163 if (palette != null) {
165 Log.d(TAG, "Palette: " + palette);
168 mWatchHandHighlightColor = palette.getVibrantColor(Color.RED);
169 mWatchHandColor = palette.getLightVibrantColor(Color.WHITE)
    [all...]
  /frameworks/base/core/java/com/android/internal/graphics/palette/
Palette.java 17 package com.android.internal.graphics.palette;
41 * Copied from: /frameworks/support/v7/palette/src/main/java/android/support/v7/
42 * graphics/Palette.java
58 * Instances are created with a {@link Palette.Builder} which supports several options to tweak the
59 * generated Palette. See that class' documentation for more information.
62 * which you load your image on. {@link Palette.Builder} supports both synchronous and asynchronous
67 * Palette p = Palette.from(bitmap).generate();
70 * Palette.from(bitmap).generate(new PaletteAsyncListener() {
71 * public void onGenerated(Palette p)
    [all...]
  /frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
Palette.java 54 * generated Palette. See that class' documentation for more information.
62 * Palette p = Palette.from(bitmap).generate();
65 * Palette.from(bitmap).generate(new PaletteAsyncListener() {
66 * public void onGenerated(Palette p) {
72 public final class Palette {
81 * Called when the {@link Palette} has been generated.
83 void onGenerated(Palette palette);
92 static final String LOG_TAG = "Palette";
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
i830_drm.h 190 unsigned int Palette[2][256];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mfobjects.h     [all...]

Completed in 421 milliseconds