Searched defs:stepCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java209 * @param stepCount How many move steps to include in the drag
217 int stepCount) {
218 dragViewToBottom(test, test.getActivity(), v, stepCount);
227 * @param stepCount How many move steps to include in the drag
230 int stepCount) {
243 drag(test, x, x, fromY, toY, stepCount);
447 * @param stepCount How many move steps to include in the drag
454 public static void dragViewToTop(ActivityInstrumentationTestCase test, View v, int stepCount) { argument
455 dragViewToTop((InstrumentationTestCase) test, v, stepCount);
473 * @param stepCount Ho
216 dragViewToBottom(ActivityInstrumentationTestCase test, View v, int stepCount) argument
229 dragViewToBottom(InstrumentationTestCase test, Activity activity, View v, int stepCount) argument
475 dragViewToTop(InstrumentationTestCase test, View v, int stepCount) argument
748 drag(ActivityInstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
763 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp272 size_t stepCount = buffer->mFrameCount; local
273 if (stepCount == 0 || mIsShutdown) {
280 LOG_ALWAYS_FATAL_IF(!(stepCount <= mUnreleased && mUnreleased <= mFrameCount));
281 mUnreleased -= stepCount;
286 android_atomic_release_store(stepCount + rear, &cblk->u.mStreaming.mRear);
289 android_atomic_release_store(stepCount + front, &cblk->u.mStreaming.mFront);
600 size_t stepCount = buffer->mFrameCount; local
601 if (stepCount == 0 || mIsShutdown) {
608 LOG_ALWAYS_FATAL_IF(!(stepCount <= mUnreleased && mUnreleased <= mFrameCount));
609 mUnreleased -= stepCount;
808 size_t stepCount = buffer->mFrameCount; local
[all...]
H A DAudioRecord.cpp630 size_t stepCount = audioBuffer->size / mFrameSize; local
631 if (stepCount == 0) {
636 buffer.mFrameCount = stepCount;
H A DAudioTrack.cpp1189 size_t stepCount = audioBuffer->size / mFrameSizeAF; local
1190 if (stepCount == 0) {
1195 buffer.mFrameCount = stepCount;

Completed in 88 milliseconds