Searched defs:summary (Results 1 - 9 of 9) 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/preference/
H A DListPreference.java54 /* Retrieve the Preference summary attribute since it's private
139 * Returns the summary of this ListPreference. If the summary
144 * @return the summary with appropriate string substitution
157 * Sets the summary for this Preference with a CharSequence.
158 * If the summary has a
163 * @param summary The summary for the preference.
166 public void setSummary(CharSequence summary) { argument
167 super.setSummary(summary);
[all...]
H A DMultiCheckPreference.java57 /* Retrieve the Preference summary attribute since it's private
172 * Returns the summary of this ListPreference. If the summary
177 * @return the summary with appropriate string substitution
189 * Sets the summary for this Preference with a CharSequence.
190 * If the summary has a
195 * @param summary The summary for the preference.
198 public void setSummary(CharSequence summary) { argument
199 super.setSummary(summary);
[all...]
H A DTwoStatePreference.java107 * Sets the summary to be shown when checked.
109 * @param summary The summary to be shown when checked.
111 public void setSummaryOn(CharSequence summary) { argument
112 mSummaryOn = summary;
120 * @param summaryResId The summary as a resource.
127 * Returns the summary to be shown when checked.
128 * @return The summary.
135 * Sets the summary to be shown when unchecked.
137 * @param summary Th
139 setSummaryOff(CharSequence summary) argument
[all...]
H A DPreferenceActivity.java252 TextView summary; field in class:PreferenceActivity.HeaderAdapter.HeaderViewHolder
273 holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary);
284 CharSequence summary = header.getSummary(getContext().getResources());
285 if (!TextUtils.isEmpty(summary)) {
286 holder.summary.setVisibility(View.VISIBLE);
287 holder.summary.setText(summary);
289 holder.summary.setVisibility(View.GONE);
328 * Resource ID of optional summary describin
337 public CharSequence summary; field in class:PreferenceActivity.Header
[all...]
H A DPreference.java392 * {@link android.R.id#title} and {@link android.R.id#summary}.
520 com.android.internal.R.id.summary);
522 final CharSequence summary = getSummary();
523 if (!TextUtils.isEmpty(summary)) {
524 summaryView.setText(summary);
682 * Returns the summary of this Preference.
684 * @return The summary.
692 * Sets the summary for this Preference with a CharSequence.
694 * @param summary The summary fo
696 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.java508 boolean summary = false;
519 summary = true;
546 doListPermissions(groupList, groups, labels, summary,
552 doListPermissions(groupList, groups, labels, summary,
559 doListPermissions(groupList, groups, labels, summary,
565 doListPermissions(groupList, groups, labels, summary,
575 boolean groups, boolean labels, boolean summary,
586 if (summary) {
612 System.out.println(((labels && !summary)
631 if (summary) {
574 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.java851 // verify summary API
870 // verify summary API
898 private void expectNetworkStatsSummary(NetworkStats summary) throws Exception { argument
899 expectNetworkStatsSummaryDev(summary);
900 expectNetworkStatsSummaryXt(summary);
903 private void expectNetworkStatsSummaryDev(NetworkStats summary) throws Exception { argument
904 expect(mNetManager.getNetworkStatsSummaryDev()).andReturn(summary).atLeastOnce();
907 private void expectNetworkStatsSummaryXt(NetworkStats summary) throws Exception { argument
908 expect(mNetManager.getNetworkStatsSummaryXt()).andReturn(summary).atLeastOnce();

Completed in 248 milliseconds