Home
last modified time | relevance | path

Searched refs:mTimestamps (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DBatteryChartViewModel.java57 private final List<Long> mTimestamps; field in BatteryChartViewModel
81 mTimestamps = timestamps; in BatteryChartViewModel()
101 mTexts[index] = mLabelTextGenerator.generateText(mTimestamps, index); in getText()
108 mFullTexts[index] = mLabelTextGenerator.generateFullText(mTimestamps, index); in getFullText()
116 mLabelTextGenerator.generateContentDescription(mTimestamps, index); in getContentDescription()
152 return Objects.hash(mLevels, mTimestamps, mSelectedIndex, mAxisLabelPosition); in hashCode()
164 && Objects.equals(mTimestamps, batteryChartViewModel.mTimestamps) in equals()
179 .append(", timestamps: " + Objects.toString(mTimestamps)) in toString()
DBatteryLevelData.java50 private final List<Long> mTimestamps; field in BatteryLevelData.PeriodBatteryLevelData
58 mTimestamps = timestamps; in PeriodBatteryLevelData()
70 return mTimestamps; in getTimestamps()
86 Objects.toString(mTimestamps), in toString()
91 for (int index = 0; index < mTimestamps.size() - 1; index++) { in getIndexByTimestamps()
92 if (mTimestamps.get(index) <= startTimestamp in getIndexByTimestamps()
93 && endTimestamp <= mTimestamps.get(index + 1)) { in getIndexByTimestamps()
/packages/apps/Camera2/src/com/android/camera/one/v2/common/
DTimestampResponseListener.java35 private final Updatable<Long> mTimestamps; field in TimestampResponseListener
38 mTimestamps = timestamps; in TimestampResponseListener()
43 mTimestamps.update(timestamp); in onStarted()