Searched refs:floorDivExact (Results 1 – 6 of 6) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 1035 public static int floorDivExact(int x, int y) { in floorDivExact() method in StrictMath 1036 return Math.floorDivExact(x, y); in floorDivExact() 1065 public static long floorDivExact(long x, long y) { in floorDivExact() method in StrictMath 1066 return Math.floorDivExact(x, y); in floorDivExact()
|
D | Math.java | 1271 public static int floorDivExact(int x, int y) { in floorDivExact() method in Math 1308 public static long floorDivExact(long x, long y) { in floorDivExact() method in Math
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | ExactArithTests.java | 196 int z = Math.floorDivExact(x, y); in testIntegerExact() 206 z = StrictMath.floorDivExact(x, y); in testIntegerExact() 429 long z = Math.floorDivExact(x, y); in testLongExact() 439 z = StrictMath.floorDivExact(x, y); in testLongExact()
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | StrictMath.annotated.java | 99 public static int floorDivExact(int x, int y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in StrictMath 102 public static long floorDivExact(long x, long y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in StrictMath
|
D | Math.annotated.java | 100 public static int floorDivExact(int x, int y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in Math 103 public static long floorDivExact(long x, long y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in Math
|
/libcore/api/ |
D | current.txt | 3597 method @FlaggedApi("com.android.libcore.v_apis") public static int floorDivExact(int, int); 3598 method @FlaggedApi("com.android.libcore.v_apis") public static long floorDivExact(long, long); 4039 method @FlaggedApi("com.android.libcore.v_apis") public static int floorDivExact(int, int); 4040 method @FlaggedApi("com.android.libcore.v_apis") public static long floorDivExact(long, long);
|