Searched refs:op1 (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java63 SyncOperation op1 = new SyncOperation(account1, 0,
74 // Same as op1 but different time infos
86 // Same as op1 but different authority
98 // Same as op1 but different account
110 // Same as op1 but different bundle
122 assertEquals(op1.key, op2.key);
123 assertNotSame(op1.key, op3.key);
124 assertNotSame(op1.key, op4.key);
125 assertNotSame(op1.key, op5.key);
134 SyncOperation op1
[all...]
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java53 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1)
56 ContentProviderResult result = op1.apply(new TestContentProvider() {
67 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1)
69 ContentProviderResult result = op1.apply(new TestContentProvider() {
80 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1)
84 op1.apply(new TestContentProvider() {
103 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1)
108 ContentProviderResult result = op1.apply(new TestContentProvider() {
122 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1)
126 ContentProviderResult result = op1
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct_inline.h27 __inline int32 mla724(int32 op1, int32 op2, int32 op3) argument
31 OSCL_UNUSED_ARG(op1);
33 out = op2 * 724 + op3; /* op1 is not used here */
111 __inline int32 mla724(int32 op1, int32 op2, int32 op3) argument
117 smlabb out, op1, op2, op3 local
174 __inline int32 mla724(int32 op1, int32 op2, int32 op3) argument
181 mla out, op1, out, op3 local
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3) argument
272 register int32 aa = (int32)op1;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java847 * @param op1 One opacity value.
854 public static int resolveOpacity(int op1, int op2) { argument
855 if (op1 == op2) {
856 return op1;
858 if (op1 == PixelFormat.UNKNOWN || op2 == PixelFormat.UNKNOWN) {
861 if (op1 == PixelFormat.TRANSLUCENT || op2 == PixelFormat.TRANSLUCENT) {
864 if (op1 == PixelFormat.TRANSPARENT || op2 == PixelFormat.TRANSPARENT) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java220 final UpdateOp op1 = list.get(i);
221 if (op1.cmd == MOVE) {

Completed in 208 milliseconds