Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DFunctionalUtils.java39 public static <T> Consumer<T> uncheckExceptions(ThrowingConsumer<T> action) { in uncheckExceptions() method in FunctionalUtils
46 public static <I, O> Function<I, O> uncheckExceptions(ThrowingFunction<I, O> action) { in uncheckExceptions() method in FunctionalUtils
53 public static Runnable uncheckExceptions(ThrowingRunnable action) { in uncheckExceptions() method in FunctionalUtils
60 public static <A, B> BiConsumer<A, B> uncheckExceptions(ThrowingBiConsumer<A, B> action) { in uncheckExceptions() method in FunctionalUtils
67 public static <T> Supplier<T> uncheckExceptions(ThrowingSupplier<T> action) { in uncheckExceptions() method in FunctionalUtils