OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mDetail
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSDetailClipper.java
29
private final View
mDetail
;
35
mDetail
= detail;
43
final int w =
mDetail
.getWidth() - x;
44
final int h =
mDetail
.getHeight() - y;
57
mAnimator = ViewAnimationUtils.createCircularReveal(
mDetail
, x, y, innerR, r);
59
mAnimator = ViewAnimationUtils.createCircularReveal(
mDetail
, x, y, r, innerR);
69
mDetail
.postDelayed(mReverseBackground, (long)(mAnimator.getDuration() * 0.65));
87
mDetail
.setVisibility(View.VISIBLE);
98
mDetail
.setVisibility(View.GONE);
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
Relation.java
41
private final String
mDetail
;
45
mDetail
= detail;
61
return
mDetail
;
121
if (
mDetail
!= null ? !
mDetail
.equals(relation.
mDetail
) : relation.
mDetail
!= null) {
134
result = 31 * result + (
mDetail
!= null ?
mDetail
.hashCode() : 0);
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DeepShortcutView.java
47
private ShortcutInfoCompat
mDetail
;
103
mDetail
= detail;
108
CharSequence longLabel =
mDetail
.getLongLabel();
113
mBubbleText.setText(usingLongLabel ? longLabel :
mDetail
.getShortLabel());
129
.updateAndBindShortcutInfo(badged,
mDetail
);
Completed in 697 milliseconds