Searched refs:speed (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Mms/src/org/w3c/dom/smil/
H A DElementTimeManipulation.java25 * Defines the playback speed of element time. The value is specified as
26 * a multiple of normal (parent time container) play speed. Legal values
28 * default is <code>1.0</code> (no modification of speed).
33 public void setSpeed(float speed) argument
/packages/apps/Music/src/com/android/music/
H A DTouchInterceptor.java337 int speed = 0;
342 speed = y > (mHeight + mLowerBound) / 2 ? 16 : 4;
344 speed = 1;
348 speed = y < mUpperBound / 2 ? -16 : -4;
354 speed = 0;
357 if (speed != 0) {
358 smoothScrollBy(speed, 30);
/packages/apps/Settings/src/com/android/settings/
H A DPointerSpeedPreference.java93 int speed = mIm.getPointerSpeed(getContext());
94 mSeekBar.setProgress(speed - InputManager.MIN_POINTER_SPEED);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DGestureStroke.java299 final float speed = (float)pixelsPerSec / msecs / mKeyWidth;
300 Log.d(TAG, String.format("[%d] detectFastMove: speed=%5.2f", mPointerId, speed));
305 final float speed = (float)pixelsPerSec / msecs / mKeyWidth;
307 "[%d] detectFastMove: speed=%5.2f T=%3d points=%3d fastMove",
308 mPointerId, speed, time, size));
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadNotifier.java75 * Current speed of active downloads, mapped from {@link DownloadInfo#mId}
76 * to speed in bytes per second.
82 * Last time speed was reproted, mapped from {@link DownloadInfo#mId} to
99 * Notify the current speed of an active download, used for calculating
208 long speed = 0;
214 speed += mDownloadSpeed.get(info.mId);
223 if (speed > 0) {
224 final long remainingMillis = ((total - current) * 1000) / speed;
327 Log.d(TAG, "Download " + id + " speed " + mDownloadSpeed.valueAt(i) + "bps, "
/packages/experimental/procstatlog/
H A Dprocstatreport.py87 <nobr>average CPU speed</nobr>
215 # Output CPU speed statistics
230 speed = int(key[len(speed_key):])
232 total_cycles += (next - last) * speed
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
H A DAvrcp.java149 long currentPosMs, float speed) {
148 setPlaybackState(int generationId, int state, long stateChangeTimeMs, long currentPosMs, float speed) argument
/packages/inputmethods/LatinIME/native/jni/src/
H A Dproximity_info_state_utils.cpp269 // Relative speed calculation.
304 // Cannot calculate speed; thus, it gives an average value (1.0);
307 const float speed = static_cast<float>(length) / static_cast<float>(duration); local
308 (*sampledSpeedRates)[i] = speed / averageSpeed;
327 AKLOGI("--- refresh beeline speed rates");
593 " speed = %f, ave = %f, val = %f, start time = %d, end time = %d",
702 // If the current speed is relatively slower than adjacent keys, we promote this point.
1067 AKLOGI("%d: x = %d, y = %d, time = %d, relative speed = %.4f, beeline speed = %d",

Completed in 1004 milliseconds