Searched refs:next (Results 76 - 100 of 301) sorted by relevance

1234567891011>>

/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_inner.h83 struct _T_DRM_Session_Node* next; member in struct:_T_DRM_Session_Node
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java102 // id already found skip to next style
263 int next;
265 for (int t = tag.indexOf(';'); t < len; t = next) {
271 next = tag.indexOf(';', eq);
272 if (next < 0) {
273 next = len;
277 String value = tag.substring(eq + 1, next);
H A DXmlBlock.java221 return next();
236 public int next() throws XmlPullParserException,IOException { method in class:XmlBlock.Parser
277 + ": parser must be on START_TAG to read next text", this, null);
279 int eventType = next();
282 eventType = next();
298 int eventType = next();
300 eventType = next();
/frameworks/base/core/java/android/view/
H A DViewGroup.java227 // When set, the next call to drawChild() will clear mChildTransformation's matrix
1458 predecessor.next = hoverTarget.next;
1460 firstOldHoverTarget = hoverTarget.next;
1462 hoverTarget.next = null;
1468 hoverTarget = hoverTarget.next;
1473 lastHoverTarget.next = hoverTarget;
1532 final HoverTarget nextOldHoverTarget = firstOldHoverTarget.next;
1607 final HoverTarget next = target.next;
6049 public TouchTarget next; field in class:ViewGroup.TouchTarget
6096 public HoverTarget next; field in class:ViewGroup.HoverTarget
[all...]
H A DFocusFinder.java26 * The algorithm used for finding the next focusable view in a given direction
57 * Find the next view to take focus in root's descendants, starting from the view
62 * @return The next focusable view, or null if none exists.
69 * Find the next view to take focus in root's descendants, searching from
74 * @return The next focusable view, or null if none exists.
82 View next = null;
84 next = findNextUserSpecifiedFocus(root, focused, direction);
86 if (next != null) {
87 return next;
94 next
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java30 * Setting the level value of the object with {@link #setLevel(int)} will load the image with the next
97 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
129 while ((type = parser.next()) == XmlPullParser.TEXT) {
H A DMipmapDrawable.java140 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
163 while ((type = parser.next()) == XmlPullParser.TEXT) {
/frameworks/base/services/java/com/android/server/am/
H A DUriPermissionOwner.java98 UriPermission perm = it.next();
117 UriPermission perm = it.next();
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMockAccessibilityService.java252 TestCase.assertEquals(message, expectedTextIterator.next().toString(),
253 receivedTextIterator.next().toString());
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DLayoutInflater_Delegate.java102 while ((type = childParser.next()) != XmlPullParser.START_TAG &&
192 while (((type = parser.next()) != XmlPullParser.END_TAG ||
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java117 out.print(i.next() + "<br/>");
118 out.print(i.next() + "<br/>");
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java61 public Entity next() { method in class:ExportTestProvider.MockEntityIterator
62 return mIterator.next();
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java106 final PlaybackQueueItem item = it.next();
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp46 extra = extra->next;
H A Dgenerate_java_binder.cpp284 arg = arg->next;
331 arg = arg->next;
377 arg = arg->next;
397 arg = arg->next;
450 arg = arg->next;
483 arg = arg->next;
553 item = item->next;
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp274 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
380 behavior = behavior->next;
428 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
594 lastBehavior->next = behavior;
620 behavior = behavior->next) {
646 Behavior* next = behavior->next; local
648 behavior = next;
656 next(NULL), metaState(0), character(0), fallbackKeyCode(0) {
660 next(othe
[all...]
/frameworks/native/include/utils/
H A DBasicHashtable.h67 ssize_t next(ssize_t index) const;
130 // Returns the increment to add to a bucket index to seek to the next bucket
137 // Returns the index of the next bucket that is in the collision chain
254 /* Returns the index of the next entry in the hashtable given the index of a previous entry.
257 * If the given index is not -1, then returns the index of the next entry in the hashtable,
263 inline ssize_t next(ssize_t index) const { function in class:android::BasicHashtable
264 return BasicHashtableImpl::next(index);
269 * otherwise returns the index of the next matching entry.
301 * to continue iterating over the hashtable using next() or find().
/frameworks/base/services/input/
H A DInputDispatcher.h400 T* next; member in struct:android::InputDispatcher::Link
404 inline Link() : next(NULL), prev(NULL) { }
618 tail->next = entry;
622 entry->next = NULL;
627 entry->next = head;
639 entry->prev->next = entry->next;
641 head = entry->next;
643 if (entry->next) {
644 entry->next
[all...]
/frameworks/base/media/libdrm/mobile1/src/jni/
H A Ddrm1_jni.c82 * The next DRM data.
84 struct _DrmData *next; member in struct:_DrmData
102 d->next = NULL;
140 d->next = drmTable;
162 for (d = drmTable; d != NULL; d = d->next) {
186 for (curItem = drmTable; curItem != NULL; curItem = curItem->next) {
189 drmTable = curItem->next;
191 preItem->next = curItem->next;
294 pTmp = pTmp->next;
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp280 Track *next = track->next; local
283 track = next;
289 SINF *next = sinf->next; local
292 sinf = next;
316 track = track->next;
335 track = track->next;
400 sinf = sinf->next;
486 sinf->next
[all...]
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp100 // default to long sleep for next cycle
104 const FastMixerState *next = mSQ.poll();
105 if (next == NULL) {
108 next = current;
111 FastMixerState::Command command = next->mCommand;
112 if (next != current) {
115 dumpState = next->mDumpState != NULL ? next->mDumpState : &dummyDumpState;
116 teeSink = next->mTeeSink;
137 current = next;
[all...]
/frameworks/base/services/java/com/android/server/
H A DIntentResolverOld.java177 public F next() { method in class:IntentResolverOld.IteratorWrapper
178 return (mCur = mI.next());
367 String name = i.next();
416 String name = i.next();
452 String name = i.next();
474 String name = i.next();
/frameworks/base/services/java/com/android/server/display/
H A DWifiDisplayController.java458 // continue to next step
472 next();
479 next();
482 private void next() {
505 next();
512 next();
515 private void next() {
/frameworks/native/libs/utils/
H A DVectorImpl.cpp195 void* next = reinterpret_cast<char*>(array) + mItemSize*(i); local
197 _do_destroy(next, 1);
198 _do_copy(next, curr, 1);
199 next = curr;
204 _do_destroy(next, 1);
205 _do_copy(next, temp, 1);
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java103 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
180 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
297 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)

Completed in 6629 milliseconds

1234567891011>>