OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textBound
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
SimSelectorAvatarRequest.java
102
final Rect
textBound
= new Rect();
103
paint.getTextBounds(firstCharString, 0, 1,
textBound
);
105
final float xOffset = halfWidth -
textBound
.centerX();
106
final float yOffset = halfHeight -
textBound
.centerY();
AvatarRequest.java
170
final Rect
textBound
= new Rect();
171
paint.getTextBounds(firstCharString, 0, 1,
textBound
);
174
final float xOffset = halfWidth -
textBound
.centerX();
175
final float yOffset = halfHeight -
textBound
.centerY();
/frameworks/base/telephony/java/android/telephony/
SubscriptionInfo.java
225
final Rect
textBound
= new Rect();
226
paint.getTextBounds(index, 0, 1,
textBound
);
227
final float xOffset = (width / 2.f) -
textBound
.centerX();
228
final float yOffset = (height / 2.f) -
textBound
.centerY();
Completed in 1352 milliseconds