Home
last modified time | relevance | path

Searched refs:summary (Results 1 – 25 of 194) sorted by relevance

12345678

/frameworks/rs/api/
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: Handle to a ProgramVertex
[all …]
Drs_math.spec18 summary: Mathematical Constants and Functions
54 summary: 1 / pi, as a 32 bit float
61 summary: 2 / pi, as a 32 bit float
70 summary: 2 / pi, as a 32 bit float
77 summary: 2 / sqrt(pi), as a 32 bit float
84 summary: e, as a 32 bit float
91 summary: log_e(10), as a 32 bit float
98 summary: log_e(2), as a 32 bit float
105 summary: log_10(e), as a 32 bit float
112 summary: log_2(e), as a 32 bit float
[all …]
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
152 summary: Element basic data type
173 summary: Element data kind
[all …]
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
Drs_vector_math.spec18 summary: Vector Math Functions
45 summary: Cross product of two vectors
70 summary: Distance between two points
97 summary: Dot product of two vectors
122 summary: Approximate distance between two points
140 summary: Approximate length of a vector
158 summary: Approximate normalized vector
179 summary: Length of a vector
205 summary: Approximate distance between two points
231 summary: Approximate length of a vector
[all …]
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: Thread-safe subtraction
[all …]
Drs_object_info.spec18 summary: Object Characteristics Functions
71 summary: Presence of more than one face
192 summary: Data type of an Element
303 summary: Return the Allocation for a given pointer
314 summary: Anisotropy of the Sampler
338 summary: Sampler minification value
362 summary: Sampler wrap T value
Drs_for_each.spec18 summary: Kernel Invocation Functions and Types
36 summary: Suggested cell processing order
48 summary: Handle to a kernel invocation context
75 summary: Cell iteration information
89 summary: Handle to a kernel function
103 summary: Launches a kernel
196 summary: Launches a kernel with options
226 summary: (Internal API) Launch a kernel in the current Script (with the slot number)
236 summary: Index in the Array0 dimension for the specified kernel context
262 summary: Index in the Array1 dimension for the specified kernel context
[all …]
Drs_quaternion.spec18 summary: Quaternion Functions
28 summary: Add two quaternions
43 summary: Conjugate a quaternion
58 summary: Dot product of two quaternions
71 summary: Get a rotation matrix from a quaternion
107 summary: Quaternion that represents a rotation about an arbitrary unit vector
130 summary: Create a quaternion
165 summary: Create a rotation quaternion
Drs_io.spec18 summary: Input/Output Functions
30 summary: Receive new content from the queue
45 summary: Send new content to the queue
59 summary: Send a message to the client, non-blocking
82 summary: Send a message to the client, blocking
Drs_matrix.spec18 summary: Matrix Functions
58 summary: Compute frustum planes
133 summary: Checks if a sphere is within the frustum planes
185 summary: Get one element
196 summary: Inverts a matrix in place
205 summary: Inverts and transpose a matrix in place
217 summary: Load or copy a matrix
262 summary: Load a frustum projection matrix
276 summary: Load identity matrix
288 summary: Multiply two matrices
[all …]
/frameworks/base/core/java/android/service/notification/
DCondition.java77 public final String summary; field in Condition
102 public Condition(Uri id, String summary, int state) { in Condition() argument
103 this(id, summary, "", "", -1, state, FLAG_RELEVANT_ALWAYS); in Condition()
107 public Condition(Uri id, String summary, String line1, String line2, int icon, in Condition() argument
110 if (summary == null) throw new IllegalArgumentException("summary is required"); in Condition()
113 this.summary = summary; in Condition()
138 dest.writeString(summary); in writeToParcel()
150 .append(",summary=").append(summary) in toString()
183 && Objects.equals(other.summary, summary) in equals()
193 return Objects.hash(id, summary, line1, line2, icon, state, flags); in hashCode()
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
DStackOverflowXmlParser.java73 public final String summary; field in StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { in Entry() argument
77 this.summary = summary; in Entry()
88 String summary = null; in readEntry() local
98 summary = readSummary(parser); in readEntry()
105 return new Entry(title, summary, link); in readEntry()
135 String summary = readText(parser); in readSummary() local
137 return summary; in readSummary()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationGroupManager.java69 if (group.summary != null) { in setGroupExpanded()
70 mListener.onGroupExpansionChanged(group.summary.row, expanded); in setGroupExpanded()
100 group.summary = null; in onEntryRemovedInternal()
104 if (group.summary == null) { in onEntryRemovedInternal()
123 group.summary = added; in onEntryAdded()
148 group.suppressed = group.summary != null && !group.expanded in updateSuppression()
151 && group.summary.notification.getNotification().isGroupSummary() in updateSuppression()
155 handleSuppressedSummaryHeadsUpped(group.summary); in updateSuppression()
164 return getNumberOfIsolatedChildren(group.summary.notification.getGroupKey()) != 0; in hasIsolatedChildren()
180 return mGroupMap.get(sbn.getKey()).summary; in getIsolatedChild()
[all …]
/frameworks/base/core/java/android/preference/
DTwoStatePreference.java109 public void setSummaryOn(CharSequence summary) { in setSummaryOn() argument
110 mSummaryOn = summary; in setSummaryOn()
137 public void setSummaryOff(CharSequence summary) { in setSummaryOff() argument
138 mSummaryOff = summary; in setSummaryOff()
198 TextView summaryView = (TextView) view.findViewById(com.android.internal.R.id.summary); in syncSummaryView()
210 final CharSequence summary = getSummary(); in syncSummaryView() local
211 if (!TextUtils.isEmpty(summary)) { in syncSummaryView()
212 summaryView.setText(summary); in syncSummaryView()
DListPreference.java183 public void setSummary(CharSequence summary) { in setSummary() argument
184 super.setSummary(summary); in setSummary()
185 if (summary == null && mSummary != null) { in setSummary()
187 } else if (summary != null && !summary.equals(mSummary)) { in setSummary()
188 mSummary = summary.toString(); in setSummary()
DMultiCheckPreference.java208 public void setSummary(CharSequence summary) { in setSummary() argument
209 super.setSummary(summary); in setSummary()
210 if (summary == null && mSummary != null) { in setSummary()
212 } else if (summary != null && !summary.equals(mSummary)) { in setSummary()
213 mSummary = summary.toString(); in setSummary()
/frameworks/support/v7/preference/src/android/support/v7/preference/
DTwoStatePreference.java107 public void setSummaryOn(CharSequence summary) { in setSummaryOn() argument
108 mSummaryOn = summary; in setSummaryOn()
135 public void setSummaryOff(CharSequence summary) { in setSummaryOff() argument
136 mSummaryOff = summary; in setSummaryOff()
196 View view = holder.findViewById(android.R.id.summary); in syncSummaryView()
217 final CharSequence summary = getSummary(); in syncSummaryView() local
218 if (!TextUtils.isEmpty(summary)) { in syncSummaryView()
219 summaryView.setText(summary); in syncSummaryView()
DListPreference.java191 public void setSummary(CharSequence summary) { in setSummary() argument
192 super.setSummary(summary); in setSummary()
193 if (summary == null && mSummary != null) { in setSummary()
195 } else if (summary != null && !summary.equals(mSummary)) { in setSummary()
196 mSummary = summary.toString(); in setSummary()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
DItem.java95 public void setSummary(CharSequence summary) { in setSummary() argument
96 mSummary = summary; in setSummary()
129 CharSequence summary = getSummary(); in onBindView() local
130 if (summary != null && summary.length() > 0) { in onBindView()
131 summaryView.setText(summary); in onBindView()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBatteryStatsDurationTimerTest.java127 final BatteryStatsImpl.DurationTimer summary = new BatteryStatsImpl.DurationTimer(clocks, in testParceling() local
129 summary.startRunningLocked(3100); in testParceling()
130 summary.readSummaryFromParcelLocked(summaryParcel); in testParceling()
132 assertFalse(summary.isRunningLocked()); in testParceling()
133 assertEquals(0, summary.getCurrentDurationMsLocked(6300)); in testParceling()
135 assertEquals(1200, summary.getMaxDurationMsLocked(6301)); in testParceling()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DAccessPoint.java393 StringBuilder summary = new StringBuilder(); in getSettingsSummary() local
397 summary.append(getSummary(mContext, getDetailedState(), in getSettingsSummary()
401 summary.append(getSummary(mContext, getDetailedState(), in getSettingsSummary()
405 summary.append(String.format(format, mConfig.providerFriendlyName)); in getSettingsSummary()
407 summary.append(mContext.getString(R.string.wifi_no_internet)); in getSettingsSummary()
413 summary.append(mContext.getString(R.string.wifi_disabled_password_failure)); in getSettingsSummary()
417 summary.append(mContext.getString(R.string.wifi_disabled_network_failure)); in getSettingsSummary()
420 summary.append(mContext.getString(R.string.wifi_disabled_generic)); in getSettingsSummary()
424 summary.append(mContext.getString(R.string.wifi_not_in_range)); in getSettingsSummary()
427 summary.append(mContext.getString(R.string.wifi_remembered)); in getSettingsSummary()
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DRootInfo.java88 public String summary; field in RootInfo
109 summary = null; in reset()
129 summary = DurableUtils.readNullableString(in); in read()
148 DurableUtils.writeNullableString(out, summary); in write()
185 root.summary = getCursorString(cursor, Root.COLUMN_SUMMARY); in fromRootsCursor()
374 return compareToIgnoreCaseNullable(summary, other.summary); in compareTo()
390 return !TextUtils.isEmpty(summary) ? summary : title; in getDirectoryString()
/frameworks/base/docs/html/training/basics/network-ops/
Dxml.jd99 <summary type="html">
102 </summary>
112 <code>title</code>, <code>link</code>, and <code>summary</code>.</p>
182 <code>title</code>, <code>link</code>, and <code>summary</code>.</li>
192 <code>link</code> or <code>summary</code>, it calls the appropriate method
200 <li>For the <code>title</code> and <code>summary</code> tags, the parser calls
212 <code>summary</code>.</li>
226 public final String summary;
228 private Entry(String title, String summary, String link) {
230 this.summary = summary;
[all …]
/frameworks/base/docs/html/training/wearables/notifications/
Dstacks.jd23 notifications into a single summary notification. For example, if your app creates notifications
26 to provide a summary such as "2 new messages."</p>
28 <p>However, a summary notification is less useful on an Android wearable because users
34 possible while allowing you to still provide only one summary notification on the handheld device.<…
86 <p>It's important that you still provide a summary notification that appears on handheld devices.
87 So in addition to adding each unique notification to the same stack group, also add a summary
89 on the summary notification.</p>
119 or no style for the summary notification.
131 When creating a summary notification, you can use the

12345678