Searched refs:id2 (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DVerifierDeviceIdentityTest.java56 VerifierDeviceIdentity id2 = new VerifierDeviceIdentity(TEST_1);
58 assertTrue("The two VerifierDeviceIdentity instances should be equal", id1.equals(id2));
63 VerifierDeviceIdentity id2 = new VerifierDeviceIdentity(TEST_2);
65 assertFalse("The two VerifierDeviceIdentity instances should be unique", id1.equals(id2));
117 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.CREATOR.createFromParcel(parcel);
119 assertEquals("Parcel created should match expected value", id1, id2);
129 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.CREATOR.createFromParcel(parcel);
131 assertEquals("Original identity and parceled identity should be the same", id1, id2);
156 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.generate(random);
159 + " should be the same", id1, id2);
[all...]
/frameworks/wilhelm/tests/examples/
H A DxaVideoDecoderCapabilities.cpp83 const char *id_pair_to_string(XAuint32 id1, XAuint32 id2, const id_pair_to_string_t *table, argument
89 return id_to_string(id2, table[i].id2_table, table[i].id2_numEntries);
/frameworks/base/core/java/android/view/
H A DGestureDetector.java542 final int id2 = ev.getPointerId(i);
543 final float x = x1 * mVelocityTracker.getXVelocity(id2);
544 final float y = y1 * mVelocityTracker.getYVelocity(id2);
/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java271 final int id2 = MotionEventCompat.getPointerId(ev, i);
272 final float x = x1 * VelocityTrackerCompat.getXVelocity(mVelocityTracker, id2);
273 final float y = y1 * VelocityTrackerCompat.getYVelocity(mVelocityTracker, id2);
/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java499 int id2 = getUniqueId();
500 if (getAddrInfo(id2, cooked[3])) {
501 storeRequestMap(clientId, id2, clientInfo, NsdManager.RESOLVE_SERVICE);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1503 final Drawable id2 = i2 == null ? null : i2.loadDrawable(ctx);
1507 target.setCompoundDrawablesRelativeWithIntrinsicBounds(id1, id2, id3, id4);
1509 target.setCompoundDrawablesWithIntrinsicBounds(id1, id2, id3, id4);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp5547 uint32_t id2 = idBits.firstMarkedBit(); local
5551 mCurrentRawState.rawPointerData.pointerForId(id2);
5566 float dist2 = dist[id2];
5574 PointerGesture::Delta& delta2 = mPointerGesture.referenceDeltas[id2];

Completed in 209 milliseconds