/packages/apps/Launcher2/src/com/android/launcher2/ |
D | DragLayer.java | 598 final float percent = (Float) animation.getAnimatedValue(); in animateView() 602 float alphaPercent = alphaInterpolator == null ? percent : in animateView() 603 alphaInterpolator.getInterpolation(percent); in animateView() 604 float motionPercent = motionInterpolator == null ? percent : in animateView() 605 motionInterpolator.getInterpolation(percent); in animateView() 609 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent); in animateView() 610 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent); in animateView() 700 final float percent = (Float) animation.getAnimatedValue(); in fadeOutDragView() 702 float alpha = 1 - percent; in fadeOutDragView()
|
D | FolderIcon.java | 208 final float percent = (Float) animation.getAnimatedValue(); in animateToAcceptState() 209 mOuterRingSize = (1 + percent * OUTER_RING_GROWTH_FACTOR) * previewSize; in animateToAcceptState() 210 mInnerRingSize = (1 + percent * INNER_RING_GROWTH_FACTOR) * previewSize; in animateToAcceptState() 237 final float percent = (Float) animation.getAnimatedValue(); in animateToNaturalState() 238 mOuterRingSize = (1 + (1 - percent) * OUTER_RING_GROWTH_FACTOR) * previewSize; in animateToNaturalState() 239 mInnerRingSize = (1 + (1 - percent) * INNER_RING_GROWTH_FACTOR) * previewSize; in animateToNaturalState()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | TwoPaneLayout.java | 536 final float percent; 539 percent = (mDrawerWidthDelta - deltaX) / mDrawerWidthDelta; 541 percent = -deltaX / mDrawerWidthDelta; 545 percent = deltaX / mDrawerWidthDelta; 547 percent = (mDrawerWidthDelta + deltaX) / mDrawerWidthDelta; 551 return percent < 0 ? 0 : percent > 1 ? 1 : percent;
|
D | FolderListFragment.java | 838 public void onDrawerDrag(float percent) { in onDrawerDrag() argument 839 mMiniDrawerView.setAlpha(1f - percent); in onDrawerDrag() 840 mListView.setAlpha(percent); in onDrawerDrag()
|
D | TwoPaneController.java | 397 protected void onDrawerDrag(float percent) { in onDrawerDrag() argument 404 flf.onDrawerDrag(percent); in onDrawerDrag()
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
D | ProgressRenderer.java | 70 public void setProgress(int percent) { in setProgress() argument 72 percent = Math.min(100, Math.max(percent, 0)); in setProgress() 73 mProgressAngleDegrees = (int) ((360f / 100) * percent); in setProgress() 76 if (percent < 100) { in setProgress()
|
D | ProgressOverlay.java | 75 public void setProgress(int percent) { in setProgress() argument 76 mProgressRenderer.setProgress(percent); in setProgress()
|
/packages/apps/Browser/src/com/android/browser/ |
D | BrowserSettings.java | 520 static int getRawTextZoom(int percent) { in getRawTextZoom() argument 521 return (percent - 100) / TEXT_ZOOM_STEP + TEXT_ZOOM_START_VAL; in getRawTextZoom() 529 static int getRawDoubleTapZoom(int percent) { in getRawDoubleTapZoom() argument 530 return (percent - 100) / DOUBLE_TAP_ZOOM_STEP + DOUBLE_TAP_ZOOM_START_VAL; in getRawDoubleTapZoom() 593 public void setTextZoom(int percent) { in setTextZoom() argument 594 mPrefs.edit().putInt(PREF_TEXT_ZOOM, getRawTextZoom(percent)).apply(); in setTextZoom() 603 public void setDoubleTapZoom(int percent) { in setDoubleTapZoom() argument 604 mPrefs.edit().putInt(PREF_DOUBLE_TAP_ZOOM, getRawDoubleTapZoom(percent)).apply(); in setDoubleTapZoom()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | DragLayer.java | 720 final float percent = (Float) animation.getAnimatedValue(); in animateView() 724 float alphaPercent = alphaInterpolator == null ? percent : in animateView() 725 alphaInterpolator.getInterpolation(percent); in animateView() 726 float motionPercent = motionInterpolator == null ? percent : in animateView() 727 motionInterpolator.getInterpolation(percent); in animateView() 731 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent); in animateView() 732 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent); in animateView()
|
D | FolderIcon.java | 242 final float percent = (Float) animation.getAnimatedValue(); in animateToAcceptState() 243 mOuterRingSize = (1 + percent * OUTER_RING_GROWTH_FACTOR) * previewSize; in animateToAcceptState() 244 mInnerRingSize = (1 + percent * INNER_RING_GROWTH_FACTOR) * previewSize; in animateToAcceptState() 271 final float percent = (Float) animation.getAnimatedValue(); in animateToNaturalState() 272 mOuterRingSize = (1 + (1 - percent) * OUTER_RING_GROWTH_FACTOR) * previewSize; in animateToNaturalState() 273 mInnerRingSize = (1 + (1 - percent) * INNER_RING_GROWTH_FACTOR) * previewSize; in animateToNaturalState()
|
/packages/apps/Camera2/src/com/android/camera/session/ |
D | CaptureSessionImpl.java | 149 public synchronized void setProgress(int percent) { in setProgress() argument 150 if (!mHasPreviouslySetProgress && percent == 0 && mImageLifecycleListener != null) { in setProgress() 154 mProgressPercent = percent; in setProgress() 157 listener.onProgressChanged(percent); in setProgress()
|
D | CaptureSession.java | 129 public void setProgress(int percent); in setProgress() argument
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
D | StorageSummaryPreference.java | 38 public void setPercent(int percent) { in setPercent() argument 39 mPercent = percent; in setPercent()
|
/packages/apps/Camera2/src/com/android/camera/ |
D | CaptureModuleUI.java | 157 public void setPictureTakingProgress(int percent) { in setPictureTakingProgress() argument 158 mProgressOverlay.setProgress(percent); in setPictureTakingProgress()
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
D | AbstractPublicApiTest.java | 145 final int percent = (int) (100 in waitForStatus() local 148 Log.d(LOG_TAG, percent + "% complete"); in waitForStatus()
|
/packages/apps/Settings/src/com/android/settings/ |
D | CryptKeeper.java | 639 int percent = 0; in updateProgress() local 642 percent = isDebugView() ? 50 : Integer.parseInt(state); in updateProgress() 646 String progress = Integer.toString(percent); in updateProgress()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadNotifier.java | 232 final int percent = (int) ((current * 100) / total); in updateWithLocked() local 233 builder.setProgress(100, percent, false); in updateWithLocked()
|
D | DownloadStorageProvider.java | 321 String percent = in includeDownloadFromCursor() local 323 summary = getContext().getString(R.string.download_running_percent, percent); in includeDownloadFromCursor()
|
/packages/apps/Camera2/src/com/android/camera/captureintent/ |
D | CaptureIntentSession.java | 99 public synchronized void setProgress(int percent) { in setProgress() argument
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
D | PowerUsageSummary.java | 352 sipper.percent = percentOfTotal; in refreshStats()
|
/packages/providers/TelephonyProvider/ |
D | NOTICE | 33 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/packages/apps/Camera2/jni/ |
D | NOTICE | 33 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/packages/wallpapers/LivePicker/ |
D | NOTICE | 33 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/packages/services/Telephony/ |
D | NOTICE | 33 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/packages/apps/SpareParts/ |
D | NOTICE | 33 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|