OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mtips
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Protips/src/com/android/protips/
ProtipWidget.java
66
private CharSequence[]
mTips
;
77
mTips
= context.getResources().getTextArray(mTipSet == 1 ? R.array.tips2 : R.array.tips);
79
if (
mTips
!= null) {
80
if (mMessage >=
mTips
.length) mMessage = 0;
121
mTips
= res.getTextArray(mTipSet == 1 ? R.array.tips2 : R.array.tips);
171
return (mMessage + 1) %
mTips
.length;
212
String[] parts = sNewlineRegex.split(
mTips
[mMessage], 2);
238
(1+mMessage),
mTips
.length));
Completed in 275 milliseconds