Home
last modified time | relevance | path

Searched defs:distance (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DBuilder.java143 static int distance(GeneralNameInterface base, in distance() method in Builder
366 int distance = distance(perName, target, -1); in targetDistance() local
/libcore/ojluni/src/main/java/java/lang/
DInteger.java1509 public static int rotateLeft(int i, int distance) { in rotateLeft()
1533 public static int rotateRight(int i, int distance) { in rotateRight()
DLong.java1504 public static long rotateLeft(long i, int distance) { in rotateLeft()
1528 public static long rotateRight(long i, int distance) { in rotateRight()
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DLong.annotated.java115 public static long rotateLeft(long i, int distance) { throw new RuntimeException("Stub!"); } in rotateLeft()
117 public static long rotateRight(long i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight()
DInteger.annotated.java116 public static int rotateLeft(int i, int distance) { throw new RuntimeException("Stub!"); } in rotateLeft()
118 public static int rotateRight(int i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight()
/libcore/tools/upstream/src/main/java/libcore/
DCompareUpstreams.java200 int distance = Util.editDistance(linesA, linesB); in run() local
/libcore/ojluni/annotations/hiddenapi/java/lang/
DLong.java221 public static long rotateLeft(long i, int distance) { in rotateLeft()
225 public static long rotateRight(long i, int distance) { in rotateRight()
DInteger.java221 public static int rotateLeft(int i, int distance) { in rotateLeft()
225 public static int rotateRight(int i, int distance) { in rotateRight()
/libcore/ojluni/src/main/java/java/util/
DCollections.java820 public static void rotate(List<?> list, int distance) { in rotate()
827 private static <T> void rotate1(List<T> list, int distance) { in rotate1()
850 private static void rotate2(List<?> list, int distance) { in rotate2()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DCollections.annotated.java66 public static void rotate(@libcore.util.NonNull java.util.List<?> list, int distance) { throw new R… in rotate()