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

/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java733 Method add = binaryOpMethod(int.class, int.class, BinaryOp.ADD);
736 Method subtract = binaryOpMethod(int.class, int.class, BinaryOp.SUBTRACT);
739 Method multiply = binaryOpMethod(int.class, int.class, BinaryOp.MULTIPLY);
742 Method divide = binaryOpMethod(int.class, int.class, BinaryOp.DIVIDE);
751 Method remainder = binaryOpMethod(int.class, int.class, BinaryOp.REMAINDER);
760 Method and = binaryOpMethod(int.class, int.class, BinaryOp.AND);
763 Method or = binaryOpMethod(int.class, int.class, BinaryOp.OR);
766 Method xor = binaryOpMethod(int.class, int.class, BinaryOp.XOR);
769 Method shiftLeft = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_LEFT);
772 Method shiftRight = binaryOpMethod(in
869 private <T1, T2> Method binaryOpMethod( method in class:DexMakerTest
[all...]

Completed in 51 milliseconds