Home
last modified time | relevance | path

Searched refs:op1 (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/
DSyncOperationTest.java44 SyncOperation op1 = new SyncOperation(account1, in testToKey() local
93 assertEquals(op1.key, op2.key); in testToKey()
94 assertNotSame(op1.key, op3.key); in testToKey()
95 assertNotSame(op1.key, op4.key); in testToKey()
96 assertNotSame(op1.key, op5.key); in testToKey()
DContentProviderOperationTest.java53 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsert() local
56 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsert()
67 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertNoValues() local
69 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsertNoValues()
80 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertFailed() local
84 op1.apply(new TestContentProvider() { in testInsertFailed()
103 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertWithBackRefs() local
108 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsertWithBackRefs()
122 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testUpdate() local
126 ContentProviderResult result = op1.apply(new TestContentProvider() { in testUpdate()
[all …]
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
Ddct_inline.h27 __inline int32 mla724(int32 op1, int32 op2, int32 op3) in mla724() argument
31 OSCL_UNUSED_ARG(op1); in mla724()
111 __inline int32 mla724(int32 op1, int32 op2, int32 op3) in mla724() argument
117 smlabb out, op1, op2, op3 in mla724()
174 __inline int32 mla724(int32 op1, int32 op2, int32 op3) in mla724() argument
181 mla out, op1, out, op3 in mla724()
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3) in mla724() argument
272 register int32 aa = (int32)op1; in mla724()
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawable.java598 public static int resolveOpacity(int op1, int op2) { in resolveOpacity() argument
599 if (op1 == op2) { in resolveOpacity()
600 return op1; in resolveOpacity()
602 if (op1 == PixelFormat.UNKNOWN || op2 == PixelFormat.UNKNOWN) { in resolveOpacity()
605 if (op1 == PixelFormat.TRANSLUCENT || op2 == PixelFormat.TRANSLUCENT) { in resolveOpacity()
608 if (op1 == PixelFormat.TRANSPARENT || op2 == PixelFormat.TRANSPARENT) { in resolveOpacity()