Home
last modified time | relevance | path

Searched refs:percentage (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiObject.java927 float percentage = percent / 100f; in pinchOut() local
943 Point endPoint1 = new Point(rect.centerX() - (int)((rect.width()/2) * percentage), in pinchOut()
945 Point endPoint2 = new Point(rect.centerX() + (int)((rect.width()/2) * percentage), in pinchOut()
965 float percentage = percent / 100f; in pinchIn() local
976 Point startPoint1 = new Point(rect.centerX() - (int)((rect.width()/2) * percentage), in pinchIn()
978 Point startPoint2 = new Point(rect.centerX() + (int)((rect.width()/2) * percentage), in pinchIn()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DGenericSource.cpp566 void NuPlayer::GenericSource::notifyBufferingUpdate(int32_t percentage) { in notifyBufferingUpdate() argument
571 if (percentage < mPrevBufferPercentage) { in notifyBufferingUpdate()
572 percentage = mPrevBufferPercentage; in notifyBufferingUpdate()
573 } else if (percentage > 100) { in notifyBufferingUpdate()
574 percentage = 100; in notifyBufferingUpdate()
577 mPrevBufferPercentage = percentage; in notifyBufferingUpdate()
579 ALOGV("notifyBufferingUpdate: buffering %d%%", percentage); in notifyBufferingUpdate()
583 msg->setInt32("percentage", percentage); in notifyBufferingUpdate()
693 int percentage = 100.0 * cachedPosUs / mDurationUs; in onPollBuffering() local
694 if (percentage > 100) { in onPollBuffering()
[all …]
DHTTPLiveSource.cpp369 int32_t percentage; in onSessionNotify() local
370 CHECK(msg->findInt32("percentage", &percentage)); in onSessionNotify()
372 notify->setInt32("percentage", percentage); in onSessionNotify()
DGenericSource.h212 void notifyBufferingUpdate(int32_t percentage);
DNuPlayer.cpp2092 int32_t percentage; in onSourceNotify() local
2093 CHECK(msg->findInt32("percentage", &percentage)); in onSourceNotify()
2095 notifyListener(MEDIA_BUFFERING_UPDATE, percentage, 0); in onSourceNotify()
/frameworks/base/docs/html/tools/help/
Dmonkey.jd106 <td>Adjust percentage of touch events.
112 <td>Adjust percentage of motion events.
119 <td>Adjust percentage of trackball events.
125 <td>Adjust percentage of "basic" navigation events.
131 <td>Adjust percentage of "major" navigation events.
138 <td>Adjust percentage of "system" key events.
145 <td>Adjust percentage of activity launches. At random intervals, the Monkey will issue a startActi…
151 <td>Adjust percentage of other types of events. This is a catch-all for all other types of events …
Ddmtracedump.jd63 percentage of parent inclusive time). If this option is not used, the default threshold is
DMonkeyImage.jd125 the comparison. The <code>percent</code> argument specifies the percentage
358 the comparison. The <code>percent</code> argument specifies the percentage
377 the percentage of pixels that need to be the same for the method to return
/frameworks/base/docs/html/guide/topics/resources/
Danimation-resource.jd474 the following three formats: values from -100 to 100 ending with "%", indicating a percentage
475 relative to itself; values from -100 to 100 ending in "%p", indicating a percentage relative to its
481 <dd><em>Float or percentage</em>. Starting X offset. Expressed either: in pixels relative
482 to the normal position (such as {@code "5"}), in percentage relative to the element width (such as
483 {@code "5%"}), or in percentage relative to the parent width (such as {@code "5%p"}).</dd>
485 <dd><em>Float or percentage</em>. Ending X offset. Expressed either: in pixels relative
486 to the normal position (such as {@code "5"}), in percentage relative to the element width (such as
487 {@code "5%"}), or in percentage relative to the parent width (such as {@code "5%p"}).</dd>
489 <dd><em>Float or percentage</em>. Starting Y offset. Expressed either: in pixels relative
490 to the normal position (such as {@code "5"}), in percentage relative to the element height (such as
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardStatusBarView.java159 String percentage = NumberFormat.getPercentInstance().format((double) level / 100.0); in onBatteryLevelChanged() local
160 mBatteryLevel.setText(percentage); in onBatteryLevelChanged()
DStatusBarHeaderView.java405 String percentage = NumberFormat.getPercentInstance().format((double) level / 100.0); in onBatteryLevelChanged() local
406 mBatteryLevel.setText(percentage); in onBatteryLevelChanged()
/frameworks/base/docs/html/distribute/analyze/
Dbuild-better-apps.jd51 know what happens after that? What percentage of users navigate through which
53 to investigate which levels have the highest percentage of users leaving your
60 at which stages of the purchase flow the highest percentage of users abandon
/frameworks/av/media/libstagefright/httplive/
DLiveSession.cpp2246 void LiveSession::notifyBufferingUpdate(int32_t percentage) { in notifyBufferingUpdate() argument
2247 if (percentage < mPrevBufferPercentage) { in notifyBufferingUpdate()
2248 percentage = mPrevBufferPercentage; in notifyBufferingUpdate()
2249 } else if (percentage > 100) { in notifyBufferingUpdate()
2250 percentage = 100; in notifyBufferingUpdate()
2253 mPrevBufferPercentage = percentage; in notifyBufferingUpdate()
2255 ALOGV("notifyBufferingUpdate: percentage=%d%%", percentage); in notifyBufferingUpdate()
2259 notify->setInt32("percentage", percentage); in notifyBufferingUpdate()
DLiveSession.h303 void notifyBufferingUpdate(int32_t percentage);
/frameworks/base/core/java/android/net/
DIConnectivityManager.aidl95 void reportInetCondition(int networkType, int percentage); in reportInetCondition() argument
DConnectivityManager.java1714 public void reportInetCondition(int networkType, int percentage) { in reportInetCondition() argument
1716 mService.reportInetCondition(networkType, percentage); in reportInetCondition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
DPowerNotificationWarnings.java174 …final String percentage = NumberFormat.getPercentInstance().format((double) mBatteryLevel / 100.0); in showWarningNotification() local
181 .setContentText(mContext.getString(textRes, percentage)) in showWarningNotification()
/frameworks/av/media/libstagefright/
DAwesomePlayer.cpp743 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; in onBufferingUpdate() local
744 if (percentage > 100) { in onBufferingUpdate()
745 percentage = 100; in onBufferingUpdate()
748 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage); in onBufferingUpdate()
793 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; in onBufferingUpdate() local
794 if (percentage > 100) { in onBufferingUpdate()
795 percentage = 100; in onBufferingUpdate()
798 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage); in onBufferingUpdate()
/frameworks/base/docs/html/training/notify-user/
Ddisplay-progress.jd98 // current completion percentage, and "determinate"
156 // percentage, and "determinate" state
/frameworks/base/docs/html/tools/debugging/
Ddebugging-tracing.jd70 in a method. The table shows both the inclusive and exclusive times (as well as the percentage of
274 percentage of parent inclusive time). If this option is not used, the default threshold
/frameworks/base/docs/html/tv/adt-1/
Dsafety.jd35 A very small percentage of people may experience a seizure when exposed to certain visual images,
/frameworks/base/docs/html/distribute/googleplay/
Ddeveloper-console.jd284 percentage of user who’ll be able to download your app.
291 hesitant, start your rollout to a small percentage of users. Be sure to watch
/frameworks/base/docs/html/training/design-navigation/
Dmultiple-sizes.jd85 … portrait orientation. Panes could have fixed widths or take a certain percentage of the available…
/frameworks/base/docs/html/tools/help/uiautomator/
DUiScrollable.jd352 … <div class="jd-descrdiv">Returns the percentage of a widget's size that's considered as a no-touch
646 … <div class="jd-descrdiv">Sets the percentage of a widget's size that's considered as no-touch
2451 …<div class="jd-tagdata jd-tagdescr"><p>Returns the percentage of a widget's size that's considered…
2452 zone when swiping. The no-touch zone is set as a percentage of a widget's total
3214 …<div class="jd-tagdata jd-tagdescr"><p>Sets the percentage of a widget's size that's considered as…
3216 The no-touch zone is set as percentage of a widget's total width or height,
/frameworks/base/docs/html/distribute/stories/
Dtablets.jd164 we’ve seen a larger percentage of our tablet usage happen in the evening, for

12