Searched defs:stop (Results 76 - 100 of 156) sorted by relevance

1234567

/frameworks/base/core/java/android/util/
H A DMathUtils.java147 public static float lerp(float start, float stop, float amount) { argument
148 return start + (stop - start) * amount;
151 public static float norm(float start, float stop, float value) { argument
152 return (value - start) / (stop - start);
/frameworks/base/core/java/android/widget/
H A DChronometer.java184 * make sure that each start() call has a reciprocal call to {@link #stop}.
198 public void stop() { method in class:Chronometer
204 * The same as calling {@link #start} or {@link #stop}.
H A DSpellChecker.java174 mSpellParsers[i].stop();
528 public void stop() { method in class:SpellChecker.SpellParser
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java113 * @see #stop()
128 public void stop() { method in class:AnimationDrawable
/frameworks/base/media/java/android/media/
H A DMediaMuxer.java61 * muxer.stop();
188 public void stop() { method in class:MediaMuxer
193 throw new IllegalStateException("Can't stop due to wrong state.");
310 stop();
H A DSoundPool.java48 * SoundPool will automatically stop a previously playing stream based first
55 * explicitly call the stop() function to stop the sound. Any other non-zero
69 * the SoundPool was created. In this case, the stream allocator will stop
71 * low priority, it will choose the oldest stream to stop. In the case
265 * another sound to stop playing if the maximum number of active
339 public native final void stop(int streamID); method in class:SoundPool
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DSimplePlayer.java84 ImageButton stop = (ImageButton) stopButton;
88 stop.setOnClickListener(this);
102 stop();
159 public void stop() { method in class:SimplePlayer
161 mMediaPlayer.stop();
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp76 virtual status_t stop() {return OK;} function in class:__anon1148::Player
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java187 Log.w(mTag, "Notification stop delayed by " + delay + "msecs");
189 mPlayer.stop();
275 * Calling this before another audio file is done playing will stop
303 public void stop() { method in class:NotificationPlayer
305 // This check allows stop to be called multiple times without starting
327 * We want to hold a wake lock while we do the prepare and play. The stop probably is
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DFaceUnlock.java147 public boolean stop() { method in class:FaceUnlock
148 if (DEBUG) Log.d(TAG, "stop()");
150 Log.e(TAG, "stop() called from non-UI thread");
303 stop();
325 stop();
397 * Tells the Face Unlock service to stop displaying its UI and stop processing.
401 // Note that attempting to stop Face Unlock when it's not running is not an issue.
402 // Face Unlock can return, which stops it and then we try to stop it when the
415 // stop multipl
[all...]
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java172 public void stop() { method in class:DropBoxManagerService
/frameworks/base/services/java/com/android/server/location/
H A DComprehensiveCountryDetector.java52 * Using the {@link #stop()} to stop listening to the country change.
156 public void stop() { method in class:ComprehensiveCountryDetector
373 Slog.d(TAG, "tries to stop LocationBasedDetector "
377 mLocationBasedCountryDetector.stop();
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java65 public synchronized void stop() { method in class:SipWakeupTimer
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp224 stop();
242 status_t AacAdtsSource::stop() { function in class:android::AacAdtsSource
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorAudioEncoder.cpp48 virtual status_t stop();
107 stop();
129 status_t VideoEditorAudioEncoderSource::stop() { function in class:android::VideoEditorAudioEncoderSource
132 ALOGV("VideoEditorAudioEncoderSource::stop");
135 ALOGV("VideoEditorAudioEncoderSource::stop ERROR: invalid state %d",
148 ALOGV("VideoEditorAudioEncoderSource::stop : %d buffer remained", i);
154 ALOGV("VideoEditorAudioEncoderSource::stop END (0x%x)", err);
316 pEncoderContext->mEncoder->stop();
/frameworks/av/media/libmedia/
H A DIMediaRecorder.cpp259 status_t stop() function in class:android::BpMediaRecorder
261 ALOGV("stop");
331 reply->writeInt32(stop());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp59 mLooper->stop();
245 status_t NuPlayerDriver::stop() { function in class:android::NuPlayerDriver
H A DRTSPSource.cpp70 mLooper->stop();
114 void NuPlayer::RTSPSource::stop() { function in class:android::NuPlayer::RTSPSource
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp45 virtual status_t stop();
251 stop();
272 status_t AACSource::stop() { function in class:android::AACSource
H A DWAVExtractor.cpp65 virtual status_t stop();
357 stop();
381 status_t WAVSource::stop() { function in class:android::WAVSource
382 ALOGV("WAVSource::stop");
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.cpp158 status_t ARTPWriter::stop() { function in class:android::ARTPWriter
223 CHECK_EQ(mSource->stop(), (status_t)OK);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp479 int16_t *stop = (int16_t *)(buffer->data() + buffer->size()); local
480 while (ptr < stop) {
/frameworks/base/core/java/android/app/
H A DLoaderManager.java300 // no longer started... so make it stop.
301 stop();
309 // was after being restarted from a stop, and now at the point of
328 void stop() { method in class:LoaderManagerImpl.LoaderInfo
786 mLoaders.valueAt(i).stop();
/frameworks/base/core/java/android/preference/
H A DVolumePreference.java137 mSeekBarVolumizer.stop();
288 public void stop() { method in class:VolumePreference.SeekBarVolumizer
340 mRingtone.stop();
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DAccessibilityInjectorTest.java123 mWorker.stop();
1747 public void stop() { method in class:AccessibilityInjectorTest.Worker

Completed in 1621 milliseconds

1234567