Home
last modified time | relevance | path

Searched defs:next (Results 1 – 25 of 550) sorted by relevance

12345678910>>...22

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DMotionEventInjectorTest.java199 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() local
255 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testRegularEvent_afterGestureComplete_shouldPassToNext() local
266 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_withRealGestureUnderway_shouldCancelRealAndPassInjected() local
283 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_withRealMouseGestureUnderway_shouldContinueRealAndPassInjected() local
298 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_withRealGestureFinished_shouldJustPassInjected() local
319 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testOnMotionEvents_openInjectedGestureInProgress_shouldCancelAndNotifyAndPassReal() local
335 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testOnMotionEvents_fromMouseWithInjectedGestureInProgress_shouldNotCancelAndPassReal() local
351 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testOnMotionEvents_closedInjectedGestureInProgress_shouldOnlyNotifyAndPassReal() local
380 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_openInjectedGestureInProgress_shouldCancelAndNotifyAndPassNew() local
397 EventStreamTransformation next = attachMockNext(mMotionEventInjector); in testInjectEvents_closedInjectedGestureInProgress_shouldOnlyNotifyAndPassNew() local
[all …]
H A DAccessibilityInputFilterTest.java120 public void setNext(EventStreamTransformation next) { in setNext()
192 EventStreamTransformation next = mEventHandler.get(SECOND_DISPLAY); in testEventHandler_shouldIncreaseAndHaveCorrectOrderAfterOnDisplayAdded() local
245 EventStreamTransformation next = mEventHandler.get(DEFAULT_DISPLAY); in testEventHandler_shouldHaveCorrectOrderForEventStreamTransformation() local
453 EventStreamTransformation next = mEventHandler.get(displayId); in getMagnificationGestureHandlerFromEventHandler() local
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DEventStreamTransformation.java69 EventStreamTransformation next = getNext(); in onMotionEvent() local
82 EventStreamTransformation next = getNext(); in onKeyEvent() local
94 EventStreamTransformation next = getNext(); in onAccessibilityEvent() local
105 public void setNext(EventStreamTransformation next); in setNext()
120 EventStreamTransformation next = getNext(); in clearEvents() local
/aosp12/system/bt/embdrv/sbc/decoder/srce/
H A Dframing.c156 INLINE OI_CHAR crc_iterate(uint8_t oldcrc, uint8_t next) { in crc_iterate()
170 INLINE OI_CHAR crc_iterate_top4(uint8_t oldcrc, uint8_t next) { in crc_iterate_top4()
186 INLINE uint8_t crc_iterate_top4(uint8_t oldcrc, uint8_t next) { in crc_iterate_top4()
191 INLINE uint8_t crc_iterate(uint8_t crc, uint8_t next) { in crc_iterate()
199 INLINE uint8_t crc_iterate(uint8_t crc, uint8_t next) { in crc_iterate()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/
H A DTestingSettingsBroadcastReceiverTest.java54 final Intent next = Shadows.shadowOf(mApplication).getNextStartedActivity(); in onReceive_nullIntent_shouldNotCrash() local
65 final Intent next = Shadows.shadowOf(mApplication).getNextStartedActivity(); in onReceive_wrongIntent_shouldNotStartActivity() local
76 final Intent next = Shadows.shadowOf(mApplication).getNextStartedActivity(); in onReceive_correctIntent_shouldStartActivity() local
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dmacros.h55 #define _PDX_APPLY_1(macro, head, next, ...) \ argument
59 #define _PDX_APPLY_2(macro, head, next, ...) \ argument
74 #define _PDX_APPLY_LIST_1(macro, head, next, ...) \ argument
80 #define _PDX_APPLY_LIST_2(macro, head, next, ...) \ argument
85 #define _PDX_APPLY_LIST_0(macro, head, next, ...) \ argument
101 #define _PDX_APPLY_BINARY_1(macro, arg, head, next, ...) \ argument
106 #define _PDX_APPLY_BINARY_2(macro, arg, head, next, ...) \ argument
122 #define _PDX_APPLY_BINARY_LIST_1(macro, arg, head, next, ...) \ argument
128 #define _PDX_APPLY_BINARY_LIST_2(macro, arg, head, next, ...) \ argument
134 #define _PDX_APPLY_BINARY_LIST_0(macro, arg, head, next, ...) \ argument
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
H A DImapResponseParser.java88 final int next = in.peek(); in peek() local
102 int next = in.read(); in readByte() local
182 final int next = readByte(); in expect() local
261 final int next = peek(); in parseResponse() local
297 final int next = peek(); in parseElement() local
378 final int next = peek(); in parseElements() local
/aosp12/bionic/tests/libs/
H A Dld_config_test_helper_lib3.cpp9 void (*next)(void) = reinterpret_cast<void (*)()>(dlsym(RTLD_NEXT, "foo")); in foo() local
15 void (*next)(void) = reinterpret_cast<void (*)()>(dlsym(RTLD_NEXT, "bar")); in bar() local
H A Dld_config_test_helper_lib2.cpp9 void (*next)(void) = reinterpret_cast<void (*)()>(dlsym(RTLD_NEXT, "bar")); in bar() local
H A Dld_config_test_helper_lib1.cpp9 void (*next)(void) = reinterpret_cast<void (*)()>(dlsym(RTLD_NEXT, "foo")); in foo() local
/aosp12/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DSkipNullsIterator.java43 public T next() { in next() method in SkipNullsIterator
47 T next = mNext; in next() local
H A DDominatorReferenceIterator.java50 public AhatInstance next() { in next() method in DominatorReferenceIterator
52 AhatInstance next = mNext; in next() local
/aosp12/packages/services/Telephony/src/com/android/services/telephony/rcs/validator/
H A DSipMessageValidator.java40 default SipMessageValidator andThen(SipMessageValidator next) { in andThen()
/aosp12/packages/apps/TV/src/com/android/tv/util/
H A DRecurringRunner.java92 private void postAt(long next) { in postAt()
127 long next = getSharedPreferences().getLong(mName, System.currentTimeMillis()); in getNextRunTime() local
135 long next = System.currentTimeMillis() + mIntervalMs; in resetNextRunTime() local
/aosp12/frameworks/base/core/java/android/content/
H A DAttributionSource.java116 @Nullable AttributionSource next) { in AttributionSource()
124 @Nullable AttributionSource next) { in AttributionSource()
130 public AttributionSource(@NonNull AttributionSource current, @Nullable AttributionSource next) { in AttributionSource()
136 @Nullable String[] renouncedPermissions, @Nullable AttributionSource next) { in AttributionSource()
142 @Nullable AttributionSource next) { in AttributionSource()
167 public AttributionSource withNextAttributionSource(@Nullable AttributionSource next) { in withNextAttributionSource()
H A DContextParams.java58 @Nullable AttributionSource next, in ContextParams()
156 public Builder setNextAttributionSource(@Nullable AttributionSource next) { in setNextAttributionSource()
/aosp12/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dlist.cpp39 struct list_head *prev, struct list_head *next) in list_add()
57 void list_del(struct list_head *prev, struct list_head *next) in list_del()
/aosp12/art/test/1922-owned-monitors-info/
H A Downed_monitors.cc44 static bool doCallRunnable(JNIEnv* env, jobject next) { in doCallRunnable()
58 JNIEnv* env, jobject thiz, jobject next) { in Java_art_Test1922_00024Target_lockThisNative()
71 JNIEnv* env, jobject thiz ATTRIBUTE_UNUSED, jobject mon, jobject next) { in Java_art_Test1922_00024Target_lockNative()
/aosp12/hardware/qcom/camera/msm8998/QCamera2/stack/common/
H A Dcam_list.h45 struct cam_list *next, *prev; member
77 struct cam_list *next = ptr->next; in cam_list_del_node() local
/aosp12/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
H A DMain.java85 private Runnable next; field in Main.TextCapture
87 TextCapture(Locale thisLocale, Locale nextLocale, Runnable next) { in TextCapture()
/aosp12/frameworks/rs/
H A DrsMap.h35 LinkNode* next; member
46 LinkNode* next; in ~Map() local
83 LinkNode* next; variable
/aosp12/system/bt/osi/src/
H A Dlist.cc8 struct list_node_t* next; member
145 list_node_t* next = list_free_node_(list, list->head); in list_remove() local
177 list_node_t* next = node->next; in list_foreach() local
208 list_node_t* next = node->next; in list_free_node_() local
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DBmsgTokenizer.java46 public Property next(boolean alwaysReturn) throws ParseException { in next() method in BmsgTokenizer
70 public Property next() throws ParseException { in next() method in BmsgTokenizer
/aosp12/frameworks/av/drm/common/
H A DDrmMetadata.cpp68 const String8& DrmMetadata::KeyIterator::next() { in next() function in DrmMetadata::KeyIterator
113 String8 DrmMetadata::Iterator::next() { in next() function in DrmMetadata::Iterator
H A DDrmInfoRequest.cpp72 const String8& DrmInfoRequest::KeyIterator::next() { in next() function in DrmInfoRequest::KeyIterator
101 String8& DrmInfoRequest::Iterator::next() { in next() function in DrmInfoRequest::Iterator

12345678910>>...22