Home
last modified time | relevance | path

Searched refs:backgroundColor (Results 1 – 25 of 79) sorted by relevance

1234

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DCaptionStyleCompat.java76 public final int backgroundColor; field in CaptionStyleCompat
128 int backgroundColor, in CaptionStyleCompat() argument
134 this.backgroundColor = backgroundColor; in CaptionStyleCompat()
147 captionStyle.backgroundColor, in createFromCaptionStyleV19()
160 captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, in createFromCaptionStyleV21()
DSubtitlePainter.java77 private int backgroundColor; field in SubtitlePainter
176 && this.backgroundColor == style.backgroundColor in draw()
204 this.backgroundColor = style.backgroundColor; in draw()
271 if (Color.alpha(backgroundColor) > 0) { in setupTextLayout()
275 new BackgroundColorSpan(backgroundColor), 0, cueText.length(), Spanned.SPAN_PRIORITY); in setupTextLayout()
278 new BackgroundColorSpan(backgroundColor), in setupTextLayout()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DCaptionStyleCompat.java80 public final int backgroundColor; field in CaptionStyleCompat
132 int backgroundColor, in CaptionStyleCompat() argument
138 this.backgroundColor = backgroundColor; in CaptionStyleCompat()
151 captionStyle.backgroundColor, in createFromCaptionStyleV19()
164 captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, in createFromCaptionStyleV21()
DSubtitlePainter.java77 private int backgroundColor; field in SubtitlePainter
176 && this.backgroundColor == style.backgroundColor in draw()
204 this.backgroundColor = style.backgroundColor; in draw()
271 if (Color.alpha(backgroundColor) > 0) { in setupTextLayout()
275 new BackgroundColorSpan(backgroundColor), 0, cueText.length(), Spanned.SPAN_PRIORITY); in setupTextLayout()
278 new BackgroundColorSpan(backgroundColor), in setupTextLayout()
/external/proguard/src/proguard/gui/splash/
DBufferedSprite.java36 private final Color backgroundColor; field in BufferedSprite
89 Color backgroundColor, in BufferedSprite() argument
97 this.backgroundColor = backgroundColor; in BufferedSprite()
113 if (backgroundColor != null) in paint()
122 bufferGraphics.setColor(backgroundColor); in paint()
/external/clang/test/SemaObjC/
Dobjcbridge-related-attribute.m16 - (NSColor *)backgroundColor; method
23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu…
29 textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning}}
34 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted…
35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to …
39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}}
40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}}
Darc-objcbridge-related-attribute.m16 - (NSColor *)backgroundColor; method
23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu…
29 …textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning t…
34 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted…
35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to …
39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}}
40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}}
Dcheck-objcbridge-related-attribute-lookup.m17 - (NSColor *)backgroundColor; method
23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu…
25 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted…
29 …textField.backgroundColor = newColor; // expected-error {{could not find Objective-C class 'XNSCol…
31 …newColor = textField.backgroundColor ; // expected-error {{could not find Objective-C class 'XNSCo…
36 …textField.backgroundColor = newColor; // expected-error {{'PNsColor' must be name of an Objective-…
38 …newColor = textField.backgroundColor; // expected-error {{'PNsColor' must be name of an Objective-…
/external/clang/test/FixIt/
Dfixit-objc-bridge-related-attr.m16 - (NSColor *)backgroundColor; method
20 textField.backgroundColor = newColor;
25 newColor = textField.backgroundColor; // [textField.backgroundColor CGColor]
26 return textField.backgroundColor;
Dfixit-objc-bridge-related-property.m15 - (NSColor *)backgroundColor; method
19 newColor = textField.backgroundColor;
20 return textField.backgroundColor;
/external/ImageMagick/Magick++/tests/
Dattributes.cpp157 if ( string(image.backgroundColor()) != string(ColorRGB("white")) ) in main()
161 << string(image.backgroundColor()) in main()
166 image.backgroundColor("blue"); in main()
167 if ( !image.backgroundColor().isValid() ) in main()
171 << string(image.backgroundColor()) in main()
175 if ( string(image.backgroundColor()) != "#0000FF" && in main()
176 string(image.backgroundColor()) != "#00000000FFFF" && in main()
177 string(image.backgroundColor()) != "#0000000000000000FFFFFFFF" && in main()
178 string(image.backgroundColor()) != "#00000000000000000000000000000000FFFFFFFFFFFFFFFF" ) in main()
182 << string(image.backgroundColor()) << ") is incorrect" in main()
[all …]
/external/skia/platform_tools/android/apps/jetski/src/main/java/org/skia/jetski/util/
DSkottieView.java131 int backgroundColor = a.getColor(R.styleable.SkottieView_background_color, -1); in SkottieView() local
132 if (backgroundColor == -1) { in SkottieView()
136 if (android.graphics.Color.alpha(backgroundColor) != 255) { in SkottieView()
141 Color c = new Color(backgroundColor); in SkottieView()
142 setSource(src, context, new Color(backgroundColor)); in SkottieView()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyle.java75 private int backgroundColor; field in TtmlStyle
177 return backgroundColor; in getBackgroundColor()
180 public TtmlStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
181 this.backgroundColor = backgroundColor; in setBackgroundColor()
264 setBackgroundColor(ancestor.backgroundColor); in inherit()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyle.java82 private int backgroundColor; field in TtmlStyle
183 return backgroundColor; in getBackgroundColor()
186 public TtmlStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
187 this.backgroundColor = backgroundColor; in setBackgroundColor()
270 setBackgroundColor(ancestor.backgroundColor); in inherit()
/external/libwebsockets/test-apps/
Dtest.js211 document.getElementById("wsdi_statustd").style.backgroundColor =
223 document.getElementById("wsdi_statustd").style.backgroundColor =
242 document.getElementById("s_statustd").style.backgroundColor =
283 document.getElementById("s_statustd").style.backgroundColor =
318 document.getElementById("ot_statustd").style.backgroundColor =
330 document.getElementById("ot_statustd").style.backgroundColor =
421 document.getElementById("wslm_statustd").style.backgroundColor =
453 document.getElementById("wslm_statustd").style.backgroundColor =
/external/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dtest.js211 document.getElementById("wsdi_statustd").style.backgroundColor =
223 document.getElementById("wsdi_statustd").style.backgroundColor =
242 document.getElementById("s_statustd").style.backgroundColor =
283 document.getElementById("s_statustd").style.backgroundColor =
318 document.getElementById("ot_statustd").style.backgroundColor =
330 document.getElementById("ot_statustd").style.backgroundColor =
421 document.getElementById("wslm_statustd").style.backgroundColor =
453 document.getElementById("wslm_statustd").style.backgroundColor =
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCssStyle.java90 private int backgroundColor; field in WebvttCssStyle
248 return backgroundColor; in getBackgroundColor()
251 public WebvttCssStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
252 this.backgroundColor = backgroundColor; in setBackgroundColor()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCssStyle.java96 private int backgroundColor; field in WebvttCssStyle
253 return backgroundColor; in getBackgroundColor()
256 public WebvttCssStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
257 this.backgroundColor = backgroundColor; in setBackgroundColor()
/external/setupdesign/main/src/com/google/android/setupdesign/
DGlifLayout.java168 ColorStateList backgroundColor = in init() local
170 setBackgroundBaseColor(backgroundColor); in init()
457 int backgroundColor = 0; in updateBackground() local
459 backgroundColor = backgroundBaseColor.getDefaultColor(); in updateBackground()
461 backgroundColor = primaryColor.getDefaultColor(); in updateBackground()
465 ? new GlifPatternDrawable(backgroundColor) in updateBackground()
466 : new ColorDrawable(backgroundColor); in updateBackground()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/cea/
DCea708Decoder.java689 int backgroundColor = in handleSetPenColor() local
698 currentCueInfoBuilder.setPenColor(foregroundColor, backgroundColor, edgeColor); in handleSetPenColor()
957 private int backgroundColor; field in Cea708Decoder.CueInfoBuilder
988 backgroundColor = COLOR_SOLID_BLACK; in reset()
1139 public void setPenColor(int foregroundColor, int backgroundColor, int edgeColor) { in setPenColor() argument
1155 if (this.backgroundColor != backgroundColor) { in setPenColor()
1157 new BackgroundColorSpan(this.backgroundColor), in setPenColor()
1163 if (backgroundColor != COLOR_SOLID_BLACK) { in setPenColor()
1165 this.backgroundColor = backgroundColor; in setPenColor()
1250 new BackgroundColorSpan(backgroundColor), in buildSpannableString()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/cea/
DCea708Decoder.java691 int backgroundColor = in handleSetPenColor() local
700 currentCueInfoBuilder.setPenColor(foregroundColor, backgroundColor, edgeColor); in handleSetPenColor()
959 private int backgroundColor; field in Cea708Decoder.CueInfoBuilder
990 backgroundColor = COLOR_SOLID_BLACK; in reset()
1141 public void setPenColor(int foregroundColor, int backgroundColor, int edgeColor) { in setPenColor() argument
1157 if (this.backgroundColor != backgroundColor) { in setPenColor()
1159 new BackgroundColorSpan(this.backgroundColor), in setPenColor()
1165 if (backgroundColor != COLOR_SOLID_BLACK) { in setPenColor()
1167 this.backgroundColor = backgroundColor; in setPenColor()
1252 new BackgroundColorSpan(backgroundColor), in buildSpannableString()
/external/perfetto/ui/src/frontend/
Dtrack_group_panel.ts51 private backgroundColor = '#ffffff'; // Updated from CSS later. property in TrackGroupPanel
171 this.backgroundColor =
174 this.backgroundColor =
208 ctx.fillStyle = this.backgroundColor;
/external/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/
DSkottieRunner.java65 …public SkottieAnimation createAnimation(TextureView view, InputStream is, int backgroundColor, int… in createAnimation() argument
66 return new SkottieAnimation(view, is, backgroundColor, repeatCount); in createAnimation()
82 …public SkottieAnimation createAnimation(SurfaceView view, InputStream is, int backgroundColor, int… in createAnimation() argument
83 return new SkottieAnimation(view, is, backgroundColor, repeatCount); in createAnimation()
DSkottieAnimation.java55 SkottieAnimation(TextureView view, InputStream is, int backgroundColor, int repeatCount) { in SkottieAnimation() argument
60 mBackgroundColor = backgroundColor; in SkottieAnimation()
65 SkottieAnimation(SurfaceView view, InputStream is, int backgroundColor, int repeatCount) { in SkottieAnimation() argument
70 mBackgroundColor = backgroundColor; in SkottieAnimation()
481 int backgroundColor, boolean forceDraw); in nDrawFrame() argument
/external/lottie/sample-compose/src/main/java/com/airbnb/lottie/sample/compose/
DRoute.kt62 fun forUrl(url: String, backgroundColor: String? = null) = when (backgroundColor) { in navigate()

1234