OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMaxStates
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/
MultiStateButton.java
45
private int
mMaxStates
;
64
mMaxStates
= 1;
79
mState = (mState + 1) %
mMaxStates
;
93
mMaxStates
= resources.length;
94
if(mState >=
mMaxStates
) {
95
mState =
mMaxStates
- 1;
104
if(state >=
mMaxStates
|| state < 0) {
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalZone.java
40
protected int
mMaxStates
;
72
mMaxStates
= state;
80
return
mMaxStates
;
403
if (
mMaxStates
< ThermalManager.DEFAULT_NUM_ZONE_STATES) {
ThermalManager.java
257
//
mMaxStates
= k + 1(for critical) + 1(for TOFF)
259
protected int
mMaxStates
;
279
//
mMaxStates
= k + 1(for critical) + 1(for TOFF)
280
return
mMaxStates
- 2;
284
mMaxStates
= state;
288
return
mMaxStates
;
Completed in 50 milliseconds