/prebuilts/maven_repo/android/com/android/support/palette-v7/21.0.0/ |
palette-v7-21.0.0.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/21.0.2/ |
palette-v7-21.0.2.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/21.0.3/ |
palette-v7-21.0.3.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/22.0.0/ |
palette-v7-22.0.0.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/22.1.0/ |
palette-v7-22.1.0.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/22.1.1/ |
palette-v7-22.1.1.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/22.2.0/ |
palette-v7-22.2.0.pom | 6 <artifactId>palette-v7</artifactId>
|
/prebuilts/maven_repo/android/com/android/support/palette-v7/22.2.1/ |
palette-v7-22.2.1.pom | 6 <artifactId>palette-v7</artifactId>
|
/external/libpng/contrib/examples/ |
pngpixel.c | 82 /* The palette case is slightly more difficult - the palette and, if 89 png_colorp palette = NULL; local 92 if ((png_get_PLTE(png_ptr, info_ptr, &palette, &num_palette) & 93 PNG_INFO_PLTE) && num_palette > 0 && palette != NULL) 101 palette[index].red, palette[index].green, 102 palette[index].blue, 107 palette[index].red, palette[index].green [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/ |
color_scheme.html | 94 // The color palette is split in half, with the upper 95 // half of the palette being the "highlighted" verison 97 // 7 + (palette.length / 2). 102 // Within the color palette, there are "general purpose" colors, 114 var palette = paletteRaw.map(colorToRGBString); 142 * Gets the color palette. 145 return palette; 149 * Gets the raw color palette, where entries are still objects.
|
/external/fio/tools/plot/ |
graph3D.gpm | 27 #set palette rgbformulae 22,9,23 28 set palette rgbformulae 7,5,15
|
/frameworks/support/v7/palette/ |
build.gradle | 3 archivesBaseName = 'palette-v7' 67 name 'Android Support Palette v7'
|
/packages/wallpapers/Basic/res/values-hi/ |
strings.xml | 32 <string name="palette" msgid="1636154448241520718">"Color palette"</string>
|
/frameworks/base/docs/html/sdk/support_api_diff/23/changes/ |
pkg_android.support.v7.graphics.html | 84 <A NAME="Palette.Filter"></A> 85 <nobr><A HREF="../../../../reference/android/support/v7/graphics/Palette.Filter.html" target="_top"><code><I>Palette.Filter</I></code></A></nobr> 99 <A NAME="Palette.Builder"></A> 100 <nobr><A HREF="android.support.v7.graphics.Palette.Builder.html">Palette.Builder</A></nobr>
|
/external/libvncserver/libvncclient/ |
zrle.c | 297 else if( (type >= 2)&&(type <= 127) ) /* packed Palette */ 299 CARDBPP palette[16]; local 308 /* read palette */ 310 palette[i] = UncompressCPixel(buffer); 315 ((CARDBPP*)client->frameBuffer)[j+i] = palette[((*buffer)>>shift)&mask]; 366 else if( type >= 130 ) /* palette RLE */ 368 CARDBPP palette[128]; local 374 /* read palette */ 376 palette[i] = UncompressCPixel(buffer); 384 color = palette[(*buffer)&0x7f] [all...] |
/external/skia/src/utils/ |
SkTextureCompressor_R11EAC.cpp | 26 // mod_val is chosen from a palette of values based on the index of the 27 // given pixel. The palette is chosen by the value stored in mod. 57 // Pack the base codeword, palette, and multiplier into the 64 bits necessary 59 static uint64_t pack_r11eac_block(uint16_t base_cw, uint16_t palette, uint16_t multiplier, 61 SkASSERT(palette < 16); 67 const uint64_t p = static_cast<uint64_t>(palette) << 48; 82 // 3. Iterate through each palette and choose the one with the most accurate 111 // Finally, choose the proper palette and indices 116 const int *palette = kR11EACModifierPalettes[paletteIdx]; 118 // Iterate through each pixel to find the best palette inde [all...] |
/external/pdfium/samples/fx_lpng/lpng_v163/ |
fx_pngrtran.c | 392 /* Dither file to 8-bit. Supply a palette, the current number
393 * of elements in the palette, the maximum number of elements
395 * of colors is greater then the maximum number, the palette will be
411 png_set_quantize(png_structrp png_ptr, png_colorp palette,
450 /* Find the least used palette entries by starting a
481 /* Swap the palette around, and set up a table, if necessary */
497 palette[i] = palette[j];
519 tmp_color = palette[j];
520 palette[j] = palette[i]; 1586 png_colorp palette = png_ptr->palette; local 1803 png_colorp palette = png_ptr->palette; local 1834 png_colorp palette = png_ptr->palette; local [all...] |
/ndk/tests/build/issue20862-libpng-O0/jni/ |
pngrtran.c | 362 /* Dither file to 8-bit. Supply a palette, the current number 363 * of elements in the palette, the maximum number of elements 365 * of colors is greater then the maximum number, the palette will be 381 png_set_quantize(png_structp png_ptr, png_colorp palette, 420 /* Find the least used palette entries by starting a 451 /* Swap the palette around, and set up a table, if necessary */ 467 palette[i] = palette[j]; 489 tmp_color = palette[j]; 490 palette[j] = palette[i] 1553 png_colorp palette = png_ptr->palette; local 1769 png_colorp palette = png_ptr->palette; local 1800 png_colorp palette = png_ptr->palette; local [all...] |
/external/libpng/ |
pngrtran.c | 393 /* Dither file to 8-bit. Supply a palette, the current number 394 * of elements in the palette, the maximum number of elements 396 * of colors is greater then the maximum number, the palette will be 412 png_set_quantize(png_structrp png_ptr, png_colorp palette, 451 /* Find the least used palette entries by starting a 482 /* Swap the palette around, and set up a table, if necessary */ 498 palette[i] = palette[j]; 520 tmp_color = palette[j]; 521 palette[j] = palette[i] 1593 png_colorp palette = png_ptr->palette; local 1810 png_colorp palette = png_ptr->palette; local 1841 png_colorp palette = png_ptr->palette; local [all...] |
pnginfo.h | 36 * cleaned up before the structure is discarded: palette, trans, text, 63 png_colorp palette; /* array of color values (valid & PNG_INFO_PLTE) */ member in struct:png_info_def 64 png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */ 65 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */ 148 * same order as the palette colors, starting from index 0. Values 155 png_color_16 trans_color; /* transparent color for non-palette image */ 191 * various palette entries, so that a viewer can intelligently select a 192 * reduced-color palette, if required. Data is an array of "num_palette"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
PaletteMetadataDescriptor.java | 30 * Special version of {@link ViewElementDescriptor} which is initialized by the palette 78 * Initializes a new {@link SimpleElement} with the palette initialization 88 * Initializes a new {@link Element} with the palette initialization configuration
|
/external/skia/src/images/ |
SkImageDecoder_libpng.cpp | 204 // call only if color_type is PALETTE. Returns true if the ctable has alpha 381 /* Optional call to gamma correct and add the background to the palette 383 * update the palette for you (ie you selected such a transform above). 423 upscale png's palette to a direct model 667 png_colorp palette; local 671 png_get_PLTE(png_ptr, info_ptr, &palette, &numPalette); 701 *colorPtr++ = proc(*trans++, palette->red, palette->green, palette->blue); 702 palette++ [all...] |
/frameworks/base/docs/html/training/material/ |
theme.jd | 9 <li><a href="#ColorPalette">Customize the Color Palette</a></li> 25 <li>System widgets that let you set their color palette</li> 31 according to your brand identity with a color palette you control. You can tint the action bar and 35 color palette, the touch feedback animations, and the activity transitions for your app.</p> 69 palette. For more information, see 74 <h2 id="ColorPalette">Customize the Color Palette</h2>
|
/external/libvncserver/x11vnc/misc/turbovnc/ |
tight.c | 98 } PALETTE; 102 static PALETTE palette; variable 725 /* Prepare palette, convert image. */ 790 /* Prepare palette, convert image. */ 798 palette.entry[i].listNode->rgb; 816 (CARD16)palette.entry[i].listNode->rgb; [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/ |
xvmc_private.h | 90 /* optional palette for this subpicture */ 91 struct pipe_sampler_view *palette; member in struct:__anon16805
|