HomeSort by relevance Sort by last modified time
    Searched refs:sampleLength (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeWithPreviewPoints.java 61 final float sampleLength = keyWidth * MIN_PREVIEW_SAMPLE_LENGTH_RATIO_TO_KEY_WIDTH;
62 mMinPreviewSampleLengthSquare = (int)(sampleLength * sampleLength);
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 79 int sampleLength = recorderState.getInt(SAMPLE_LENGTH_KEY, -1);
80 if (sampleLength == -1)
92 mSampleLength = sampleLength;
111 public int sampleLength() {
SoundRecorder.java 309 if (mRecorder.sampleLength() == 0)
429 if (mRecorder.sampleLength() > 0)
466 if (mRecorder.sampleLength() == 0)
605 long sampleLengthMillis = mRecorder.sampleLength() * 1000L;
657 long time = ongoing ? mRecorder.progress() : mRecorder.sampleLength();
662 mStateProgressBar.setProgress((int)(100*time/mRecorder.sampleLength()));
720 if (mRecorder.sampleLength() == 0) {

Completed in 318 milliseconds