Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java852 Method add = binaryOpMethod(int.class, int.class, BinaryOp.ADD); in testIntBinaryOps()
855 Method subtract = binaryOpMethod(int.class, int.class, BinaryOp.SUBTRACT); in testIntBinaryOps()
858 Method multiply = binaryOpMethod(int.class, int.class, BinaryOp.MULTIPLY); in testIntBinaryOps()
861 Method divide = binaryOpMethod(int.class, int.class, BinaryOp.DIVIDE); in testIntBinaryOps()
870 Method remainder = binaryOpMethod(int.class, int.class, BinaryOp.REMAINDER); in testIntBinaryOps()
879 Method and = binaryOpMethod(int.class, int.class, BinaryOp.AND); in testIntBinaryOps()
882 Method or = binaryOpMethod(int.class, int.class, BinaryOp.OR); in testIntBinaryOps()
885 Method xor = binaryOpMethod(int.class, int.class, BinaryOp.XOR); in testIntBinaryOps()
888 Method shiftLeft = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_LEFT); in testIntBinaryOps()
891 Method shiftRight = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_RIGHT); in testIntBinaryOps()
[all …]