Searched defs:next (Results 26 - 50 of 136) sorted by relevance

123456

/frameworks/base/core/java/android/metrics/
H A DMetricsReader.java109 * Empties the session and causes the next {@link #read(long)} to
141 /* Return the next entry in the current log session. */
142 public LogMaker next() { method in class:MetricsReader
143 final LogMaker next = mPendingQueue.poll();
144 if (next != null) {
145 mSeenQueue.offer(next);
147 return next;
/frameworks/base/core/java/android/os/
H A DTestLooperManager.java28 * The test code may use {@link #next()} to acquire messages that have been queued to this
73 * Returns the next message that should be executed by this queue, may block
79 public Message next() { method in class:TestLooperManager
91 return mQueue.next();
139 * Called to indicate that a Message returned by {@link #next()} has been parsed
H A DMessage.java110 /*package*/ Message next; field in class:Message
128 sPool = m.next;
129 m.next = null;
310 next = sPool;
441 * are suspended by means of a synchronization barrier until the next frame is
/frameworks/base/core/java/com/android/internal/widget/
H A DOpReorderer.java45 private void swapMoveOp(List<UpdateOp> list, int badMove, int next) { argument
47 final UpdateOp nextOp = list.get(next);
50 swapMoveRemove(list, badMove, moveOp, next, nextOp);
53 swapMoveAdd(list, badMove, moveOp, next, nextOp);
56 swapMoveUpdate(list, badMove, moveOp, next, nextOp);
/frameworks/base/libs/hwui/
H A DPatchCache.cpp75 while (i.next()) {
82 BufferBlock* next = block->next; local
84 block = next;
91 while (i.next()) {
139 block->next = mFreeBlocks;
188 block = block->next;
210 previous->next = block->next;
212 mFreeBlocks = block->next;
[all...]
H A DDamageAccumulator.cpp44 DirtyStack* next; member in struct:android::uirenderer::DirtyStack
80 if (!mHead->next) {
82 nextFrame->next = nullptr;
84 mHead->next = nextFrame;
86 mHead = mHead->next;
H A DPatchCache.h142 BufferBlock(uint32_t offset, uint32_t size): offset(offset), size(size), next(nullptr) {
148 BufferBlock* next; member in struct:android::uirenderer::PatchCache::BufferBlock
/frameworks/base/tools/bit/
H A Dcommand.cpp199 char* next = strchr(dir, ':'); local
200 if (next != NULL) {
201 *next = '\0';
202 next++;
211 dir = next;
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h135 Category* next; member in class:mcld::SymbolCategory::Category
139 : type(pType), begin(0), end(0), prev(NULL), next(NULL) {}
147 bool isLast() const { return (next == NULL); }
/frameworks/minikin/tools/
H A Dmk_hyb_file.py77 def next(self, cursor): member in class:Freelist
202 edge_ix, cursor = edges.next(cursor)
209 ix, _ = edges.next(0)
213 ix, _ = nodes.next(0)
233 for c, next in node.succ.items():
235 mapped[ch_map[c]] = next
352 for c, next in node.succ.items():
357 dedup_next = next
359 dedup_next = hyph.bfs_order[dedup_ix[next.bfs_ix]]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DMediaControllerGlue.java211 public void next() { method in class:MediaControllerGlue
H A DPlaybackGlue.java189 * Goes to the next media item. This method is optional.
191 public void next() { method in class:PlaybackGlue
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java45 private void swapMoveOp(List<UpdateOp> list, int badMove, int next) { argument
47 final UpdateOp nextOp = list.get(next);
50 swapMoveRemove(list, badMove, moveOp, next, nextOp);
53 swapMoveAdd(list, badMove, moveOp, next, nextOp);
56 swapMoveUpdate(list, badMove, moveOp, next, nextOp);
/frameworks/av/include/media/stagefright/
H A DMPEG4Extractor.h79 Track *next; member in struct:android::MPEG4Extractor::Track
127 SINF *next; member in struct:android::MPEG4Extractor::SINF
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h28 struct tagdataPointArray *next; member in struct:tagdataPointArray
/frameworks/av/media/libstagefright/foundation/include/
H A DMPEG4Extractor.h79 Track *next; member in struct:android::MPEG4Extractor::Track
127 SINF *next; member in struct:android::MPEG4Extractor::SINF
/frameworks/av/media/libstagefright/include/
H A DMPEG4Extractor.h79 Track *next; member in struct:android::MPEG4Extractor::Track
127 SINF *next; member in struct:android::MPEG4Extractor::SINF
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java267 public ZipEntry next() { method in class:StrictJarFile.EntryIterator
301 final ZipEntry entry = entryIterator.next();
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java74 * the find next or find previous button to find all of the matches.
111 * Move the highlight to the next match.
112 * @param next If true, find the next match further down in the document.
115 private void findNext(boolean next) { argument
125 // There are no matches, so moving to the next match will not do
129 mWebView.findNext(next);
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp50 RenderTask* TaskQueue::next() { function in class:android::uirenderer::renderthread::TaskQueue
78 RenderTask* next = mHead; local
79 while (next && next->mRunAt <= task->mRunAt) {
80 previous = next;
81 next = next->mNext;
88 if (next) {
89 task->mNext = next;
116 // If task is the head we can just call next() t
418 RenderTask* next = mQueue.peek(); local
[all...]
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.cpp89 Page* next() { return mNextPage; } function in class:android::uirenderer::LinearAllocator::Page
90 void setNext(Page* next) { mNextPage = next; } argument
125 mDtorList = node->next;
130 Page* next = p->next(); local
134 p = next;
198 node->next = mDtorList;
208 previous->next = node->next;
[all...]
H A DLinearAllocator.h127 DestructorNode* next = nullptr; member in struct:android::uirenderer::LinearAllocator::DestructorNode
/frameworks/base/location/java/android/location/
H A DGpsStatus.java64 public GpsSatellite next() { method in class:GpsStatus.SatelliteIterator
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUFlowManager.java102 private boolean deleteNetwork(OSUFlow next) { argument
106 } else if (next.getFlowType() != FlowType.Provisioning) {
110 OSUInfo thatInfo = next.mOSUClient.getOSUInfo();
346 if (flows.next().getFlowType() == FlowType.Provisioning) {
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSimPukView.java83 public void next() { method in class:KeyguardSimPukView.StateMachine
365 mStateMachine.next();

Completed in 366 milliseconds

123456