Home
last modified time | relevance | path

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

/aosp_15_r20/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
H A DDexMakerTest.java924 Method add = binaryOpMethod(int.class, int.class, BinaryOp.ADD); in testIntBinaryOps()
927 Method subtract = binaryOpMethod(int.class, int.class, BinaryOp.SUBTRACT); in testIntBinaryOps()
930 Method multiply = binaryOpMethod(int.class, int.class, BinaryOp.MULTIPLY); in testIntBinaryOps()
933 Method divide = binaryOpMethod(int.class, int.class, BinaryOp.DIVIDE); in testIntBinaryOps()
942 Method remainder = binaryOpMethod(int.class, int.class, BinaryOp.REMAINDER); in testIntBinaryOps()
951 Method and = binaryOpMethod(int.class, int.class, BinaryOp.AND); in testIntBinaryOps()
954 Method or = binaryOpMethod(int.class, int.class, BinaryOp.OR); in testIntBinaryOps()
957 Method xor = binaryOpMethod(int.class, int.class, BinaryOp.XOR); in testIntBinaryOps()
960 Method shiftLeft = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_LEFT); in testIntBinaryOps()
963 Method shiftRight = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_RIGHT); in testIntBinaryOps()
[all …]