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

1234567891011>>

/frameworks/opt/telephony/src/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...]
/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.java32 * the next display frame.
41 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
43 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * next display frame, use {@link View#postInvalidateOnAnimation()} or
75 // wait before posting the next animation message. It is important that the
246 * on the next frame, but this is much better than waiting a whole 16ms and likely
260 * Posts a callback to run on the next frame.
266 * @param action The callback action to run during the next frame.
277 * Posts a callback to run on the next frame after the specified delay.
283 * @param action The callback action to run during the next fram
740 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/base/services/java/com/android/server/accessibility/
H A DEventStreamTransformation.java28 * output events to the next transformation in the sequence set via
49 * internal state and to propagate the event to the next one to enable subsequent
78 * Sets the next transformation.
80 * @param next The next transformation.
82 public void setNext(EventStreamTransformation next); argument
/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/base/libs/hwui/font/
H A DFontUtil.h58 #define AUTO_KERN(prev, next) (((next) - (prev) + 32) >> 6 << 16)
/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.java251 Keyboard next = null;
253 next = mSymbolsKeyboard;
255 next = mQwertyKeyboard;
257 if (next != null) {
258 mKeyboardView.setKeyboard(next);
273 PasswordEntryKeyboard next = null;
278 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
281 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
284 next = isAlphaMode ? mQwertyKeyboard : mSymbolsKeyboard;
286 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.java101 // next activity.
176 * for the next activity to settle down before doing so. It contains
204 * List of people waiting to find out about the next launched activity.
210 * List of people waiting to find out about the next visible activity.
235 * next one, this variable holds the activity that is currently being paused.
278 * Dismiss the keyguard after the next activity is displayed?
460 * @return Returns the HistoryRecord of the next activity on the stack.
979 // awake until the next activity is started.
1012 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
1193 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");

Completed in 597 milliseconds

1234567891011>>