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

  /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);
  /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));
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.cpp 916 void AXNodeObject::colorValue(int& r, int& g, int& b) const
    [all...]
AXObject.h 414 virtual void colorValue(int& r, int& g, int& b) const { r = 0; g = 0; b = 0; }
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 585 void WebAXObject::colorValue(int& r, int& g, int& b) const
590 m_private->colorValue(r, g, b);
  /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...]
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 378 TypedValue colorValue = new TypedValue();
379 mContext.getTheme().resolveAttribute(R.attr.textColorSearchUrl, colorValue, true);
380 mUrlColor = mContext.getResources().getColorStateList(colorValue.resourceId);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 331 TypedValue colorValue = new TypedValue();
332 mContext.getTheme().resolveAttribute(R.attr.textColorSearchUrl, colorValue, true);
333 mUrlColor = mContext.getResources().getColorStateList(colorValue.resourceId);
  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 353 final int colorValue;
356 colorValue = Color.TRANSPARENT;
359 colorValue = value | 0xFF000000;
362 color.setValue(colorValue);
367 final int colorValue = color.getValue();
370 if (Color.alpha(colorValue) == 0) {
371 value = colorValue & 0x00FFFF00 | Color.alpha(opacityValue);
373 value = colorValue & 0x00FFFFFF | opacityValue & 0xFF000000;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.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 528 milliseconds