Searched refs:summary (Results 26 - 50 of 53) sorted by relevance

123

/frameworks/support/v7/preference/src/android/support/v7/preference/
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...]
H A DCheckBoxPreference.java102 View summaryView = view.findViewById(android.R.id.summary);
H A DSwitchPreferenceCompat.java217 View summaryView = view.findViewById(android.R.id.summary);
/frameworks/rs/api/
H A Drs_matrix.spec18 summary: Matrix Functions
59 summary: Compute frustum planes
119 summary: Checks if a sphere is within the frustum planes
157 summary: Get one element
168 summary: Inverts a matrix in place
177 summary: Inverts and transpose a matrix in place
189 summary: Load or copy a matrix
234 summary: Load a frustum projection matrix
248 summary: Load identity matrix
260 summary
[all...]
H A Drs_debug.spec18 summary: Debugging Functions
32 summary: Log a message and values
H A Drs_allocation_data.spec18 summary: Allocation Data Access Functions
44 summary: Copy consecutive cells between allocations
74 summary: Copy a rectangular region of cells between allocations
97 summary: Get a vector from an allocation of scalars
153 summary: Store a vector into an allocation of scalars
206 summary: Return a cell from an allocation
348 summary: Get the U component of an allocation of YUVs
366 summary: Get the V component of an allocation of YUVs
384 summary: Get the Y component of an allocation of YUVs
402 summary
[all...]
H A Drs_core.spec18 summary: Overview
29 APIs, see the <a target="_parent" href="http://developer.android.com/reference/android/renderscript/package-summary.html">android.renderscript</a> package reference.
H A Drs_value_types.spec18 summary: Numerical Types
92 summary: 16 bit floating point value
101 summary: Two 16 bit floats
111 summary: Three 16 bit floats
121 summary: Four 16 bit floats
130 summary: 8 bit signed integer
137 summary: 16 bit signed integer
144 summary: 32 bit signed integer
152 summary: 64 bit signed integer
164 summary
[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);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java99 FontSizeUtils.updateFontSize(item, android.R.id.summary,
191 final TextView summary = (TextView) view.findViewById(android.R.id.summary);
194 summary.setVisibility(twoLines ? VISIBLE : GONE);
195 summary.setText(twoLines ? item.line2 : null);
/frameworks/base/core/java/android/preference/
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...]
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...]
/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/core/java/com/android/internal/widget/
H A DAccountItemView.java64 mAccountNumber = (TextView)view.findViewById(android.R.id.summary);
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java98 private static final String CONDITION_ATT_SUMMARY = "summary";
498 final String summary = parser.getAttributeValue(null, CONDITION_ATT_SUMMARY);
505 return new Condition(id, summary, line1, line2, icon, state, flags);
514 out.attribute(null, CONDITION_ATT_SUMMARY, c.summary);
663 String summary, line1, line2;
671 summary = res.getQuantityString(summaryResId, num, num, formattedTime);
681 summary = res.getQuantityString(summaryResId, num, num, formattedTime);
688 summary = line1 = line2 = res.getString(R.string.zen_mode_until, formattedTime);
691 return new Condition(id, summary, line1, line2, 0, Condition.STATE_TRUE,
937 final String rt = c == null ? "" : useLine1 ? c.line1 : c.summary;
[all...]
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DNetworkActivity.java221 String summary = null;
225 // Checks whether the user set the preference to include summary text
249 // a text summary.
254 // If the user set the preference to include summary text,
257 htmlString.append(entry.summary);
/frameworks/base/services/core/java/com/android/server/notification/
H A DScheduleConditionProvider.java221 final String summary = NOT_SHOWN;
224 return new Condition(id, summary, line1, line2, 0, state, Condition.FLAG_RELEVANT_ALWAYS);
H A DEventConditionProvider.java277 final String summary = NOT_SHOWN;
280 return new Condition(id, summary, line1, line2, 0, state, Condition.FLAG_RELEVANT_ALWAYS);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java894 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
970 if (summary != null) {
974 summary.setText(root.getDirectoryString());
975 summary.setVisibility(View.VISIBLE);
979 // No summary needed if icon speaks for itself
980 summary.setVisibility(View.INVISIBLE);
982 summary.setText(root.getDirectoryString());
983 summary.setVisibility(View.VISIBLE);
984 summary
[all...]
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DSwitchPreference.java220 View summaryView = view.findViewById(android.R.id.summary);
/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();
/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/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java643 : condition.summary;
689 button2.setEnabled(!Objects.equals(condition.summary, maxCondition.summary));
/frameworks/base/docs/html/ndk/reference/
H A Ddoxygen.css903 div.summary
912 div.summary a
1355 .summary { display: none; }
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1316 ExpandableNotificationRow summary = mGroupManager.getGroupSummary(
1319 mTmpChildOrderMap.get(summary);
1322 mTmpChildOrderMap.put(summary, orderedChildren);

Completed in 823 milliseconds

123