Searched defs:mSummary (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/preference/
H A DListPreference.java43 private String mSummary; field in class:ListPreference
61 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
166 if (mSummary == null) {
169 return String.format(mSummary, entry == null ? "" : entry);
185 if (summary == null && mSummary != null) {
186 mSummary = null;
187 } else if (summary != null && !summary.equals(mSummary)) {
188 mSummary = summary.toString();
H A DMultiCheckPreference.java43 private String mSummary; field in class:MultiCheckPreference
64 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
191 if (mSummary == null) {
194 return mSummary;
210 if (summary == null && mSummary != null) {
211 mSummary = null;
212 } else if (summary != null && !summary.equals(mSummary)) {
213 mSummary = summary.toString();
H A DPreference.java105 private CharSequence mSummary; field in class:Preference
239 mSummary = a.getString(attr);
732 return mSummary;
741 if (summary == null && mSummary != null || summary != null && !summary.equals(mSummary)) {
742 mSummary = summary;
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreference.java43 private String mSummary; field in class:ListPreference
66 mSummary = TypedArrayUtils.getString(a, R.styleable.Preference_summary,
173 if (mSummary == null) {
176 return String.format(mSummary, entry == null ? "" : entry);
192 if (summary == null && mSummary != null) {
193 mSummary = null;
194 } else if (summary != null && !summary.equals(mSummary)) {
195 mSummary = summary.toString();
H A DPreference.java99 private CharSequence mSummary; field in class:Preference
240 mSummary = TypedArrayUtils.getString(a, R.styleable.Preference_summary,
647 return mSummary;
656 if (summary == null && mSummary != null || summary != null && !summary.equals(mSummary)) {
657 mSummary = summary;
/frameworks/base/core/java/android/app/usage/
H A DNetworkStats.java73 private android.net.NetworkStats mSummary = null; field in class:NetworkStats
269 if (mSummary != null) {
281 if (mSummary != null) {
282 return mEnumerationIndex < mSummary.size();
316 mSummary = mSession.getDeviceSummaryForNetwork(mTemplate, mStartTimeStamp, mEndTimeStamp);
320 mEnumerationIndex = mSummary.size();
330 mSummary = mSession.getSummaryForAllUid(mTemplate, mStartTimeStamp, mEndTimeStamp, false);
415 if (bucketOut != null && mEnumerationIndex < mSummary.size()) {
416 mRecycledSummaryEntry = mSummary.getValues(mEnumerationIndex++, mRecycledSummaryEntry);
424 if (mSummary
[all...]
/frameworks/rs/api/
H A DSpecification.h155 std::string mSummary; // A one-line description member in class:Definition
168 std::string getSummary() const { return mSummary; }

Completed in 132 milliseconds