Searched refs:divideExact (Results 1 – 6 of 6) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 978 public static int divideExact(int x, int y) { in divideExact() method in StrictMath 979 return Math.divideExact(x, y); in divideExact() 1005 public static long divideExact(long x, long y) { in divideExact() method in StrictMath 1006 return Math.divideExact(x, y); in divideExact()
|
D | Math.java | 1208 public static int divideExact(int x, int y) { in divideExact() method in Math 1238 public static long divideExact(long x, long y) { in divideExact() method in Math
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | ExactArithTests.java | 162 int z = Math.divideExact(x, y); in testIntegerExact() 172 z = StrictMath.divideExact(x, y); in testIntegerExact() 397 long quotient = Math.divideExact(x, y); in testLongExact() 404 long quotient2 = StrictMath.divideExact(x, y); in testLongExact()
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | StrictMath.annotated.java | 93 public static int divideExact(int x, int y) { throw new RuntimeException("Stub!"); } in divideExact() method in StrictMath 96 public static long divideExact(long x, long y) { throw new RuntimeException("Stub!"); } in divideExact() method in StrictMath
|
D | Math.annotated.java | 94 public static int divideExact(int x, int y) { throw new RuntimeException("Stub!"); } in divideExact() method in Math 97 public static long divideExact(long x, long y) { throw new RuntimeException("Stub!"); } in divideExact() method in Math
|
/libcore/api/ |
D | current.txt | 3589 method @FlaggedApi("com.android.libcore.v_apis") public static int divideExact(int, int); 3590 method @FlaggedApi("com.android.libcore.v_apis") public static long divideExact(long, long); 4031 method @FlaggedApi("com.android.libcore.v_apis") public static int divideExact(int, int); 4032 method @FlaggedApi("com.android.libcore.v_apis") public static long divideExact(long, long);
|