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

12345

/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp58 static inline float AdjustRatio(float current, float next) { argument
59 return (current + next) / 2.0;
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java315 public void setNext(EventStreamTransformation next) { argument
316 mNext = next;
456 // decide what we will actually do next.
1678 // or if it goes up the next one that most recently went down.
H A DScreenMagnifier.java81 * scale. The next time the user magnifies the same magnification scale
90 * default magnification scale. The next time the user magnifies the same
356 public void setNext(EventStreamTransformation next) { argument
357 mNext = next;
H A DAccessibilityManagerService.java287 ComponentName comp = it.next();
324 ComponentName comp = it.next();
1135 String str = splitter.next();
2964 pendingEvent.next = mPendingEvents;
2976 previous.next = current.next;
2978 mPendingEvents = current.next;
2980 current.next = null;
2984 current = current.next;
3024 PendingEvent next; field in class:AccessibilityManagerService.PendingEvent
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1526 private int next = 0; field in class:TelephonyRegistry
1532 if (logSSC[next] == null) {
1533 logSSC[next] = new LogSSC();
1537 logSSC[next].set(t, s, subId, phoneId, state);
1538 if (++next >= logSSC.length) {
1539 next = 0;
1544 if (logSSC == null || logSSC.length == 0 || (next == 0 && logSSC[next] == null)) {
1548 log(prompt + ": logSSC.length=" + logSSC.length + " next=" + next);
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp81 MipsRelocationInfo next() const function in class:mcld::MipsRelocationInfo
196 !info.isNone(); info = info.next()) {
246 !info.isNone(); info = info.next()) {
/frameworks/native/libs/input/
H A DInputTransport.cpp403 // Fetch the next input message.
414 // Consume the next batched event unless batches are being held for later.
532 const InputMessage* next; local
535 next = NULL;
537 next = &batch.samples.itemAt(0);
540 resampleTouchState(sampleTime, static_cast<MotionEvent*>(*outEvent), next);
677 const InputMessage* next) {
717 if (next) {
720 future.initializeFrom(next);
676 resampleTouchState(nsecs_t sampleTime, MotionEvent* event, const InputMessage* next) argument
H A DKeyCharacterMap.cpp276 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
382 behavior = behavior->next;
430 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
596 lastBehavior->next = behavior;
622 behavior = behavior->next) {
648 Behavior* next = behavior->next; local
650 behavior = next;
658 next(NULL), metaState(0), character(0), fallbackKeyCode(0) {
662 next(othe
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp565 AudioStream *next = mChain->mNext; local
567 mChain = next;
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java56 op = op.next;
82 op = op.next;
207 Op next; field in class:BackStackRecord.Op
349 op = op.next;
390 mTail.next = op;
610 op = op.next;
736 op = op.next;
819 op = op.next;
868 op = op.next;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h135 int write_pos; /* next position to write to bitstreamBuffer */
211 struct tagdataPointArray *next; member in struct:tagdataPointArray
H A Dmotion_est.cpp981 int next; local
1187 next = refine_next[k][0];
1188 i += next;
1189 cand += next;
1190 next = refine_next[k][1];
1191 j += next;
1192 cand += lx * next;
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java63 op = op.next;
89 op = op.next;
218 Op next; field in class:BackStackRecord.Op
396 op = op.next;
437 mTail.next = op;
700 op = op.next;
831 op = op.next;
915 op = op.next;
964 op = op.next;
/frameworks/base/core/java/android/text/
H A DTextUtils.java429 public String next() { method in class:TextUtils.SimpleStringSplitter
901 char next = ssb.charAt(i+1);
902 if (next == '^') {
906 } else if (Character.isDigit(next)) {
907 int which = Character.getNumericValue(next) - 1;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp339 const size_t next = static_cast<size_t>(cookie) + 1; local
340 return next > mAssetPaths.size() ? -1 : next;
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp217 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
218 Vector2 nextNormal = {next->y - current->y, current->x - next->x};
233 current = next;
317 const Vertex* next = &(vertices[i + 1]); local
318 Vector2 nextNormal = {next->y - current->y, current->x - next->x};
328 current = next;
359 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
360 Vector2 nextNormal = {next
601 const Vertex* next = &(vertices[i + 1]); local
665 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp81 jmethodID next; member in struct:android::IteratorFields
438 Entry e = s.next();
451 jobject entry = env->CallObjectMethod(iterator, gFields.iterator.next);
609 GET_METHOD_ID(gFields.iterator.next, clazz, "next", "()Ljava/lang/Object;");
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java105 // next activity.
176 * next one, this variable holds the activity that is currently being paused.
397 * @return Returns the HistoryRecord of the next activity on the stack.
810 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
811 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
841 // awake until the next activity is started.
878 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
1044 private void completeResumeLocked(ActivityRecord next) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java958 public void next() { method in class:MediaSessionRecord.SessionCb
962 Slog.e(TAG, "Remote failure in next.", e);
1166 public void next() throws RemoteException { method in class:MediaSessionRecord.ControllerStub
1167 mSessionCb.next();
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h400 T* next; member in struct:android::InputDispatcher::Link
404 inline Link() : next(NULL), prev(NULL) { }
620 tail->next = entry;
624 entry->next = NULL;
629 entry->next = head;
641 entry->prev->next = entry->next;
643 head = entry->next;
645 if (entry->next) {
646 entry->next
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java520 * Override to handle requests to skip to the next media item.
1597 public void next() throws RemoteException { method in class:MediaSessionCompat.MediaSessionImplBase.MediaSessionStub
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java53 * While trying to find next view to focus, LayoutManager will not try to scroll more
579 * @param anchorInfo Simple data structure to keep anchor point information for the next layout
893 * <p>Note that scroll position change will not be reflected until the next layout call.</p>
917 * Note that scroll position change will not be reflected until the next layout call.
1311 View view = layoutState.next(recycler);
1629 final int next = toIndex > fromIndex ? 1 : -1;
1631 for (int i = fromIndex; i != toIndex; i+=next) {
1799 * Current position on the adapter to get the next item.
1850 * Gets the view for the next element that we should layout.
1851 * Also updates current item index to the next ite
1855 View next(RecyclerView.Recycler recycler) { method in class:LinearLayoutManager.LayoutState
[all...]
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java1433 * the next as seamlessly as possible. The next player can be set at
1434 * any time before completion. The next player must be prepared by the
1436 * The next MediaPlayer must be different from 'this'. An exception
1437 * will be thrown if next == this.
1439 * next player should be started at the end of playback.
1440 * If the current player is looping, it will keep looping and the next
1443 * @param next the player to start after this one completes playback.
1446 public native void setNextMediaPlayer(MediaPlayer next); argument
2022 String contents = scanner.useDelimiter("\\A").next();
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp102 ssize_t next() function in class:ResourceDirIterator
108 // Try to get next file in this current group.
113 // Try to get the next group/file in this directory
233 while ((code=block.next()) != ResXMLTree::START_TAG
266 while ((code=block.next()) != ResXMLTree::END_DOCUMENT
300 while ((res=it.next()) == NO_ERROR) {
362 while ((res=it.next()) == NO_ERROR) {
559 while ((code=parser.next()) != ResXMLTree::END_DOCUMENT
675 // try next overlay
953 while ((code = tree.next()) !
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp369 Track *next = track->next; local
372 track = next;
378 SINF *next = sinf->next; local
381 sinf = next;
416 track = track->next;
436 track = track->next;
561 sinf = sinf->next;
648 sinf->next
[all...]

Completed in 419 milliseconds

12345