Searched defs:summary (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
73 public final String summary; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
77 this.summary = summary;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
88 String summary = null;
97 } else if (name.equals("summary")) {
98 summary = readSummary(parser);
105 return new Entry(title, summary, lin
[all...]
/frameworks/base/core/java/android/service/notification/
H A DCondition.java46 public final String summary; field in class:Condition
53 public Condition(Uri id, String summary, String line1, String line2, int icon, argument
56 if (summary == null) throw new IllegalArgumentException("summary is required");
61 this.summary = summary;
86 dest.writeString(summary);
98 .append(",summary=").append(summary)
129 && Objects.equals(other.summary, summar
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java60 if (group.summary != null) {
61 mListener.onGroupExpansionChanged(group.summary.row, expanded);
82 // When an app posts 2 different notifications as summary of the same group, then a
89 group.summary = null;
94 if (group.summary == null) {
98 // only the summary is left. Change it to unexpanded in a few ms. We do this to
109 group.summary.row.updateExpandButton();
125 group.summary = added;
132 if (group.summary != null && group.children.size() == 1 && !group.expanded) {
133 group.summary
217 public NotificationData.Entry summary; field in class:NotificationGroupManager.NotificationGroup
[all...]
/frameworks/base/core/java/android/preference/
H A DListPreference.java56 /* Retrieve the Preference summary attribute since it's private
156 * Returns the summary of this ListPreference. If the summary
161 * @return the summary with appropriate string substitution
174 * Sets the summary for this Preference with a CharSequence.
175 * If the summary has a
180 * @param summary The summary for the preference.
183 public void setSummary(CharSequence summary) { argument
184 super.setSummary(summary);
[all...]
H A DMultiCheckPreference.java59 /* Retrieve the Preference summary attribute since it's private
182 * Returns the summary of this ListPreference. If the summary
187 * @return the summary with appropriate string substitution
199 * Sets the summary for this Preference with a CharSequence.
200 * If the summary has a
205 * @param summary The summary for the preference.
208 public void setSummary(CharSequence summary) { argument
209 super.setSummary(summary);
[all...]
H A DTwoStatePreference.java105 * Sets the summary to be shown when checked.
107 * @param summary The summary to be shown when checked.
109 public void setSummaryOn(CharSequence summary) { argument
110 mSummaryOn = summary;
118 * @param summaryResId The summary as a resource.
125 * Returns the summary to be shown when checked.
126 * @return The summary.
133 * Sets the summary to be shown when unchecked.
135 * @param summary Th
137 setSummaryOff(CharSequence summary) argument
[all...]
H A DPreferenceActivity.java263 TextView summary; field in class:PreferenceActivity.HeaderAdapter.HeaderViewHolder
288 holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary);
308 CharSequence summary = header.getSummary(getContext().getResources());
309 if (!TextUtils.isEmpty(summary)) {
310 holder.summary.setVisibility(View.VISIBLE);
311 holder.summary.setText(summary);
313 holder.summary.setVisibility(View.GONE);
353 * Resource ID of optional summary describin
363 public CharSequence summary; field in class:PreferenceActivity.Header
[all...]
H A DPreference.java425 * {@link android.R.id#title} and {@link android.R.id#summary}.
556 com.android.internal.R.id.summary);
558 final CharSequence summary = getSummary();
559 if (!TextUtils.isEmpty(summary)) {
560 summaryView.setText(summary);
726 * Returns the summary of this Preference.
728 * @return The summary.
736 * Sets the summary for this Preference with a CharSequence.
738 * @param summary The summary fo
740 setSummary(CharSequence summary) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentInfo.java63 public String summary; field in class:DocumentInfo
82 summary = null;
102 summary = DurableUtils.readNullableString(in);
121 DurableUtils.writeNullableString(out, summary);
168 this.summary = getCursorString(cursor, Document.COLUMN_SUMMARY);
H A DRootInfo.java52 public String summary; field in class:RootInfo
72 summary = null;
91 summary = DurableUtils.readNullableString(in);
110 DurableUtils.writeNullableString(out, summary);
147 root.summary = getCursorString(cursor, Root.COLUMN_SUMMARY);
254 return !TextUtils.isEmpty(summary) ? summary : title;
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreference.java60 /* Retrieve the Preference summary attribute since it's private
163 * Returns the summary of this ListPreference. If the summary
168 * @return the summary with appropriate string substitution
181 * Sets the summary for this Preference with a CharSequence.
182 * If the summary has a
187 * @param summary The summary for the preference.
190 public void setSummary(CharSequence summary) { argument
191 super.setSummary(summary);
[all...]
H A DTwoStatePreference.java103 * Sets the summary to be shown when checked.
105 * @param summary The summary to be shown when checked.
107 public void setSummaryOn(CharSequence summary) { argument
108 mSummaryOn = summary;
116 * @param summaryResId The summary as a resource.
123 * Returns the summary to be shown when checked.
124 * @return The summary.
131 * Sets the summary to be shown when unchecked.
133 * @param summary Th
135 setSummaryOff(CharSequence summary) argument
[all...]
H A DPreference.java413 * {@link android.R.id#title} and {@link android.R.id#summary}.
485 final TextView summaryView = (TextView) holder.findViewById(android.R.id.summary);
487 final CharSequence summary = getSummary();
488 if (!TextUtils.isEmpty(summary)) {
489 summaryView.setText(summary);
641 * Returns the summary of this Preference.
643 * @return The summary.
651 * Sets the summary for this Preference with a CharSequence.
653 * @param summary The summary fo
655 setSummary(CharSequence summary) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.c218 Summary summary; local
220 summary = GAIN_MUTE;
222 summary = GAIN_UNITY;
224 summary = GAIN_OTHER;
226 summaries[channel] = summary;
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java596 boolean summary = false;
607 summary = true;
634 doListPermissions(groupList, groups, labels, summary,
640 doListPermissions(groupList, groups, labels, summary,
647 doListPermissions(groupList, groups, labels, summary,
653 doListPermissions(groupList, groups, labels, summary,
665 boolean groups, boolean labels, boolean summary,
676 if (summary) {
702 System.out.println(((labels && !summary)
721 if (summary) {
664 doListPermissions(ArrayList<String> groupList, boolean groups, boolean labels, boolean summary, int startProtectionLevel, int endProtectionLevel) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java852 // verify summary API
871 // verify summary API
900 private void expectNetworkStatsSummary(NetworkStats summary) throws Exception { argument
901 expectNetworkStatsSummaryDev(summary);
902 expectNetworkStatsSummaryXt(summary);
905 private void expectNetworkStatsSummaryDev(NetworkStats summary) throws Exception { argument
906 expect(mNetManager.getNetworkStatsSummaryDev()).andReturn(summary).atLeastOnce();
909 private void expectNetworkStatsSummaryXt(NetworkStats summary) throws Exception { argument
910 expect(mNetManager.getNetworkStatsSummaryXt()).andReturn(summary).atLeastOnce();

Completed in 447 milliseconds