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

  /external/skia/src/svg/parser/
SkSVGGradient.cpp 79 void SkSVGGradient::write(SkSVGParser& parser, SkString& baseColor) {
80 if (baseColor.c_str()[0] != '#')
87 f_id.append(baseColor.c_str() + 1);
98 SkASSERT(baseColor.c_str()[0] == '#');
99 SkASSERT(baseColor.size() == 7);
100 replacement.append(baseColor.c_str() + 1);
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 327 final int baseColor = a.getColor(R.styleable.ColorStateListItem_color, Color.MAGENTA);
355 final int color = modulateColorAlpha(baseColor, alphaMod);
447 final int baseColor = a.getColor(
451 mColors[i] = modulateColorAlpha(baseColor, alphaMod);
500 private int modulateColorAlpha(int baseColor, float alphaMod) {
502 return baseColor;
505 final int baseAlpha = Color.alpha(baseColor);
507 return (baseColor & 0xFFFFFF) | (alpha << 24);
  /external/deqp/modules/glshared/
glsScissorTests.cpp 619 const Color baseColor = getBaseColor(bufferFmt);
665 clearBuffers(gl, baseColor, 1.0f, 0);
684 clearBuffers(gl, baseColor, 1.0f, 0);
698 switch (baseColor.type)
701 clearEdges(refAccess, Vec4(baseColor.f[0], baseColor.f[1], baseColor.f[2], baseColor.f[3]), scissorArea);
706 clearEdges(refAccess, IVec4(baseColor.i[0], baseColor.i[1], baseColor.i[2], baseColor.i[3]), scissorArea)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Utilities.java 195 public static int getColorWithOverlay(int baseColor, int overlayColor, float overlayAlpha) {
197 (int) (overlayAlpha * Color.red(baseColor) +
199 (int) (overlayAlpha * Color.green(baseColor) +
201 (int) (overlayAlpha * Color.blue(baseColor) +
  /frameworks/support/design/src/android/support/design/widget/
NavigationView.java 416 ColorStateList baseColor = getResources().getColorStateList(value.resourceId);
422 int defaultColor = baseColor.getDefaultColor();
428 baseColor.getColorForState(DISABLED_STATE_SET, defaultColor),
  /frameworks/support/v7/appcompat/src/android/support/v7/content/res/
AppCompatColorStateListInflater.java 114 final int baseColor = a.getColor(R.styleable.ColorStateListItem_android_color,
144 final int color = modulateColorAlpha(baseColor, alphaMod);
  /packages/apps/Camera2/src/com/android/camera/ui/
TouchCircleDrawable.java 75 * @param baseColor The color of the initial expanded circle
78 public TouchCircleDrawable(Resources resources, int color, int baseColor) {
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatDrawableManager.java 578 private ColorStateList createButtonColorStateList(Context context, @ColorInt int baseColor) {
591 colors[i] = ColorUtils.compositeColors(colorControlHighlight, baseColor);
595 colors[i] = ColorUtils.compositeColors(colorControlHighlight, baseColor);
600 colors[i] = baseColor;
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 209 float baseColor[3];
218 baseColor[a] = ((randomUInt() % 155) + 100) / 255.f;
301 color[a] = (int)(ca * baseColor[a] * 255);
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
demo.c 345 float baseColor[3];
354 baseColor[a] = ((randomUInt() % 155) + 100) / 255.f;
437 color[a] = (int)(ca * baseColor[a] * 255);
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 209 float baseColor[3];
218 baseColor[a] = ((randomUInt() % 155) + 100) / 255.f;
301 color[a] = (int)(ca * baseColor[a] * 255);
  /external/deqp/modules/gles3/functional/
es3fFramebufferBlitTests.cpp 183 // Image origin must be visible (for baseColor)
194 const tcu::RGBA baseColor = result.getPixel(destinationArea.x(), destinationArea.y());
195 const bool signConfig = tcu::compareThreshold(baseColor, cellColorA, threshold);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 433 milliseconds