Searched defs:rate (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Gallery/src/com/android/camera/
H A DImageViewTouchBase.java363 protected void zoomIn(float rate) { argument
374 mSuppMatrix.postScale(rate, rate, cx, cy);
378 protected void zoomOut(float rate) { argument
388 tmp.postScale(1F / rate, 1F / rate, cx, cy);
393 mSuppMatrix.postScale(1F / rate, 1F / rate, cx, cy);
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DImageViewTouchBase.java418 * Zoom in by a preset scale rate
425 * Zoom in by the specified scale rate
427 * @param rate The scale rate
429 public void zoomIn(float rate) { argument
434 mSuppMatrix.postScale(rate, rate, cx, cy);
440 * Zoom out by a preset scale rate
447 * Zoom out by the specified scale rate
449 * @param rate Th
451 zoomOut(float rate) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/voicemail/
H A DVoicemailPlaybackFragment.java252 public void setRateDisplay(float rate, int stringResourceId) { argument
H A DVoicemailPlaybackPresenter.java82 void setRateDisplay(float rate, int stringResourceId); argument
106 /** Update rate for the slider, 30fps. */
141 * rate change listener since multiple rate change listeners must share the same value.
413 * Listens to clicks on the rate increase and decrease buttons.
426 // Adjust the current rate, then clamp it to the allowed values.
533 private void changeRate(float rate, int stringResourceId) { argument
534 ((SingleThreadedMediaPlayerProxy) mPlayer).setVariableSpeed(rate);
535 mView.setRateDisplay(rate, stringResourceId);
/packages/inputmethods/LatinIME/native/jni/src/
H A Dcorrection.h184 inline static void multiplyRate(const int rate, int *freq) { argument
188 multiplyIntCapped(rate, freq);
190 multiplyIntCapped(rate, freq);

Completed in 972 milliseconds