OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cursorSize
(Results
1 - 6
of
6
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/view/
LivePointerIconButton.java
49
int
cursorSize
= getHeight();
51
Bitmap bitmap = Bitmap.createBitmap(
cursorSize
,
cursorSize
, Bitmap.Config.ARGB_8888);
61
final int outerCenterX =
cursorSize
/ 2;
62
final int outerCenterY =
cursorSize
/ 2;
63
final int outerRadius =
cursorSize
/ 2 - strokeWidth;
72
final int innerCenterX = (int) (
cursorSize
* (1 - relativeX) / 2);
73
final int innerCenterY = (int) (
cursorSize
* (1 - relativeY) / 2);
74
final int innerRadius =
cursorSize
/ 6;
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnCursorPlane.cpp
94
int
cursorSize
= 0;
103
cursorSize
= h;
105
cursorSize
= w;
109
if (64 <=
cursorSize
&&
cursorSize
< 128) {
110
cursorSize
= 64;
112
} else if (128 <=
cursorSize
&&
cursorSize
< 256) {
113
cursorSize
= 128;
116
cursorSize
= 256
[
all
...]
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngCursorPlane.cpp
88
int
cursorSize
= 0;
97
cursorSize
= h;
99
cursorSize
= w;
103
dstX = mModeInfo.hdisplay - dstX -
cursorSize
;
104
dstY = mModeInfo.vdisplay - dstY -
cursorSize
;
108
if (64 <=
cursorSize
&&
cursorSize
< 128) {
109
cursorSize
= 64;
111
} else if (128 <=
cursorSize
&&
cursorSize
< 256)
[
all
...]
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnCursorPlane.cpp
93
int
cursorSize
= 0;
102
cursorSize
= h;
104
cursorSize
= w;
108
if (64 <=
cursorSize
&&
cursorSize
< 128) {
109
cursorSize
= 64;
111
} else if (128 <=
cursorSize
&&
cursorSize
< 256) {
112
cursorSize
= 128;
115
cursorSize
= 256
[
all
...]
/packages/apps/Email/provider_src/com/android/email/provider/
EmailMessageCursor.java
60
final int
cursorSize
= cursor.getCount();
61
mHtmlParts = new SparseArray<String>(
cursorSize
);
62
mTextParts = new SparseArray<String>(
cursorSize
);
/packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java
[
all
...]
Completed in 2545 milliseconds