OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:backgroundcolor
(Results
1 - 25
of
271
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/clang/test/SemaObjC/
objcbridge-related-attribute.m
16
- (NSColor *)
backgroundColor
;
23
textField.
backgroundColor
= newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; use '+colorWithCGColor:' method for this conversion}}
29
textField.
backgroundColor
= newColor; // expected-warning {{incompatible pointer types assigning}}
34
newColor = textField.
backgroundColor
; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
35
return textField.
backgroundColor
; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
39
newColor = textField.
backgroundColor
; // expected-warning {{incompatible pointer types assigning}}
40
return textField.
backgroundColor
; // expected-warning {{incompatible pointer types returning}}
arc-objcbridge-related-attribute.m
16
- (NSColor *)
backgroundColor
;
23
textField.
backgroundColor
= newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *__strong'; use '+colorWithCGColor:' method for this conversion}}
29
textField.
backgroundColor
= newColor; // expected-warning {{incompatible pointer types assigning to 'NSColor *__strong' from 'CGColorRef1' (aka 'struct CGColor1 *')}}
34
newColor = textField.
backgroundColor
; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
35
return textField.
backgroundColor
; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
39
newColor = textField.
backgroundColor
; // expected-warning {{incompatible pointer types assigning}}
40
return textField.
backgroundColor
; // expected-warning {{incompatible pointer types returning}}
check-objcbridge-related-attribute-lookup.m
17
- (NSColor *)
backgroundColor
;
23
textField.
backgroundColor
= newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; use '+colorXWithCGColor:' method for this conversion}} \
25
newColor = textField.
backgroundColor
; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CXGColor' method for this conversion}} \
29
textField.
backgroundColor
= newColor; // expected-error {{could not find Objective-C class 'XNSColor' to convert 'CGColorRef1' (aka 'struct CGColor1 *') to 'NSColor *'}} \
31
newColor = textField.
backgroundColor
; // expected-error {{could not find Objective-C class 'XNSColor' to convert 'NSColor *' to 'CGColorRef1' (aka 'struct CGColor1 *')}} \
36
textField.
backgroundColor
= newColor; // expected-error {{'PNsColor' must be name of an Objective-C class to be able to convert 'CGColorRef2' (aka 'struct CGColor2 *') to 'NSColor *'}} \
38
newColor = textField.
backgroundColor
; // expected-error {{'PNsColor' must be name of an Objective-C class to be able to convert 'NSColor *' to 'CGColorRef2' (aka 'struct CGColor2 *')}} \
/frameworks/base/packages/SystemUI/res/anim/
ic_signal_blink_2.xml
26
android:value="?attr/
backgroundColor
"/>
29
android:value="?attr/
backgroundColor
"/>
38
android:value="?attr/
backgroundColor
"/>
41
android:value="?attr/
backgroundColor
"/>
ic_signal_blink_1.xml
32
android:value="?attr/
backgroundColor
"/>
35
android:value="?attr/
backgroundColor
"/>
ic_signal_blink_3.xml
26
android:value="?attr/
backgroundColor
"/>
29
android:value="?attr/
backgroundColor
"/>
/external/clang/test/FixIt/
fixit-objc-bridge-related-attr.m
16
- (NSColor *)
backgroundColor
;
20
textField.
backgroundColor
= newColor;
25
newColor = textField.
backgroundColor
; // [textField.
backgroundColor
CGColor]
26
return textField.
backgroundColor
;
fixit-objc-bridge-related-property.m
15
- (NSColor *)
backgroundColor
;
19
newColor = textField.
backgroundColor
;
20
return textField.
backgroundColor
;
/external/proguard/src/proguard/gui/splash/
BufferedSprite.java
36
private final Color
backgroundColor
;
79
* @param
backgroundColor
the background color that is used for the buffer.
89
Color
backgroundColor
,
97
this.
backgroundColor
=
backgroundColor
;
113
if (
backgroundColor
!= null)
122
bufferGraphics.setColor(
backgroundColor
);
/frameworks/base/packages/SystemUI/res/drawable/
stat_sys_signal_carrier_network_change.xml
27
android:fillColor="?attr/
backgroundColor
"
31
android:fillColor="?attr/
backgroundColor
"
34
android:fillColor="?attr/
backgroundColor
"
/external/opencv3/samples/winrt/ImageManipulations/
Package.appxmanifest
18
<m2:VisualElements DisplayName="OCV Image Manipulations" Description="OpenCV Image Manipulations sample"
BackgroundColor
="#00b2f0" ForegroundText="light" Square150x150Logo="Assets\opencv-logo-150.png" Square30x30Logo="Assets\opencv-logo-30.png">
24
<m2:SplashScreen
BackgroundColor
="#00b2f0" Image="Assets\splash-sdk.png" />
/external/pdfium/xfa/src/fxbarcode/
BC_Writer.cpp
46
void CBC_Writer::SetBackgroundColor(FX_ARGB
backgroundColor
) {
47
m_backgroundColor =
backgroundColor
;
BC_Writer.h
23
virtual void SetBackgroundColor(FX_ARGB
backgroundColor
);
/frameworks/base/core/java/android/text/style/
SuggestionRangeSpan.java
67
public void setBackgroundColor(int
backgroundColor
) {
68
mBackgroundColor =
backgroundColor
;
/packages/services/Car/car-support-lib/src/android/support/car/ui/
ColorChecker.java
35
public static int getTintColor(Context context, int
backgroundColor
) {
39
return getTintColor(
backgroundColor
, lightTintColor, darkTintColor);
47
public static int getNonCriticalTintColor(Context context, int
backgroundColor
) {
51
return getNonCriticalTintColor(
backgroundColor
, lightTintColor, darkTintColor);
57
public static int getTintColor(int
backgroundColor
, int... tintColors) {
58
return getTintColor(MIN_CONTRAST_RATIO,
backgroundColor
, tintColors);
64
public static int getNonCriticalTintColor(int
backgroundColor
, int... tintColors) {
65
return getTintColor(MIN_NON_CRITICAL_CONTRAST_RATIO,
backgroundColor
, tintColors);
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
apply-preserving-inline-style.js
31
assert.equal(this.style.
backgroundColor
, 'green');
37
this.style.
backgroundColor
= 'rgb(1, 2, 3)';
39
assert.equal(this.style.
backgroundColor
, 'rgb(1, 2, 3)');
41
assert.equal(getComputedStyle(this.element).
backgroundColor
, 'rgb(1, 2, 3)');
50
assert.equal(getComputedStyle(this.element).
backgroundColor
, 'rgb(1, 2, 3)');
/external/opencv3/samples/winrt/FaceDetection/FaceDetection/
Package.appxmanifest
33
BackgroundColor
="#464646">
/cts/tests/tests/assist/testapp/src/android/voiceinteraction/testapp/
ScreenshotActivity.java
46
int
backgroundColor
= getIntent().getIntExtra(Utils.SCREENSHOT_COLOR_KEY, Color.WHITE);
48
view.setBackgroundColor(
backgroundColor
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiCategoryPageIndicatorView.java
41
public void setColors(final int foregroundColor, final int
backgroundColor
) {
43
setBackgroundColor(
backgroundColor
);
/external/skia/gm/
gm.h
135
SkColor
backgroundColor
)
137
if (
backgroundColor
!= SK_ColorWHITE) {
138
this->setBGColor(
backgroundColor
);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationCustomViewWrapper.java
123
private boolean isColorLight(int
backgroundColor
) {
124
return Color.alpha(
backgroundColor
) == 0
125
|| ColorUtils.calculateLuminance(
backgroundColor
) > 0.5;
/external/v8/test/mjsunit/regress/
regress-3252443.js
32
document.getElementById(p1+''+p0).style.
backgroundColor
= "";
38
document.getElementById(p1+''+i).style.
backgroundColor
= "";
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
CardViewApi21.java
27
ColorStateList
backgroundColor
, float radius, float elevation, float maxElevation) {
28
final RoundRectDrawable background = new RoundRectDrawable(
backgroundColor
, radius);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListPinnedHeaderView.java
45
int
backgroundColor
= a.getColor(
56
setBackgroundColor(
backgroundColor
);
/packages/apps/Messaging/src/com/android/messaging/ui/
ViewPagerTabStrip.java
49
int
backgroundColor
= res.getColor(R.color.action_bar_background_color);
54
setBackgroundColor(
backgroundColor
);
Completed in 870 milliseconds
1
2
3
4
5
6
7
8
9
10
11