Searched refs:next (Results 51 - 75 of 301) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java281 return next();
290 public int next() throws XmlPullParserException, IOException { method in class:BridgeXmlBlockParser
301 int ev = mParser.next();
364 + ": parser must be on START_TAG to read next text", this,
367 int eventType = next();
370 eventType = next();
389 int eventType = next();
391 eventType = next();
/frameworks/native/include/private/ui/
H A DRegionHelper.h78 int inside = spanner.next(current.top, current.bottom);
82 int inside = spannerInner.next(current.left, current.right);
116 inline int next(TYPE& head, TYPE& tail, function in class:android::region_operator::SpannerBase
182 inline int next(TYPE& top, TYPE& bottom) function in class:android::region_operator::Spanner
186 int inside = SpannerBase::next(top, bottom, more_lhs, more_rhs);
199 // got to next span
263 inline int next(TYPE& left, TYPE& right) function in class:android::region_operator::SpannerInner
267 int inside = SpannerBase::next(left, right, more_lhs, more_rhs);
/frameworks/base/libs/hwui/
H A DPathRenderer.cpp129 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
130 vec2 nextNormal(next->position[1] - current->position[1],
131 current->position[0] - next->position[0]);
146 current = next;
163 const Vertex* next = &(vertices[i + 1]); local
164 vec2 nextNormal(next->position[1] - current->position[1],
165 current->position[0] - next->position[0]);
184 current = next;
217 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
218 vec2 nextNormal(next
330 const Vertex* next = &(vertices[i + 1]); local
446 const Vertex* next = &(perimeter[i + 1 >= perimeter.size() ? 0 : i + 1]); local
[all...]
/frameworks/native/libs/utils/
H A DRefBase.cpp110 refs = refs->next;
128 refs = refs->next;
216 ref_entry* next; member in struct:android::RefBase::weakref_impl::ref_entry
238 ref->next = *refs;
252 *refs = ref->next;
256 refs = &ref->next;
274 ref = ref->next;
292 ref = ref->next;
310 refs = refs->next;
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
H A DListOfItemsTallerThanScreenTest.java63 // scroll down until next view is peeking ahead
73 // at this point, next view should be on screen peeking ahead, but we haven't given
93 // next view is peeking, now press one more time
99 // next view should now have selection, and be scrolled another a third of the list
102 final View next = mListView.getChildAt(1);
103 assertTrue("has selection", next.isSelected());
104 assertEquals(topOfPeekingNext - (mListView.getMaxScrollAmount()), next.getTop());
117 assertEquals("should be at next item",
178 * a) the next view is peeking in
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DSimpleInflater.java75 // Go to next tag
76 eventType = parser.next();
82 eventType = parser.next();
119 eventType = parser.next();
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java78 int next = i + BUFFER_LEN;
79 append(str, i, next<end ? BUFFER_LEN : (end-i));
80 i = next;
97 int next = i + BUFFER_LEN;
98 append(buf, i, next<end ? BUFFER_LEN : (end-i));
99 i = next;
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h36 : next(0), bound(0)
42 Chunk* next; member in struct:mcld::Chunk
55 : next(0), bound(0) {
71 Chunk* next; member in struct:mcld::Chunk
222 cur = cur->next;
249 m_pCurrent->next = result;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java71 int next; field in class:Ticker.Segment
101 this.next = this.current + end;
112 int index = this.next;
129 this.next = len;
131 this.next = index + l.getLineStart(i+1);
153 this.next = index;
/frameworks/av/drm/common/
H A DDrmConstraints.cpp65 const String8& DrmConstraints::KeyIterator::next() { function in class:DrmConstraints::KeyIterator
108 String8 DrmConstraints::Iterator::next() { function in class:DrmConstraints::Iterator
H A DDrmMetadata.cpp68 const String8& DrmMetadata::KeyIterator::next() { function in class:DrmMetadata::KeyIterator
113 String8 DrmMetadata::Iterator::next() { function in class:DrmMetadata::Iterator
H A DDrmSupportInfo.cpp131 String8& DrmSupportInfo::FileSuffixIterator::next() { function in class:DrmSupportInfo::FileSuffixIterator
155 String8& DrmSupportInfo::MimeTypeIterator::next() { function in class:DrmSupportInfo::MimeTypeIterator
/frameworks/base/core/java/android/app/
H A DAliasActivity.java94 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
106 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
/frameworks/base/core/java/android/os/
H A DLooper.java124 Message msg = queue.next(); // might block
271 msg = msg.next;
H A DMessage.java94 /*package*/ Message next; field in class:Message
110 sPool = m.next;
111 m.next = null;
253 next = sPool;
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DExpatPerformanceTest.java104 int eventType = pullParser.next();
122 eventType = pullParser.next();
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java114 final BroadcastInterceptor interceptor = i.next();
127 final BroadcastInterceptor interceptor = i.next();
/frameworks/base/tools/preload/
H A DPrintCsv.java94 out.print(i.next() + "\n");
95 out.print(i.next() + "\n");
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h28 struct tagdataPointArray *next; member in struct:tagdataPointArray
/frameworks/av/media/libstagefright/include/
H A DID3.h55 void next();
/frameworks/base/cmds/servicemanager/
H A Dservice_manager.c93 struct svcinfo *next; member in struct:svcinfo
107 for (si = svclist; si; si = si->next) {
192 si->next = svclist;
254 si = si->next;
/frameworks/base/services/java/com/android/server/am/
H A DAppBindRecord.java45 ConnectionRecord c = it.next();
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h88 Alloc::m_pCurrent->next = pClient.Alloc::m_pRoot;
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java61 String f = (String) itr.next();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCallBase.java49 Connection c = it.next();

Completed in 2556 milliseconds

1234567891011>>