Searched refs:next (Results 1 - 25 of 258) 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/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.java39 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
110 final Message next() { method in class:MessageQueue
121 // Try to retrieve the next message. Return if found.
128 mMessages = msg.next;
129 msg.next = null;
208 msg.next = p;
215 p = p.next;
217 msg.next = prev.next;
218 prev.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/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/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/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/base/tools/aidl/
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
72 struct document_item_type* next; member in struct:document_item_type
H A Daidl_language_y.y56 while (p && p->next) {
57 p=p->next;
60 p->next = (document_item_type*)$2.document_item;
83 b->document_item.next = NULL;
125 c->document_item.next = NULL;
150 while (p && p->next) {
151 p=p->next;
154 p->next = (interface_item_type*)$2.method;
171 method->interface_item.next = NULL;
186 method->interface_item.next
[all...]
/frameworks/base/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/base/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/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.java101 // next activity.
171 * for the next activity to settle down before doing so. It contains
199 * List of people waiting to find out about the next launched activity.
205 * List of people waiting to find out about the next visible activity.
227 * next one, this variable holds the activity that is currently being paused.
270 * Dismiss the keyguard after the next activity is displayed?
398 * @return Returns the HistoryRecord of the next activity on the stack.
876 // awake until the next activity is started.
908 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
1052 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/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/core/java/android/webkit/
H A DUrlInterceptRegistry.java131 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();
159 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
H A DListOfItemsShorterThanScreenTest.java52 final View next = mListView.getChildAt(1);
53 assertFalse(next.isSelected());
57 next.getTop());
61 assertTrue(next.isSelected());
62 assertEquals("next selected item shouldn't have moved",
64 next.getTop());
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java201 int next = mCurFrame+1;
203 if (next >= N) {
204 next = 0;
206 setFrame(next, unschedule, !mAnimationState.mOneShot || next < (N - 1));
245 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT &&
272 while ((type=parser.next()) == XmlPullParser.TEXT) {

Completed in 698 milliseconds

1234567891011