Home
last modified time | relevance | path

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

123

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/
DCaptionStyleCompat.java94 public final int backgroundColor; field in CaptionStyleCompat
149 int backgroundColor, in CaptionStyleCompat() argument
155 this.backgroundColor = backgroundColor; in CaptionStyleCompat()
167 captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, in createFromCaptionStyleV19()
177 captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, in createFromCaptionStyleV21()
/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/llvm-project/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/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/llvm-project/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/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/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyle.java78 private int backgroundColor; field in TtmlStyle
178 return backgroundColor; in getBackgroundColor()
181 public TtmlStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
182 this.backgroundColor = backgroundColor; in setBackgroundColor()
247 setBackgroundColor(ancestor.backgroundColor); in inherit()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCssStyle.java89 private int backgroundColor; field in WebvttCssStyle
251 return backgroundColor; in getBackgroundColor()
254 public WebvttCssStyle setBackgroundColor(int backgroundColor) { in setBackgroundColor() argument
255 this.backgroundColor = backgroundColor; in setBackgroundColor()
/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/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/setupdesign/main/src/com/google/android/setupdesign/
DGlifLayout.java159 ColorStateList backgroundColor = in init() local
161 setBackgroundBaseColor(backgroundColor); in init()
423 int backgroundColor = 0; in updateBackground() local
425 backgroundColor = backgroundBaseColor.getDefaultColor(); in updateBackground()
427 backgroundColor = primaryColor.getDefaultColor(); in updateBackground()
431 ? new GlifPatternDrawable(backgroundColor) in updateBackground()
432 : new ColorDrawable(backgroundColor); in updateBackground()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSubtitlePainter.java88 private int backgroundColor; field in SubtitlePainter
195 && this.backgroundColor == style.backgroundColor in draw()
225 this.backgroundColor = style.backgroundColor; in draw()
310 if (Color.alpha(backgroundColor) > 0) { in setupTextLayout()
314 new BackgroundColorSpan(backgroundColor), 0, cueText.length(), Spanned.SPAN_PRIORITY); in setupTextLayout()
317 new BackgroundColorSpan(backgroundColor), in setupTextLayout()
/external/skqp/gm/
Dgm.h129 SkColor backgroundColor) in SimpleGM() argument
131 if (backgroundColor != SK_ColorWHITE) { in SimpleGM()
132 this->setBGColor(backgroundColor); in SimpleGM()
/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.java54 SkottieAnimation(TextureView view, InputStream is, int backgroundColor, int repeatCount) { in SkottieAnimation() argument
59 mBackgroundColor = backgroundColor; in SkottieAnimation()
64 SkottieAnimation(SurfaceView view, InputStream is, int backgroundColor, int repeatCount) { in SkottieAnimation() argument
69 mBackgroundColor = backgroundColor; in SkottieAnimation()
476 int backgroundColor, boolean forceDraw); in nDrawFrame() argument
/external/perfetto/ui/src/frontend/
Dtrack_group_panel.ts51 private backgroundColor = '#ffffff'; // Updated from CSS later. property in TrackGroupPanel
151 this.backgroundColor =
154 this.backgroundColor =
179 ctx.fillStyle = this.backgroundColor;
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/cea/
DCea708Decoder.java668 int backgroundColor = in handleSetPenColor() local
677 currentCueInfoBuilder.setPenColor(foregroundColor, backgroundColor, edgeColor); in handleSetPenColor()
920 private int backgroundColor; field in Cea708Decoder.CueInfoBuilder
951 backgroundColor = COLOR_SOLID_BLACK; in reset()
1067 public void setPenColor(int foregroundColor, int backgroundColor, int edgeColor) { in setPenColor() argument
1081 if (this.backgroundColor != backgroundColor) { in setPenColor()
1082 captionStringBuilder.setSpan(new BackgroundColorSpan(this.backgroundColor), in setPenColor()
1087 if (backgroundColor != COLOR_SOLID_BLACK) { in setPenColor()
1089 this.backgroundColor = backgroundColor; in setPenColor()
1164 spannableStringBuilder.setSpan(new BackgroundColorSpan(backgroundColor), in buildSpannableString()
/external/webrtc/examples/objc/AppRTCMobile/ios/
DARDMainView.m95 _startRegularCallButton.backgroundColor
106 _startLoopbackCallButton.backgroundColor =
119 _audioLoopButton.backgroundColor =
127 self.backgroundColor = [UIColor whiteColor];

123