Searched defs:next (Results 26 - 50 of 108) sorted by path

12345

/frameworks/base/core/java/android/os/
H A DBroadcaster.java44 r.next = r;
54 r = r.next;
64 reg.next = r;
66 r.prev.next = reg;
113 r = r.next;
160 r = r.next;
185 r = r.next;
204 Registration next; field in class:Broadcaster.Registration
H A DMessage.java108 /*package*/ Message next; field in class:Message
126 sPool = m.next;
127 m.next = null;
308 next = sPool;
H A DMessageQueue.java44 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
47 // The next barrier token.
127 Message next() { method in class:MessageQueue
146 // Try to retrieve the next message. Return if found.
151 // Stalled by a barrier. Find the next asynchronous message in the queue.
154 msg = msg.next;
165 prevMsg.next = msg.next;
167 mMessages = msg.next;
169 msg.next
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java424 public String next() { method in class:TextUtils.SimpleStringSplitter
896 char next = ssb.charAt(i+1);
897 if (next == '^') {
901 } else if (Character.isDigit(next)) {
902 int which = Character.getNumericValue(next) - 1;
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java69 public T next() { method in class:FastImmutableArraySet.FastIterator
H A DMapCollections.java54 public T next() { method in class:MapCollections.ArrayIterator
89 public Map.Entry<K, V> next() { method in class:MapCollections.MapIterator
202 if (!contains(it.next())) {
381 if (!contains(it.next())) {
459 if (!map.containsKey(it.next())) {
470 map.remove(it.next());
479 if (!collection.contains(it.next())) {
/frameworks/base/core/java/android/view/
H A DChoreographer.java35 * the next display frame.
44 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
49 * next display frame, use {@link View#postInvalidateOnAnimation()} or
78 // wait before posting the next animation message. It is important that the
247 * on the next frame, but this is much better than waiting a whole 16ms and likely
278 * Posts a callback to run on the next frame.
284 * @param action The callback action to run during the next frame.
295 * Posts a callback to run on the next frame after the specified delay.
301 * @param action The callback action to run during the next fram
758 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
H A DInputEventConsistencyVerifier.java154 mKeyStateList = state.next;
676 last.next = state.next;
678 mKeyStateList = state.next;
680 state.next = null;
685 state = state.next;
692 state.next = mKeyStateList;
700 public KeyState next; field in class:InputEventConsistencyVerifier.KeyState
714 mRecycledList = state.next;
728 next
[all...]
H A DKeyCharacterMap.java659 * to next character key that is pressed and will then reset itself to the initial state.
747 private FallbackAction next; field in class:KeyCharacterMap.FallbackAction
762 sRecycleBin = target.next;
764 target.next = null;
773 next = sRecycleBin;
777 next = null;
H A DViewGroup.java253 // When set, the next call to drawChild() will clear mChildTransformation's matrix
1704 predecessor.next = hoverTarget.next;
1706 firstOldHoverTarget = hoverTarget.next;
1708 hoverTarget.next = null;
1714 hoverTarget = hoverTarget.next;
1719 lastHoverTarget.next = hoverTarget;
1779 final HoverTarget nextOldHoverTarget = firstOldHoverTarget.next;
1854 final HoverTarget next = target.next;
6972 public TouchTarget next; field in class:ViewGroup.TouchTarget
7019 public HoverTarget next; field in class:ViewGroup.HoverTarget
[all...]
H A DViewRootImpl.java415 * Call this to profile the next traversal call.
989 * Add LayoutTransition to the list of transitions to be started in the next traversal.
997 * @param transition The LayoutTransition to be started on the next traversal.
1149 if (DEBUG_DIALOG) Log.v(TAG, "Window " + mView + ": next baseSize="
1317 // shown for the first time the next time it gets focus.
1677 // !!FIXME!! This next section handles the case where we did not get the
1951 // Remember if we must report the next draw.
1995 mLayoutRequested = true; // ask wm for a new surface next time.
2029 * requests to the next frame to avoid possible infinite loops.
2033 * next fram
3436 InputStage(InputStage next) argument
3555 AsyncInputStage(InputStage next, String traceCounter) argument
3684 NativePreImeInputStage(InputStage next, String traceCounter) argument
3713 ViewPreImeInputStage(InputStage next) argument
3740 ImeInputStage(InputStage next, String traceCounter) argument
3780 EarlyPostImeInputStage(InputStage next) argument
3845 NativePostImeInputStage(InputStage next, String traceCounter) argument
3873 ViewPostImeInputStage(InputStage next) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java73 * the find next or find previous button to find all of the matches.
110 * Move the highlight to the next match.
111 * @param next If true, find the next match further down in the document.
114 private void findNext(boolean next) { argument
124 // There are no matches, so moving to the next match will not do
128 mWebView.findNext(next);
/frameworks/base/core/java/android/widget/
H A DMediaController.java63 * <li> The "previous" and "next" buttons are hidden until setPrevNextListeners()
65 * <li> The "previous" and "next" buttons are visible but disabled if
283 mNextButton = (ImageButton) v.findViewById(com.android.internal.R.id.next);
674 public void setPrevNextListeners(View.OnClickListener next, View.OnClickListener prev) { argument
675 mNextListener = next;
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java253 static protected int next(int x, int val, boolean isRtl) { method in class:AbsActionBarView
/frameworks/base/core/jni/android/graphics/
H A DAutoDecodeCancel.cpp36 AutoDecoderCancel* next = fNext; local
40 prev->fNext = next;
43 gAutoDecoderCancel = next;
45 if (next) {
46 SkASSERT(next->fPrev == this);
47 next->fPrev = prev;
H A DPath.cpp361 PointMap::iterator next = iter; local
362 ++next;
363 while (next != tToPoint.end()) {
369 iter->second, next->first, next->second, midT, midPoint, errorSquared);
381 next = tToPoint.insert(iter, PointMap::value_type(midT, midPoint));
384 iter = next;
385 next++;
438 while ((verb = pathIter.next(points, false)) != SkPath::kDone_Verb) {
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp88 nativeGetNextSensor(JNIEnv *env, jclass clazz, jobject sensor, jint next) argument
94 if (size_t(next) >= count)
97 Sensor const* const list = sensorList[next];
121 next++;
122 return size_t(next) < count ? next : 0;
H A Dcom_android_internal_content_NativeLibraryHelper.cpp305 ZipEntryRO next() { function in class:android::NativeLibrariesIterator
306 ZipEntryRO next = NULL; local
307 while ((next = mZipFile->nextEntry(mCookie)) != NULL) {
309 if (mZipFile->getEntryFileName(next, fileName, sizeof(fileName))) {
349 return next;
391 while ((entry = it->next()) != NULL) {
435 while ((entry = it->next()) != NULL) {
509 ZipEntryRO next = NULL; local
510 while ((next = zipFile->nextEntry(cookie)) != NULL) {
511 if (zipFile->getEntryFileName(next, fileNam
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DAtlas.java235 * the next bitmap.
257 Cell next; field in class:Atlas.SlicePolicy.Cell
275 mRoot.next = first;
281 Cell cell = mRoot.next;
290 cell = cell.next;
419 prev.next = first;
424 prev.next = second;
425 second.next = cell.next;
427 prev.next
[all...]
H A DRegionIterator.java33 * Return the next rectangle in the region. If there are no more rectangles
37 public final boolean next(Rect r) { method in class:RegionIterator
/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;
H A DResourceTypes.cpp656 * add it together with the next character.
678 * add it together with the next character.
999 ResXMLParser::event_code_t ResXMLParser::next() function in class:android::ResXMLParser
1395 const ResXMLTree_node* next = (const ResXMLTree_node*) local
1397 //ALOGW("Next node: prev=%p, next=%p\n", mCurNode, next);
1399 if (((const uint8_t*)next) >= mTree.mDataEnd) {
1404 if (mTree.validateNode(next) != NO_ERROR) {
1409 mCurNode = next;
1410 const uint16_t headerSize = dtohs(next
[all...]
/frameworks/base/libs/hwui/
H A DAmbientShadow.cpp71 inline Vector2 getNormalFromVertices(const Vector3* vertices, int current, int next) { argument
74 Vector2 nextVertex = { vertices[next].x, vertices[next].y };
H A DDamageAccumulator.cpp44 DirtyStack* next; member in struct:android::uirenderer::DirtyStack
80 if (!mHead->next) {
82 nextFrame->next = 0;
84 mHead->next = nextFrame;
86 mHead = mHead->next;
H A DPatchCache.cpp96 while (i.next()) {
103 BufferBlock* next = block->next; local
105 block = next;
112 while (i.next()) {
160 block->next = mFreeBlocks;
207 block = block->next;
227 previous->next = block->next;
229 mFreeBlocks = block->next;
[all...]

Completed in 495 milliseconds

12345