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

123456789

/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/com/android/layoutlib/bridge/
H A DBridgeXmlBlockParserTest.java47 assertEquals(XmlPullParser.START_DOCUMENT, parser.next());
49 assertEquals(XmlPullParser.START_TAG, parser.next());
52 assertEquals(XmlPullParser.TEXT, parser.next());
54 assertEquals(XmlPullParser.START_TAG, parser.next());
56 assertEquals(XmlPullParser.TEXT, parser.next());
57 assertEquals(XmlPullParser.END_TAG, parser.next());
59 assertEquals(XmlPullParser.TEXT, parser.next());
61 assertEquals(XmlPullParser.START_TAG, parser.next());
63 assertEquals(XmlPullParser.END_TAG, parser.next());
65 assertEquals(XmlPullParser.TEXT, parser.next());
[all...]
/frameworks/base/awt/java/awt/geom/
H A DPathIterator.java106 * Tells this PathIterator to skip to the next segment.
108 public void next(); method in interface:PathIterator
111 * Gets the coordinates of the next vertex point along the shape's outline
129 * Gets the coordinates of the next vertex point along the shape's outline
/frameworks/base/awt/org/apache/harmony/awt/
H A DReadOnlyIterator.java50 public E next() { method in class:ReadOnlyIterator
51 return it.next();
/frameworks/base/core/java/android/os/
H A DMessageQueue.java91 final Message next() { method in class:MessageQueue
98 // Try to retrieve the next message, returning if found.
159 mMessages = msg.next;
191 msg.next = p;
198 p = p.next;
200 msg.next = prev.next;
201 prev.next = msg;
219 Message n = p.next;
227 Message n = p.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/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/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java181 Keyboard next = null;
183 next = mSymbolsKeyboard;
185 next = mQwertyKeyboard;
187 if (next != null) {
188 mKeyboardView.setKeyboard(next);
202 PasswordEntryKeyboard next = null;
207 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
210 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
213 next = isAlphaMode ? mQwertyKeyboard : mSymbolsKeyboard;
215 if (next !
[all...]
/frameworks/base/media/libdrm/mobile2/include/util/domcore/
H A DNodeIterator.h23 * the underlying data was modified, the next() or prev() may not return the right result.
34 * Find the specify node's next order node.
36 * @return The next order node when success.
61 * Get next order node at current position in DOM_TREE.
63 * The pointer of node On can get next node.
65 NodeImpl* next();
68 * Get next order node at current position in DOM_TREE.
/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...]
H A Daidl.cpp43 if (p->next) printf(", ");
44 p=p->next;
49 q=q->next;
60 d = d->next;
87 struct import_info* next; member in struct:import_info
108 import->next = g_imports;
254 items = items->next;
353 items = items->next;
430 goto next;
487 next
544 const document_item_type* next = items->next; local
[all...]
/frameworks/base/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/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.java125 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();
152 UrlInterceptHandler handler = (UrlInterceptHandler) iter.next();
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DDecodingImageSource.java65 d = i.next();
102 d = i.next();
122 cons = i.next();
149 d = i.next();
169 res = i.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.java196 int next = mCurFrame+1;
198 if (next >= N) {
199 next = 0;
201 setFrame(next, unschedule, !mAnimationState.mOneShot || next < (N - 1));
240 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT &&
267 while ((type=parser.next()) == XmlPullParser.TEXT) {
/frameworks/base/libs/utils/
H A DCallStack.cpp117 struct mapinfo *next; member in struct:android::MapInfo::mapinfo
131 mi = mi->next;
149 mi->next = 0;
165 mi->next = milist;
185 mapinfo *next = milist->next; local
187 milist = next;
/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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeXmlBlockParser.java226 return next();
233 public int next() throws XmlPullParserException, IOException { method in class:BridgeXmlBlockParser
238 int ev = mParser.next();
267 + ": parser must be on START_TAG to read next text", this,
270 int eventType = next();
273 eventType = next();
291 int eventType = next();
293 eventType = next();
/frameworks/base/core/java/android/text/
H A DHtml.java154 int next;
155 for (int i = 0; i < text.length(); i = next) {
156 next = text.nextSpanTransition(i, len, ParagraphStyle.class);
157 ParagraphStyle[] style = text.getSpans(i, next, ParagraphStyle.class);
179 withinDiv(out, text, i, next);
189 int next;
190 for (int i = start; i < end; i = next) {
191 next = text.nextSpanTransition(i, end, QuoteSpan.class);
192 QuoteSpan[] quotes = text.getSpans(i, next, QuoteSpan.class);
198 withinBlockquote(out, text, i, next);
[all...]

Completed in 373 milliseconds

123456789