Searched defs:next (Results 1 - 25 of 106) 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/include/media/
H A DMediaPlayerInterface.h178 virtual status_t setNextPlayer(const sp<MediaPlayerBase>& next) { argument
/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.h32 struct list_elem_s *next; member in struct:list_elem_s
41 struct list_sub_elem_s *next; member in struct:list_sub_elem_s
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp885 status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) { argument
890 if (next != NULL && !(next->mCurrentState &
892 ALOGE("next player is not prepared");
896 return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer);
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp369 Track *next = track->next; local
372 track = next;
378 SINF *next = sinf->next; local
381 sinf = next;
416 track = track->next;
436 track = track->next;
561 sinf = sinf->next;
648 sinf->next
[all...]
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/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.cpp37 const char *next = value, *current; local
39 while (next != NULL) {
40 current = next;
41 next = strchr(current, ',');
42 if (next != NULL) {
43 ++next; // pass ,
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
68 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp418 void ID3::Iterator::next() { function in class:android::ID3::Iterator
800 it.next();
827 it.next();
/frameworks/av/media/libstagefright/include/
H A DMPEG4Extractor.h76 Track *next; member in struct:android::MPEG4Extractor::Track
117 SINF *next; member in struct:android::MPEG4Extractor::SINF
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp815 size_t next = 0; local
817 *--data = (size & 0x7f) | next;
819 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.java63 op = op.next;
89 op = op.next;
218 Op next; field in class:BackStackRecord.Op
396 op = op.next;
437 mTail.next = op;
700 op = op.next;
831 op = op.next;
915 op = op.next;
964 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/hardware/
H A DSystemSensorManager.java41 private static native int nativeGetNextSensor(Sensor sensor, int next); argument

Completed in 5343 milliseconds

12345