HomeSort by relevance Sort by last modified time
    Searched defs:colors (Results 226 - 250 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
Switch.java 304 ColorStateList colors; local
307 colors = appearance.getColorStateList(com.android.internal.R.styleable.
309 if (colors != null) {
310 mTextColors = colors;
    [all...]
NumberPicker.java 756 ColorStateList colors = mInputText.getTextColors(); local
757 int color = colors.getColorForState(ENABLED_STATE_SET, Color.WHITE);
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp 645 * quad is used to multiply the colors in the frame buffer. This is achieved by
1044 uint32_t colors[] = { local
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 40 xDivs(NULL), yDivs(NULL), colors(NULL), allocRows(NULL) { }
54 free(colors);
58 void* serialized = Res_png_9patch::serialize(info9Patch, xDivs, yDivs, colors);
72 uint32_t* colors; member in struct:image_info
161 printf("Image %s: w=%d, h=%d, d=%d, colors=%d, inter=%d, comp=%d\n",
707 // colors we can use in the 9-patch format.
715 image->colors = (uint32_t*)malloc(numColors * sizeof(uint32_t));
758 image->colors[colorIndex++] = c;
772 if (i == 0) printf("Colors in %s:\n ", imageName);
773 printf(" #%08x", image->colors[i])
882 uint32_t colors[256], col; local
    [all...]
Resource.cpp 1211 sp<ResourceTypeSet> colors; local
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
TabLayout.java 255 // Text colors come from the text appearance first
265 // current colors. This is exposed so that developers can use theme attributes to set
547 * Sets the text colors for the different states (normal, selected) used for the tabs.
557 * Gets the text colors for the different states (normal, selected) used for the tabs.
565 * Sets the text colors for the different states (normal, selected) used for the tabs.
1538 final int[] colors = new int[2]; local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SwitchCompat.java 239 ColorStateList colors; local
242 colors = appearance.getColorStateList(R.styleable.TextAppearance_android_textColor);
243 if (colors != null) {
244 mTextColors = colors;
    [all...]
  /hardware/ti/omap4-aah/hwc/
rgz_2d.c 199 char *colors[] = {"red", "orange", "yellow", "green", "blue", "indigo", "violet", NULL}; local
207 svgout_rect(rect, colors[b % 7], NULL);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XKBgeom.h 128 #define XkbShapeDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
130 #define XkbSetShapeDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0])
146 #define XkbTextDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
147 #define XkbSetTextDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0])
161 #define XkbIndicatorDoodadOnColor(g,d) (&(g)->colors[(d)->on_color_ndx])
162 #define XkbIndicatorDoodadOffColor(g,d) (&(g)->colors[(d)->off_color_ndx])
164 ((d)->on_color_ndx= (c)-&(g)->colors[0])
166 ((d)->off_color_ndx= (c)-&(g)->colors[0])
181 #define XkbLogoDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
183 #define XkbSetLogoDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0]
292 XkbColorPtr colors; member in struct:_XkbGeometry
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursesw.h 841 // Call this routine very early if you want to have colors.
867 // Number of available colors
869 int colors() const { return NumberOfColors(); } function in class:NCursesWindow
870 // Number of available colors
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XKBgeom.h 128 #define XkbShapeDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
130 #define XkbSetShapeDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0])
146 #define XkbTextDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
147 #define XkbSetTextDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0])
161 #define XkbIndicatorDoodadOnColor(g,d) (&(g)->colors[(d)->on_color_ndx])
162 #define XkbIndicatorDoodadOffColor(g,d) (&(g)->colors[(d)->off_color_ndx])
164 ((d)->on_color_ndx= (c)-&(g)->colors[0])
166 ((d)->off_color_ndx= (c)-&(g)->colors[0])
181 #define XkbLogoDoodadColor(g,d) (&(g)->colors[(d)->color_ndx])
183 #define XkbSetLogoDoodadColor(g,d,c) ((d)->color_ndx= (c)-&(g)->colors[0]
292 XkbColorPtr colors; member in struct:_XkbGeometry
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursesw.h 841 // Call this routine very early if you want to have colors.
867 // Number of available colors
869 int colors() const { return NumberOfColors(); } function in class:NCursesWindow
870 // Number of available colors
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 54 import android.provider.CalendarContract.Colors;
293 Colors._ID, // 0
294 Colors.COLOR, // 1
295 Colors.COLOR_KEY // 2
298 static final String COLORS_WHERE = Colors.ACCOUNT_NAME + "=? AND " + Colors.ACCOUNT_TYPE +
299 "=? AND " + Colors.COLOR_TYPE + "=" + Colors.TYPE_EVENT;
510 uri = Colors.CONTENT_URI;
535 ArrayList<Integer> colors = new ArrayList<Integer>() local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp 956 const tcu::Vec4 colors[4] = { yellow, red, green, blue }; local
985 const tcu::Vec4 colors[4] = { red, green, blue, yellow }; local
1260 const tcu::Vec4 colors[4] = { red, green, blue, yellow }; local
3322 const tcu::Vec4 colors[6] = { white, red, green, blue, yellow, magenta }; local
    [all...]
  /external/libvncserver/webclients/java-applet/
VncViewer.jar 
  /external/skia/src/utils/
SkLua.cpp 546 const SkColor* colors = NULL; local
557 colors = colorStorage;
563 get_ref<SkCanvas>(L, 1)->drawPatch(cubics, colors, texs, NULL, *get_obj<SkPaint>(L, 5));
1231 SkColor colors[3]; \/\/ hacked in for extracting info on 3 color case. local
1915 SkColor colors[] = { c0, c1 }; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 440 ColorStateList colors = new ColorStateList(new int[][] { local
443 mTextView.setTextColor(colors);
444 assertSame(colors, mTextView.getTextColors());
450 fail("Should thrown exception if the colors is null");
616 ColorStateList colors = new ColorStateList(new int[][] { local
619 mTextView.setHintTextColor(colors);
620 assertSame(colors, mTextView.getHintTextColors());
644 ColorStateList colors = new ColorStateList(new int[][] { local
647 mTextView.setLinkTextColor(colors);
648 assertSame(colors, mTextView.getLinkTextColors())
3019 ColorStateList colors = ColorStateList.valueOf(Color.RED); local
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 163 uint32_t* colors = getColors(); local
165 colors[i] = htonl(colors[i]);
183 uint32_t* colors = getColors(); local
185 colors[i] = ntohl(colors[i]);
202 const int32_t* yDivs, const uint32_t* colors)
207 serialize(patch, xDivs, yDivs, colors, newData);
212 const int32_t* yDivs, const uint32_t* colors, void* outData)
223 memcpy(data, colors, patch.numColors * sizeof(uint32_t))
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-packaging-plugin/0.20.0/
tycho-packaging-plugin-0.20.0.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xproto.h 1283 xQueryColorsReply colors; member in union:__anon29929
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xproto.h 1283 xQueryColorsReply colors; member in union:__anon31792
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
SignedVncViewer.jar 
UltraViewerSSL.jar 
VncViewer.jar 

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>