HomeSort by relevance Sort by last modified time
    Searched refs:colorValue (Results 1 - 13 of 13) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 401 String colorValue = attributeSet.getAttributeValue("android", "textColor");
402 if (colorValue != null) {
403 if (colorValue.startsWith("@color/") || colorValue.startsWith("@android:color/")) {
406 } else if (colorValue.startsWith("#")) {
407 int colorFromHex = (int) Long.valueOf(colorValue.replaceAll("#", ""), 16).longValue();
426 String colorValue = attributeSet.getAttributeValue("android", "hintColor");
427 if (colorValue != null) {
428 if (colorValue.startsWith("@color/") || colorValue.startsWith("@android:color/"))
    [all...]
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 182 int colorValue = (int)(255 - 200 * value);
183 setColorFilter(Color.rgb(colorValue, colorValue, colorValue),
  /external/libvncserver/x11vnc/misc/turbovnc/
tight.c 118 CARD32 colorValue, int *w_ptr, int *h_ptr);
120 CARD32 colorValue,
203 CARD32 colorValue;
275 if (CheckSolidTile(dx, dy, dw, dh, &colorValue, FALSE)) {
278 CARD32 r=(colorValue>>16)&0xFF;
279 CARD32 g=(colorValue>>8)&0xFF;
280 CARD32 b=(colorValue)&0xFF;
283 colorValue=(int)y+(((int)y)<<8)+(((int)y)<<16);
289 colorValue, &w_best, &h_best);
301 ExtendSolidArea(x, y, w, h, colorValue,
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 374 final int colorValue;
378 colorValue = CaptionStyle.COLOR_UNSPECIFIED;
382 colorValue = Color.TRANSPARENT;
386 colorValue = value | 0xFF000000;
392 color.setValue(colorValue);
396 final int colorValue = color.getValue();
400 if (!CaptionStyle.hasColor(colorValue)) {
403 } else if (colorValue == Color.TRANSPARENT) {
408 value = colorValue & 0x00FFFFFF | opacityValue & 0xFF000000;
  /external/libvncserver/libvncserver/
tight.c 175 uint32_t colorValue, int *w_ptr, int *h_ptr);
177 uint32_t colorValue,
298 uint32_t colorValue;
388 if (CheckSolidTile(cl, dx, dy, dw, dh, &colorValue, FALSE)) {
391 uint32_t r = (colorValue >> 16) & 0xFF;
392 uint32_t g = (colorValue >> 8) & 0xFF;
393 uint32_t b = (colorValue) & 0xFF;
396 colorValue = (int)y + (((int)y) << 8) + (((int)y) << 16);
402 colorValue, &w_best, &h_best);
414 ExtendSolidArea(cl, x, y, w, h, colorValue,
    [all...]
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 342 ExecConstValueAccess colorValue = execCtx.getValue(fragColorVar);
348 tcu::Vec4 c = tcu::Vec4(colorValue.component(0).asFloat(cNdx),
349 colorValue.component(1).asFloat(cNdx),
350 colorValue.component(2).asFloat(cNdx),
351 colorValue.component(3).asFloat(cNdx));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ValueParser.java 233 int colorValue = rawValue[valueIndex + 3] & 0xff;
250 TextColor color = TextColor.fromInt(colorValue);
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 379 TypedValue colorValue = new TypedValue();
380 context.getTheme().resolveAttribute(R.attr.textColorSearchUrl, colorValue, true);
381 mUrlColor = context.getColorStateList(colorValue.resourceId);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 337 TypedValue colorValue = new TypedValue();
338 mContext.getTheme().resolveAttribute(R.attr.textColorSearchUrl, colorValue, true);
339 mUrlColor = mContext.getResources().getColorStateList(colorValue.resourceId);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 

Completed in 1168 milliseconds