Searched defs:next (Results 51 - 75 of 108) sorted by relevance

12345

/frameworks/base/core/java/android/util/
H A DMapCollections.java54 public T next() { method in class:MapCollections.ArrayIterator
89 public Map.Entry<K, V> next() { method in class:MapCollections.MapIterator
202 if (!contains(it.next())) {
381 if (!contains(it.next())) {
459 if (!map.containsKey(it.next())) {
470 map.remove(it.next());
479 if (!collection.contains(it.next())) {
/frameworks/base/core/java/android/view/
H A DInputEventConsistencyVerifier.java154 mKeyStateList = state.next;
676 last.next = state.next;
678 mKeyStateList = state.next;
680 state.next = null;
685 state = state.next;
692 state.next = mKeyStateList;
700 public KeyState next; field in class:InputEventConsistencyVerifier.KeyState
714 mRecycledList = state.next;
728 next
[all...]
H A DChoreographer.java35 * the next display frame.
44 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
49 * next display frame, use {@link View#postInvalidateOnAnimation()} or
78 // wait before posting the next animation message. It is important that the
247 * on the next frame, but this is much better than waiting a whole 16ms and likely
278 * Posts a callback to run on the next frame.
284 * @param action The callback action to run during the next frame.
295 * Posts a callback to run on the next frame after the specified delay.
301 * @param action The callback action to run during the next fram
758 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
H A DKeyCharacterMap.java659 * to next character key that is pressed and will then reset itself to the initial state.
747 private FallbackAction next; field in class:KeyCharacterMap.FallbackAction
762 sRecycleBin = target.next;
764 target.next = null;
773 next = sRecycleBin;
777 next = null;
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java253 static protected int next(int x, int val, boolean isRtl) { method in class:AbsActionBarView
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp88 nativeGetNextSensor(JNIEnv *env, jclass clazz, jobject sensor, jint next) argument
94 if (size_t(next) >= count)
97 Sensor const* const list = sensorList[next];
121 next++;
122 return size_t(next) < count ? next : 0;
H A Dcom_android_internal_content_NativeLibraryHelper.cpp305 ZipEntryRO next() { function in class:android::NativeLibrariesIterator
306 ZipEntryRO next = NULL; local
307 while ((next = mZipFile->nextEntry(mCookie)) != NULL) {
309 if (mZipFile->getEntryFileName(next, fileName, sizeof(fileName))) {
349 return next;
391 while ((entry = it->next()) != NULL) {
435 while ((entry = it->next()) != NULL) {
509 ZipEntryRO next = NULL; local
510 while ((next = zipFile->nextEntry(cookie)) != NULL) {
511 if (zipFile->getEntryFileName(next, fileNam
[all...]
/frameworks/base/libs/hwui/
H A DAmbientShadow.cpp71 inline Vector2 getNormalFromVertices(const Vector3* vertices, int current, int next) { argument
74 Vector2 nextVertex = { vertices[next].x, vertices[next].y };
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java296 public F next() { method in class:IntentResolver.IteratorWrapper
297 return (mCur = mI.next());
513 String name = i.next();
544 String name = i.next();
574 String name = i.next();
590 String name = i.next();
/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
77 struct document_item_type* next; member in struct:document_item_type
H A Daidl.cpp50 if (p->next) printf(", ");
51 p=p->next;
56 q=q->next;
72 d = d->next;
99 struct import_info* next; member in struct:import_info
120 import->next = g_imports;
267 items = items->next;
381 items = items->next;
467 goto next;
475 goto next;
599 const document_item_type* next = items->next; local
[all...]
/frameworks/native/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/support/v4/java/android/support/v4/util/
H A DMapCollections.java52 public T next() { method in class:MapCollections.ArrayIterator
87 public Map.Entry<K, V> next() { method in class:MapCollections.MapIterator
200 if (!contains(it.next())) {
379 if (!contains(it.next())) {
457 if (!map.containsKey(it.next())) {
468 map.remove(it.next());
477 if (!collection.contains(it.next())) {
/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/base/core/java/android/widget/
H A DMediaController.java63 * <li> The "previous" and "next" buttons are hidden until setPrevNextListeners()
65 * <li> The "previous" and "next" buttons are visible but disabled if
283 mNextButton = (ImageButton) v.findViewById(com.android.internal.R.id.next);
674 public void setPrevNextListeners(View.OnClickListener next, View.OnClickListener prev) { argument
675 mNextListener = next;
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java136 Pair<Long, Cue> event = it.next();
211 /* get times for the next event */
494 public Pair<Long, Cue> next() { method in class:SubtitleTrack.CueList.EntryIterator
499 mCurrentTimeMs, mListIterator.next());
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifParser.java40 * int event = parser.next();
60 * event = parser.next();
260 * Moves the parser forward and returns the next parsing event
271 protected int next() throws IOException, ExifInvalidFormatException { method in class:ExifParser
280 return next();
303 Log.w(TAG, "Invalid size of link to next IFD: " + offsetSize);
307 Log.w(TAG, "Invalid link to next IFD: " + ifdOffset);
408 * If {@link #next()} return {@link #EVENT_NEW_TAG} or
/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/services/inputflinger/
H A DEventHub.h206 * After returning, the EventHub holds onto a wake lock until the next call to getEvent.
249 /* Requests the EventHub to reopen all input devices on the next call to getEvents(). */
325 Device* next; member in struct:android::EventHub::Device
446 // The array of pending epoll events and the index of the next event to be handled.
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java1034 public LengthRecordNode next = null; field in class:PduComposer.LengthRecordNode
1083 temp.next = stack;
1105 stack = stack.next;
/frameworks/rs/driver/runtime/
H A Drs_sample.c128 int32_t next, float w0, float w1) {
130 float p1 = getElementAt1(p, next);
138 int32_t next, float w0, float w1) {
140 float p1 = getElementAt1(p, next);
148 int32_t next, float w0, float w1) {
150 float2 p1 = getElementAt2(p, next);
158 int32_t next, float w0, float w1) {
160 float3 p1 = getElementAt3(p, next);
168 int32_t next, float w0, float w1) {
170 float3 p1 = getElementAt565(p, next);
127 getSample_A(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
137 getSample_L(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
147 getSample_LA(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
157 getSample_RGB(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
167 getSample_565(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
177 getSample_RGBA(const uint8_t *p, int32_t iPixel, int32_t next, float w0, float w1) argument
268 getBilinearSample1D(const Allocation_t *alloc, float2 weights, uint32_t iPixel, uint32_t next, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
446 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW); local
[all...]
/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...]
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp814 size_t next = 0; local
816 *--data = (size & 0x7f) | next;
818 next = 0x80;
/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/jni/android/graphics/
H A DPath.cpp361 PointMap::iterator next = iter; local
362 ++next;
363 while (next != tToPoint.end()) {
369 iter->second, next->first, next->second, midT, midPoint, errorSquared);
381 next = tToPoint.insert(iter, PointMap::value_type(midT, midPoint));
384 iter = next;
385 next++;
438 while ((verb = pathIter.next(points, false)) != SkPath::kDone_Verb) {

Completed in 730 milliseconds

12345