Searched refs:next (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/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/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc41 // -> jump to the next not '/'
44 // -> jump to the next not '/'
59 size_t next = handler + 1;
60 if (next >= pathname.size())
62 switch(pathname[next]) { // next = handler + 1;
64 while (next < pathname.size() && separator == pathname[next])
65 ++next;
66 // next i
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java46 assertEquals(XmlPullParser.START_DOCUMENT, parser.next());
48 assertEquals(XmlPullParser.START_TAG, parser.next());
51 assertEquals(XmlPullParser.TEXT, parser.next());
53 assertEquals(XmlPullParser.START_TAG, parser.next());
55 assertEquals(XmlPullParser.TEXT, parser.next());
56 assertEquals(XmlPullParser.END_TAG, parser.next());
58 assertEquals(XmlPullParser.TEXT, parser.next());
60 assertEquals(XmlPullParser.START_TAG, parser.next());
62 assertEquals(XmlPullParser.END_TAG, parser.next());
64 assertEquals(XmlPullParser.TEXT, parser.next());
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java44 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
47 // The next barrier token.
117 final Message next() { method in class:MessageQueue
132 // Try to retrieve the next message. Return if found.
137 // Stalled by a barrier. Find the next asynchronous message in the queue.
140 msg = msg.next;
151 prevMsg.next = msg.next;
153 mMessages = msg.next;
155 msg.next
[all...]
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
/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/core/java/android/view/
H A DChoreographer.java31 * the next display frame.
40 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
42 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
45 * next display frame, use {@link View#postInvalidateOnAnimation()} or
74 // wait before posting the next animation message. It is important that the
239 * on the next frame, but this is much better than waiting a whole 16ms and likely
253 * Posts a callback to run on the next frame.
259 * @param action The callback action to run during the next frame.
270 * Posts a callback to run on the next frame after the specified delay.
276 * @param action The callback action to run during the next fram
716 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
/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/native/libs/binder/
H A DMemoryDealer.cpp64 newNode->next = node->next;
65 if (node->next == 0) mLast = newNode;
66 else node->next->prev = newNode;
67 node->next = newNode;
72 newNode->next = node;
74 else node->prev->next = newNode;
81 newNode->prev = newNode->next = 0;
84 newNode->next = mFirst;
95 newNode->next
148 mutable chunk_t* next; member in struct:android::SimpleBestFitAllocator::chunk_t
[all...]
/frameworks/base/tools/aidl/
H A Daidl_language_y.y58 while (p && p->next) {
59 p=p->next;
62 p->next = (document_item_type*)$2.document_item;
85 b->document_item.next = NULL;
106 b->document_item.next = NULL;
131 c->document_item.next = NULL;
141 c->document_item.next = NULL;
151 c->document_item.next = NULL;
192 while (p && p->next) {
193 p=p->next;
[all...]
H A Daidl_language.h18 struct extra_text_type* next; member in struct:extra_text_type
39 struct arg_type *next; member in struct:arg_type
48 struct interface_item_type* next; member in struct:interface_item_type
73 struct document_item_type* next; member in struct:document_item_type
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h32 struct list_elem_s *next; member in struct:list_elem_s
/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/av/include/drm/
H A DDrmMetadata.h47 const String8& next();
69 String8 next();
82 String8 key = keyIt.next();
H A DDrmConstraints.h83 const String8& next();
106 String8 next();
119 String8 key = keyIt.next();
H A DDrmInfo.h68 const String8& next();
92 String8& next();
H A DDrmInfoRequest.h82 const String8& next();
106 String8& next();
H A DDrmSupportInfo.h49 String8& next();
72 String8& next();
/frameworks/av/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp60 const T *next = (const T *) android_atomic_acquire_load((volatile int32_t *) &mNext); local
61 if (next != mCurrent) {
62 mAck = next; // no additional barrier needed
63 mCurrent = next;
68 return next;
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java223 Keyboard next = null;
225 next = mSymbolsKeyboard;
227 next = mQwertyKeyboard;
229 if (next != null) {
230 mKeyboardView.setKeyboard(next);
245 PasswordEntryKeyboard next = null;
250 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
253 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
256 next = isAlphaMode ? mQwertyKeyboard : mSymbolsKeyboard;
258 if (next !
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DLaunchWarningWindow.java30 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) { argument
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
H A DActivityStack.java100 // next activity.
175 * for the next activity to settle down before doing so. It contains
203 * List of people waiting to find out about the next launched activity.
209 * List of people waiting to find out about the next visible activity.
231 * next one, this variable holds the activity that is currently being paused.
274 * Dismiss the keyguard after the next activity is displayed?
453 * @return Returns the HistoryRecord of the next activity on the stack.
974 // awake until the next activity is started.
1007 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
1170 private final void completeResumeLocked(ActivityRecord next) { argument
[all...]
/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/java/android/webkit/
H A DUrlInterceptRegistry.java131 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();
159 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();

Completed in 505 milliseconds

1234567891011>>