/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
D | SyncOperationTest.java | 58 SyncOperation op1 = new SyncOperation(account1, 0, in testToKey() local 102 assertEquals(op1.key, op2.key); in testToKey() 103 assertNotSame(op1.key, op3.key); in testToKey() 104 assertNotSame(op1.key, op4.key); in testToKey() 105 assertNotSame(op1.key, op5.key); in testToKey() 115 SyncOperation op1 = new SyncOperation(account1, 0, in testConversionToExtras() local 123 PersistableBundle pb = op1.toJobInfoExtras(); in testConversionToExtras() 163 SyncOperation op1 = new SyncOperation(account1, 0, 1, "foo", 0, in testScheduleAsEjIsInExtras() local 166 assertTrue(op1.isScheduledAsExpeditedJob()); in testScheduleAsEjIsInExtras() 168 PersistableBundle pb = op1.toJobInfoExtras(); in testScheduleAsEjIsInExtras()
|
/frameworks/base/core/tests/coretests/src/android/content/ |
D | ContentProviderOperationTest.java | 44 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsert() local 47 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsert() 58 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertNoValues() local 60 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsertNoValues() 71 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertFailed() local 75 op1.apply(new TestContentProvider() { in testInsertFailed() 94 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testInsertWithBackRefs() local 99 ContentProviderResult result = op1.apply(new TestContentProvider() { in testInsertWithBackRefs() 113 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) in testUpdate() local 117 ContentProviderResult result = op1.apply(new TestContentProvider() { in testUpdate() [all …]
|
/frameworks/av/media/codecs/m4v_h263/enc/src/ |
D | dct_inline.h | 27 __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/services/tests/mockingservicestests/src/com/android/server/appop/ |
D | AppOpsUpgradeTest.java | 94 private void assertSameModes(SparseArray<AppOpsService.UidState> uidStates, int op1, int op2) { in assertSameModes() argument 96 final int defaultModeOp1 = AppOpsManager.opToDefaultMode(op1); in assertSameModes() 101 final int uidMode1 = uidState.opModes.get(op1, defaultModeOp1); in assertSameModes() 116 final AppOpsService.Op _op1 = ops.get(op1); in assertSameModes()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | Drawable.java | 1019 public static @PixelFormat.Opacity int resolveOpacity(@PixelFormat.Opacity int op1, in resolveOpacity() argument 1021 if (op1 == op2) { in resolveOpacity() 1022 return op1; in resolveOpacity() 1024 if (op1 == PixelFormat.UNKNOWN || op2 == PixelFormat.UNKNOWN) { in resolveOpacity() 1027 if (op1 == PixelFormat.TRANSLUCENT || op2 == PixelFormat.TRANSLUCENT) { in resolveOpacity() 1030 if (op1 == PixelFormat.TRANSPARENT || op2 == PixelFormat.TRANSPARENT) { in resolveOpacity()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | OpReorderer.java | 221 final UpdateOp op1 = list.get(i); in getLastMoveOutOfOrder() local 222 if (op1.cmd == MOVE) { in getLastMoveOutOfOrder()
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncManager.java | 2023 private final static Comparator<SyncOperation> sOpDumpComparator = (op1, op2) -> { 2024 int res = Integer.compare(op1.target.userId, op2.target.userId); 2029 res = stringComparator.compare(op1.target.account.type, op2.target.account.type); 2032 res = stringComparator.compare(op1.target.account.name, op2.target.account.name); 2035 res = stringComparator.compare(op1.target.provider, op2.target.provider); 2038 res = Integer.compare(op1.reason, op2.reason); 2041 res = Long.compare(op1.periodMillis, op2.periodMillis); 2044 res = Long.compare(op1.expectedRuntime, op2.expectedRuntime); 2047 res = Long.compare(op1.jobId, op2.jobId); 2053 private final static Comparator<SyncOperation> sOpRuntimeComparator = (op1, op2) -> { [all …]
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | CXADemangle.tcc | 3229 auto op1 = db.names.back().move_full(); in parse_binary_expression() local 3234 nm += "(" + op1 + ") " + op + " (" + op2 + ")"; in parse_binary_expression() 3474 auto op1 = db.names.back().move_full(); in parse_expression() local 3475 db.names.back() = "(" + op1 + ")[" + op2 + "]"; in parse_expression() 3668 auto op1 = db.names.back().move_full(); in parse_expression() local 3669 db.names.back() = "(" + op1 + ") ? (" + op2 + ") : (" + op3 + ")"; in parse_expression()
|