Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java978 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()
DMath.java1208 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/
DExactArithTests.java162 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/
DStrictMath.annotated.java93 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
DMath.annotated.java94 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/
Dcurrent.txt3589 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);