Searched defs:next (Results 76 - 100 of 136) sorted by relevance

123456

/frameworks/support/core-ui/tests/java/android/support/v4/view/
H A DBaseViewPagerTest.java339 private void verifyPageChangeViewActions(ViewAction next, ViewAction previous) { argument
348 onView(withId(R.id.pager)).perform(next);
349 assertEquals("Move to next page", 1, mViewPager.getCurrentItem());
354 onView(withId(R.id.pager)).perform(next);
355 assertEquals("Move to next page", 2, mViewPager.getCurrentItem());
361 onView(withId(R.id.pager)).perform(next);
362 assertEquals("Attempt to move to next page beyond last page", 2,
701 // Remove our mock listener to get back to clean state for the next test
845 // If we stay on the same page between this index and the next one, both position
945 // If we stay on the same page between this index and the next on
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DPlaybackTestFragment.java351 public void next() { method in class:PlaybackTestFragment.PlaybackControlHelper
H A DPlaybackTestSupportFragment.java354 public void next() { method in class:PlaybackTestSupportFragment.PlaybackControlHelper
/frameworks/av/include/media/nbaio/
H A DNBLog.h86 uint8_t next[0]; member in struct:android::NBLog::FormatEntry::ending
99 // advance to next entry
103 iterator next() const;
183 // byte[3+mLength] start of next log entry
/frameworks/av/media/libnbaio/include/
H A DNBLog.h86 uint8_t next[0]; member in struct:android::NBLog::FormatEntry::ending
99 // advance to next entry
103 iterator next() const;
183 // byte[3+mLength] start of next log entry
/frameworks/base/core/java/android/view/
H A DChoreographer.java40 * the next display frame.
49 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
51 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
54 * next display frame, use {@link View#postInvalidateOnAnimation()} or
88 // wait before posting the next animation message. It is important that the
326 * on the next frame, but this is much better than waiting a whole 16ms and likely
357 * Posts a callback to run on the next frame.
363 * @param action The callback action to run during the next frame.
374 * Posts a callback to run on the next frame after the specified delay.
380 * @param action The callback action to run during the next fram
902 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
H A DKeyCharacterMap.java661 * to next character key that is pressed and will then reset itself to the initial state.
749 private FallbackAction next; field in class:KeyCharacterMap.FallbackAction
764 sRecycleBin = target.next;
766 target.next = null;
775 next = sRecycleBin;
779 next = null;
/frameworks/base/core/java/android/widget/
H A DMediaController.java60 * <li> The "previous" and "next" buttons are hidden until setPrevNextListeners()
62 * <li> The "previous" and "next" buttons are visible but disabled if
283 mNextButton = v.findViewById(com.android.internal.R.id.next);
680 public void setPrevNextListeners(View.OnClickListener next, View.OnClickListener prev) { argument
681 mNextListener = next;
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp329 ZipEntryRO next() { function in class:android::NativeLibrariesIterator
330 ZipEntryRO next = NULL; local
331 while ((next = mZipFile->nextEntry(mCookie)) != NULL) {
333 if (mZipFile->getEntryFileName(next, fileName, sizeof(fileName))) {
369 return next;
413 while ((entry = it->next()) != NULL) {
458 while ((entry = it->next()) != NULL) {
534 ZipEntryRO next = NULL; local
535 while ((next = zipFile->nextEntry(cookie)) != NULL) {
536 if (zipFile->getEntryFileName(next, fileNam
[all...]
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java137 Pair<Long, Cue> event = it.next();
212 /* get times for the next event */
495 public Pair<Long, Cue> next() { method in class:SubtitleTrack.CueList.EntryIterator
500 mCurrentTimeMs, mListIterator.next());
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java288 Link next; field in class:OctopusDrawable.Link
331 if (next != null) {
332 next.animateTo(end());
353 link1.next = link2;
354 link2.next = link3;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifParser.java40 * int event = parser.next();
60 * event = parser.next();
260 * Moves the parser forward and returns the next parsing event
271 protected int next() throws IOException, ExifInvalidFormatException { method in class:ExifParser
280 return next();
303 Log.w(TAG, "Invalid size of link to next IFD: " + offsetSize);
307 Log.w(TAG, "Invalid link to next IFD: " + ifdOffset);
408 * If {@link #next()} return {@link #EVENT_NEW_TAG} or
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java298 holder.next = mEventQueue;
308 while (current.next != null) {
309 current = current.next;
317 // Finished with this choreographer frame. Do the rest on the next one.
318 current.next = null;
333 // next batch is processed the event handle had been set to null.
502 public MotionEventHolder next; field in class:AccessibilityInputFilter.MotionEventHolder
519 next = null;
H A DMagnificationGestureHandler.java74 * scale. The next time the user magnifies the same magnification scale
83 * default magnification scale. The next time the user magnifies the same
212 public void setNext(EventStreamTransformation next) { argument
213 mNext = next;
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java326 public F next() { method in class:IntentResolver.IteratorWrapper
327 return (mCur = mI.next());
575 String name = i.next();
606 String name = i.next();
636 String name = i.next();
652 String name = i.next();
/frameworks/base/services/core/java/com/android/server/job/
H A DJobPackageTracker.java203 void finish(DataSet next, long now) { argument
209 // Propagate existing activity in to next data set.
210 PackageEntry nextPe = next.getOrCreateEntry(mEntries.keyAt(i), uidMap.keyAt(j));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java281 return next();
290 public int next() throws XmlPullParserException, IOException { method in class:BridgeXmlBlockParser
301 int ev = mParser.next();
364 + ": parser must be on START_TAG to read next text", this,
367 int eventType = next();
370 eventType = next();
389 int eventType = next();
391 eventType = next();
/frameworks/native/services/inputflinger/
H A DEventHub.h216 * After returning, the EventHub holds onto a wake lock until the next call to getEvent.
259 /* Requests the EventHub to reopen all input devices on the next call to getEvents(). */
336 Device* next; member in struct:android::EventHub::Device
458 // The array of pending epoll events and the index of the next event to be handled.
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java1034 public LengthRecordNode next = null; field in class:PduComposer.LengthRecordNode
1083 temp.next = stack;
1105 stack = stack.next;
/frameworks/rs/driver/runtime/
H A Drs_sample.c128 int32_t next, float w0, float w1) {
130 float p1 = getElementAt1(p, next);
138 int32_t next, float w0, float w1) {
140 float p1 = getElementAt1(p, next);
148 int32_t next, float w0, float w1) {
150 float2 p1 = getElementAt2(p, next);
158 int32_t next, float w0, float w1) {
160 float3 p1 = getElementAt3(p, next);
168 int32_t next, float w0, float w1) {
170 float3 p1 = getElementAt565(p, next);
127 getSample_A(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
137 getSample_L(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
147 getSample_LA(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
157 getSample_RGB(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
167 getSample_565(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
177 getSample_RGBA(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
268 getBilinearSample1D(const Allocation_t *alloc, float2 weights, uint32_t iPixel, uint32_t next, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
444 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW); local
[all...]
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp979 status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) { argument
985 if (next != NULL && !(next->mCurrentState &
987 ALOGE("next player is not prepared");
991 return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer);
/frameworks/av/media/libnbaio/
H A DNBLog.cpp167 NBLog::FormatEntry::iterator NBLog::FormatEntry::iterator::next() const { function in class:android::NBLog::FormatEntry::iterator
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp799 Int next; local
998 next = refine_next[k][0];
999 i += next;
1000 cand += next;
1001 next = refine_next[k][1];
1002 j += next;
1003 cand += lx * next;
1139 next = refine_next[k][0];
1140 cand += next;
1141 i += next;
[all...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java223 return next();
238 public int next() throws XmlPullParserException,IOException { method in class:XmlBlock.Parser
279 + ": parser must be on START_TAG to read next text", this, null);
281 int eventType = next();
284 eventType = next();
300 int eventType = next();
302 eventType = next();
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp326 PointMap::iterator next = iter; local
327 ++next;
328 while (next != tToPoint.end()) {
334 iter->second, next->first, next->second, midT, midPoint, errorSquared);
346 next = tToPoint.insert(iter, PointMap::value_type(midT, midPoint));
349 iter = next;
350 next++;
424 while ((verb = pathIter.next(points, false)) != SkPath::kDone_Verb) {

Completed in 2543 milliseconds

123456