Searched refs:e1 (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/libs/androidfw/tests/
H A DTypeWrappers_test.cpp38 ResTable_entry e1; local
39 memset(&e1, 0, sizeof(e1));
40 e1.size = sizeof(e1);
41 e1.key.index = 0;
42 t.header.size += sizeof(e1);
50 offsets[2] = sizeof(e1) + sizeof(v1);
67 memcpy(p, &e1, sizeof(e1));
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dshared.rsh51 #define _RS_ASSERT_EQU(e1, e2) \
52 (((e1) != (e2)) ? (failed = true, rsDebug(#e1 " != " #e2, (e1), (e2)), false) : true)
H A DUT_blur_validation.java80 } catch (RSIllegalArgumentException e1) {
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
H A DGestureRouter.java89 public boolean onScroll(@NonNull MotionEvent e1, @NonNull MotionEvent e2, argument
91 return mDelegates.get(e2).onScroll(e1, e2, distanceX, distanceY);
100 public boolean onFling(@NonNull MotionEvent e1, @NonNull MotionEvent e2, argument
102 return mDelegates.get(e2).onFling(e1, e2, velocityX, velocityY);
/frameworks/native/libs/vr/libdvr/tests/
H A Ddvr_named_buffer-test.cpp28 int e1 = dvrBufferGetAHardwareBuffer(buffer1, &hardware_buffer1); local
29 ASSERT_EQ(0, e1);
96 int e1 = dvrGetGlobalBuffer(buffer_key1, &buffer1); local
98 ASSERT_EQ(0, e1);
119 int e1 = dvrSetupGlobalBuffer(buffer_key, 10, usage, &setup_buffer); local
121 ASSERT_EQ(0, e1);
147 int e1 = dvrSetupGlobalBuffer(buffer_name, size, usage, &setup_buffer); local
149 ASSERT_EQ(0, e1);
180 int e1 = dvrGetGlobalBuffer(buffer_name, &setup_buffer); local
182 ASSERT_EQ(0, e1);
221 int e1 = dvrSetupGlobalBuffer(buffer_name, size, usage, &setup_buffer); local
268 int e1 = dvrSetupGlobalBuffer(buffer_name, wrong_size, usage, &setup_buffer); local
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java99 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
100 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
105 assertTrue(e1.getTimeMillis() > between);
106 assertTrue(e1.getTimeMillis() < e2.getTimeMillis());
110 assertEquals("TEST1", e1.getText(80));
114 e1.close();
181 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
182 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
187 assertTrue(e1.getTimeMillis() > e0.getTimeMillis());
188 assertTrue(e2.getTimeMillis() > e1
[all...]
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c330 list_elem_t *e1; local
340 e1 = gEffectList;
342 while (e1) {
343 if (e1->object == handle) {
345 e2->next = e1->next;
347 gEffectList = e1->next;
349 fx = (effect_entry_t *)e1->object;
350 free(e1);
353 e2 = e1;
354 e1
[all...]
/frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
H A DGestureRouterTest.java182 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
183 return mSpy.onScroll(e1, e2, distanceX, distanceY);
192 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
193 return mSpy.onFling(e1, e2, velocityX, velocityY);
223 void assertCalled_onScroll(MotionEvent e1, MotionEvent e2, float x, float y) { argument
224 verify(mSpy).onScroll(e1, e2, x, y);
231 void assertCalled_onFling(MotionEvent e1, MotionEvent e2, float x, float y) { argument
232 Mockito.verify(mSpy).onFling(e1, e2, x, y);
/frameworks/base/core/java/android/view/textclassifier/
H A DEntityConfidence.java137 mSortedEntities.sort((e1, e2) -> {
138 float score1 = mEntityConfidence.get(e1);
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirGen.h329 -0.63269783360e3, -0.49520779070e1,
334 -0.70699387620e3, 0.10000000000e1, y);
347 double num = Poly2(0.415079861746e1, -0.5149092496e1, z);
349 0.1000000000e1, z);
384 -0.63269783360e3, -0.49520779070e1,
389 -0.70699387620e3, 0.10000000000e1, y);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWificondControl.java243 } catch (RemoteException e1) {
301 } catch (RemoteException e1) {
331 } catch (RemoteException e1) {
360 } catch (RemoteException e1) {
577 } catch (RemoteException e1) {
652 } catch (RemoteException e1) {
698 } catch (RemoteException e1) {
717 } catch (RemoteException e1) {
735 } catch (RemoteException e1) {
768 } catch (RemoteException e1) {
[all...]
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DNotificationShadeActivity.java65 public boolean onFling(MotionEvent e1, MotionEvent e2, float vX, float vY) {
66 if (Math.abs(e1.getY() - e2.getY()) <= mScaledTouchSlop) {
/frameworks/support/textclassifier/src/main/java/androidx/textclassifier/
H A DEntityConfidence.java147 public int compare(String e1, String e2) { argument
148 float score1 = mEntityConfidence.get(e1);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_blur_validation.java82 } catch (RSIllegalArgumentException e1) {
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java320 public int compare(MyEvent e1, MyEvent e2) { argument
321 if (e1 == e2) return 0;
322 int diff = e1.mMaxPeriod - e2.mMaxPeriod;
/frameworks/base/core/java/android/util/
H A DReflectiveProperty.java59 } catch (NoSuchMethodException e1) {
/frameworks/base/core/java/android/view/
H A DGestureDetector.java82 * @param e1 The first down motion event that started the scrolling.
85 * call to onScroll. This is NOT the distance between {@code e1}
88 * call to onScroll. This is NOT the distance between {@code e1}
92 boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY); argument
107 * @param e1 The first down motion event that started the fling.
115 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY); argument
185 public boolean onScroll(MotionEvent e1, MotionEvent e2, argument
190 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, argument
/frameworks/base/services/core/java/com/android/server/am/
H A DAppWarnings.java498 } catch (java.io.IOException e1) {
499 Slog.w(TAG, "Error writing package metadata", e1);
565 } catch (java.io.IOException e1) {
H A DCompatModePackages.java136 } catch (java.io.IOException e1) {
435 } catch (java.io.IOException e1) {
436 Slog.w(TAG, "Error writing compat packages", e1);
/frameworks/base/services/core/java/com/android/server/os/
H A DSchedulingPolicyService.java173 } catch (Exception e1) {}
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java418 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
428 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyServer.java352 } catch (IOException e1) {
353 Log.e(TAG, "Failed to start proxy server", e1);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java319 } catch (RemoteException e1) {
320 Log.e(TAG, "Remote Exception", e1);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DCertificateMonitor.java94 } catch (InterruptedException e1) {
95 Log.w(LOG_TAG, "installCaCertsToKeyChain(): ", e1);
H A DSecurityLogMonitor.java285 newLogs.sort((e1, e2) -> Long.signum(e1.getTimeNanos() - e2.getTimeNanos()));

Completed in 2684 milliseconds

123