Searched refs:summary (Results 1 - 25 of 53) sorted by relevance

123

/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/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/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/rs/api/
H A Drs_math.spec18 summary: Mathematical Constants and Functions
53 summary: 1 / pi, as a 32 bit float
60 summary: 2 / pi, as a 32 bit float
69 summary: 2 / pi, as a 32 bit float
76 summary: 2 / sqrt(pi), as a 32 bit float
83 summary: e, as a 32 bit float
90 summary: log_e(10), as a 32 bit float
97 summary: log_e(2), as a 32 bit float
104 summary: log_10(e), as a 32 bit float
111 summary
[all...]
H A Drs_time.spec18 summary: Time Functions and Types
27 summary: Seconds since January 1, 1970
49 summary: Date and time structure
56 summary: Elapsed time since last call
66 summary: Convert to local time
79 summary: Seconds since January 1, 1970
90 summary: System uptime in milliseconds
98 summary: System uptime in nanoseconds
H A Drs_graphics.spec18 summary: Graphics Functions and Types
46 summary: Blend source function
64 summary: Blend destination function
77 summary: Culling mode
94 summary: Depth function
112 summary: How to intepret mesh vertex data
122 summary: Handle to a Font
134 summary: Handle to a Mesh
145 summary: Handle to a ProgramFragment
156 summary
[all...]
H A Drs_object_info.spec18 summary: Object Characteristics Functions
71 summary: Presence of more than one face
83 summary: Presence of levels of detail
95 summary: Size of the X dimension
106 summary: Size of the Y dimension
118 summary: Size of the Z dimension
130 summary: Get the object that describes the cell of an Allocation
141 summary: Release an object
154 summary: Check for an empty handle
170 summary
[all...]
H A Drs_io.spec18 summary: Input/Output Functions
30 summary: Receive new content from the queue
41 summary: Send new content to the queue
51 summary: Send a message to the client, non-blocking
74 summary: Send a message to the client, blocking
H A Drs_vector_math.spec18 summary: Vector Math Functions
45 summary: Cross product of two vectors
59 summary: Distance between two points
75 summary: Dot product of two vectors
89 summary: Approximate distance between two points
107 summary: Approximate length of a vector
125 summary: Approximate normalized vector
146 summary: Length of a vector
162 summary: Approximate distance between two points
177 summary
[all...]
H A Drs_quaternion.spec18 summary: Quaternion Functions
27 summary: Add two quaternions
41 summary: Conjugate a quaternion
55 summary: Dot product of two quaternions
67 summary: Get a rotation matrix from a quaternion
102 summary: Quaternion that represents a rotation about an arbitrary unit vector
124 summary: Create a quaternion
157 summary: Create a rotation quaternion
176 summary: Normalize a quaternion
195 summary
[all...]
H A Drs_atomic.spec18 summary: Atomic Update Functions
39 summary: Thread-safe addition
58 summary: Thread-safe bitwise and
79 summary: Thread-safe compare and set
102 summary: Thread-safe decrement
119 summary: Thread-safe increment
137 summary: Thread-safe maximum
157 summary: Thread-safe minimum
177 summary: Thread-safe bitwise or
197 summary
[all...]
H A Drs_object_types.spec18 summary: Object Types
44 summary: Handle to an element
53 summary: Handle to a Type
62 summary: Handle to an allocation
71 summary: Handle to a Sampler
80 summary: Handle to a Script
96 summary: Enum for selecting cube map faces
112 summary: Bitfield to specify how an allocation is used
151 summary: Element basic data type
172 summary
[all...]
H A Drs_convert.spec18 summary: Conversion Functions
32 summary: Convert numerical vectors
82 summary: Create a uchar4 RGBA from floats
128 summary: Create a float4 RGBA from uchar4
142 summary: Convert a YUV value to RGBA
H A Drs_for_each.spec18 summary: Kernel Invocation Functions and Types
36 summary: Suggested cell processing order
48 summary: Handle to a kernel invocation context
78 summary: Cell iteration information
97 summary: Invoke the root kernel of a script
166 summary: Index in the Array0 dimension for the specified context
193 summary: Index in the Array1 dimension for the specified context
206 summary: Index in the Array2 dimension for the specified context
220 summary: Index in the Array3 dimension for the specified context
233 summary
[all...]
/frameworks/base/core/java/android/preference/
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 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...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
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 DPreferenceViewHolder.java37 mCachedViews.put(android.R.id.summary, itemView.findViewById(android.R.id.summary));
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...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
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/base/docs/html/ndk/reference/
H A Ddynsections.js4 var summary = $('#'+base+'-summary');
10 summary.show();
15 summary.hide();
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java381 // Update to new summary
382 StringBuilder summary = new StringBuilder();
386 summary.append(getSummary(mContext, getDetailedState(),
390 summary.append(getSummary(mContext, getDetailedState(),
394 summary.append(String.format(format, mConfig.providerFriendlyName));
396 summary.append(mContext.getString(R.string.wifi_no_internet));
404 summary.append(mContext.getString(R.string.wifi_disabled_network_failure));
406 summary.append(mContext.getString(R.string.wifi_disabled_password_failure));
408 summary.append(mContext.getString(R.string.wifi_disabled_wifi_failure));
413 summary
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java234 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
240 // Show available space if no summary
241 String summaryText = root.summary;
247 summary.setText(summaryText);
248 summary.setVisibility(TextUtils.isEmpty(summaryText) ? View.GONE : View.VISIBLE);
275 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
281 // TODO: match existing summary behavior from disambig dialog
282 summary
[all...]
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java169 final String summary = getEnabledSubtypesLabel(context, mImm, mImi);
170 if (!TextUtils.isEmpty(summary)) {
171 pref.setSummary(summary);

Completed in 490 milliseconds

123