Searched defs:next (Results 1 - 25 of 124) sorted by path

12345

/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 DDrmInfo.cpp78 const String8& DrmInfo::KeyIterator::next() { function in class:DrmInfo::KeyIterator
106 String8& DrmInfo::Iterator::next() { function in class:DrmInfo::Iterator
H A DDrmInfoRequest.cpp72 const String8& DrmInfoRequest::KeyIterator::next() { function in class:DrmInfoRequest::KeyIterator
101 String8& DrmInfoRequest::Iterator::next() { function in class:DrmInfoRequest::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/av/media/img_utils/src/
H A DTiffIfd.cpp123 // Writer IFD footer (4 bytes, offset to next IFD).
139 size_t next = out->getCurrentOffset(); local
140 size_t diff = (next - last);
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h33 struct list_elem_s *next; member in struct:list_elem_s
42 struct list_sub_elem_s *next; member in struct:list_sub_elem_s
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp920 status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) { argument
926 if (next != NULL && !(next->mCurrentState &
928 ALOGE("next player is not prepared");
932 return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer);
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp383 Track *next = track->next; local
386 track = next;
392 SINF *next = sinf->next; local
395 sinf = next;
430 track = track->next;
450 track = track->next;
583 sinf = sinf->next;
669 sinf->next
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h135 int write_pos; /* next position to write to bitstreamBuffer */
211 struct tagdataPointArray *next; member in struct:tagdataPointArray
H A Dmotion_est.cpp981 int next; local
1187 next = refine_next[k][0];
1188 i += next;
1189 cand += next;
1190 next = refine_next[k][1];
1191 j += next;
1192 cand += lx * next;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp799 Int next; local
998 next = refine_next[k][0];
999 i += next;
1000 cand += next;
1001 next = refine_next[k][1];
1002 j += next;
1003 cand += lx * next;
1139 next = refine_next[k][0];
1140 cand += next;
1141 i += next;
[all...]
H A Drate_control.h28 struct tagdataPointArray *next; member in struct:tagdataPointArray
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp40 const char *next = value, *current; local
41 while (next != NULL) {
42 current = next;
43 next = strchr(current, ',');
44 if (next != NULL) {
45 ++next; // pass ,
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
70 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp438 void ID3::Iterator::next() { function in class:android::ID3::Iterator
853 it.next();
886 it.next();
/frameworks/av/media/libstagefright/include/
H A DMPEG4Extractor.h77 Track *next; member in struct:android::MPEG4Extractor::Track
125 SINF *next; member in struct:android::MPEG4Extractor::SINF
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp912 size_t next = 0; local
914 *--data = (size & 0x7f) | next;
916 next = 0x80;
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp62 const T *next = (const T *) atomic_load_explicit(&mNext, memory_order_acquire); local
64 if (next != mCurrent) {
65 mAck = next; // no additional barrier needed
66 mCurrent = next;
71 return next;
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java61 op = op.next;
87 op = op.next;
220 Op next; field in class:BackStackRecord.Op
398 op = op.next;
439 mTail.next = op;
666 op = op.next;
812 op = op.next;
917 op = op.next;
/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/core/java/android/content/res/
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/database/
H A DCursorJoiner.java56 * The result of a call to next().
117 * Returns whether or not there are more rows to compare using next().
142 * Returns the comparison result of the next row from each cursor. If one cursor
148 * Once next() has been called the cursors specified in the result of the call to
149 * next() are guaranteed to point to the row that was indicated. Reading values
150 * from the cursor that was not indicated in the call to next() will result in
156 public Result next() { method in class:CursorJoiner
158 throw new IllegalStateException("you must only call next() when hasNext() is true");
213 * Increment the cursors past the rows indicated in the most recent call to next().
214 * This will only have an affect once per call to next()
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java1132 public HistoryItem next; field in class:BatteryStats.HistoryItem
1615 * is called when printing partial histories, so to ensure that the next
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

Completed in 7113 milliseconds

12345