Searched defs:next (Results 1 - 25 of 65) sorted by relevance

123

/frameworks/base/services/java/com/android/server/am/
H A DLaunchWarningWindow.java13 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) { argument
26 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
29 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
/frameworks/base/core/java/android/content/
H A DCursorEntityIterator.java56 * @see EntityIterator#next()
67 * Returns the next object in the iteration, i.e. returns the element in
70 * @return the next object.
75 public Entity next() { method in class:CursorEntityIterator
77 throw new IllegalStateException("calling next() when the iterator is closed");
80 throw new IllegalStateException("you may only call next() if hasNext() is true");
/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;
/frameworks/base/graphics/java/android/graphics/
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/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/frameworks/base/sax/java/android/sax/
H A DChildren.java52 current = current.next;
57 previous.next = current;
79 current = current.next;
89 Child next; field in class:Children.Child
/frameworks/base/tests/CoreTests/android/core/
H A DPipedStreamTest.java30 public int next() { method in class:Fibonacci
93 assertEquals(readByte, (byte) fib.next());
107 int toWrite = fib.next();
172 assertEquals("Error at " + countRead, fib.next(), readInt);
188 int toWrite = fib.next();
260 int toWrite = fib.next();
297 assertEquals("Error at " + i, readInt, fib.next());
/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 DMessageQueue.java40 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
111 final Message next() { method in class:MessageQueue
122 // Try to retrieve the next message. Return if found.
129 mMessages = msg.next;
130 msg.next = null;
208 msg.next = p;
215 p = p.next;
217 msg.next = prev.next;
218 prev.next
[all...]
H A DMessage.java86 /*package*/ Message next; field in class:Message
102 mPool = m.next;
103 m.next = null;
244 next = mPool;
/frameworks/base/media/libeffects/factory/
H A DEffectsFactory.h32 struct list_elem_s *next; member in struct:list_elem_s
/frameworks/base/media/libstagefright/include/
H A DMPEG4Extractor.h47 Track *next; member in struct:android::MPEG4Extractor::Track
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DATResponseParser.java27 private int next = 0; field in class:ATResponseParser
92 return next < line.length();
100 if (next == 0) {
104 if (next >= len) {
111 char c = line.charAt(next++);
117 if (next >= len) {
120 c = line.charAt(next++);
121 tokStart = next - 1;
122 while (c != '"' && next < len) {
123 c = line.charAt(next
[all...]
/frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
H A DExportTestProvider.java59 public Entity next() { method in class:ExportTestProvider.MockEntityIterator
60 return mIterator.next();
/frameworks/base/libs/rs/
H A DrsLocklessFifo.cpp158 void LocklessCommandFifo::next() function in class:LocklessCommandFifo
165 //dumpState("next");
/frameworks/base/tools/localize/
H A DValues.cpp90 size_t next = raw.find(':', index); local
91 if (next != raw.npos) {
92 parts->push_back(string(raw, index, next-index));
93 index = next + 1;
/frameworks/base/cmds/runtime/
H A DSignalHandler.cpp52 int next = mOwner.mCommandBottom+1; local
53 if (next >= COMMAND_QUEUE_SIZE) {
54 next = 0;
57 mOwner.mCommandBottom = next;
216 // Find the next command slot...
/frameworks/base/cmds/servicemanager/
H A Dservice_manager.c92 struct svcinfo *next; member in struct:svcinfo
105 for (si = svclist; si; si = si->next) {
180 si->next = svclist;
240 si = si->next;
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java56 * The result of a call to next().
117 * Returns whether or not there are more rows to compare using next().
142 * Returns the comparison result of the next row from each cursor. If one cursor
148 * Once next() has been called the cursors specified in the result of the call to
149 * next() are guaranteed to point to the row that was indicated. Reading values
150 * from the cursor that was not indicated in the call to next() will result in
156 public Result next() { method in class:CursorJoiner
158 throw new IllegalStateException("you must only call next() when hasNext() is true");
213 * Increment the cursors past the rows indicated in the most recent call to next().
214 * This will only have an affect once per call to next()
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp57 sensors_module_get_next_sensor(JNIEnv *env, jobject clazz, jobject sensor, jint next) argument
63 if (size_t(next) >= count)
66 Sensor const* const list = sensorList[next];
80 next++;
81 return size_t(next) < count ? next : 0;
/frameworks/base/location/java/android/location/
H A DGpsStatus.java52 public GpsSatellite next() { method in class:GpsStatus.SatelliteIterator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DTicker.java57 int next; field in class:Ticker.Segment
87 this.next = this.current + end;
98 int index = this.next;
115 this.next = len;
117 this.next = index + l.getLineStart(i+1);
139 this.next = index;
/frameworks/base/core/java/android/view/
H A DVelocityTracker.java63 public Pointer next; field in class:VelocityTracker.Pointer
163 nextPointer = previousPointer.next;
175 nextPointer = nextPointer.next;
186 pointer.next = nextPointer;
190 previousPointer.next = pointer;
216 final Pointer nextPointer = pointer.next;
222 previousPointer.next = nextPointer;
258 for (Pointer pointer = mPointerListHead; pointer != null; pointer = pointer.next) {
377 for (Pointer pointer = mPointerListHead; pointer != null; pointer = pointer.next) {
390 sRecycledPointerListHead = element.next;
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DHandlerCaller.java36 SomeArgs next; field in class:HandlerCaller.SomeArgs
87 mArgsPool = args.next;
88 args.next = null;
99 args.next = mArgsPool;
/frameworks/base/include/private/ui/
H A DRegionHelper.h78 int inside = spanner.next(current.top, current.bottom);
82 int inside = spannerInner.next(current.left, current.right);
111 inline int next(TYPE& head, TYPE& tail, function in class:android::region_operator::SpannerBase
173 inline int next(TYPE& top, TYPE& bottom) function in class:android::region_operator::Spanner
177 int inside = SpannerBase::next(top, bottom, more_lhs, more_rhs);
190 // got to next span
246 inline int next(TYPE& left, TYPE& right) function in class:android::region_operator::SpannerInner
250 int inside = SpannerBase::next(left, right, more_lhs, more_rhs);

Completed in 556 milliseconds

123