Home
last modified time | relevance | path

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

/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/function/
DFailableIntBinaryOperator.java39 int applyAsInt(int left, int right) throws E; in applyAsInt() method
DFailableLongToIntFunction.java52 int applyAsInt(long value) throws E; in applyAsInt() method
DFailableToIntFunction.java54 int applyAsInt(T t) throws E; in applyAsInt() method
DFailableDoubleToIntFunction.java52 int applyAsInt(double value) throws E; in applyAsInt() method
DFailableToIntBiFunction.java57 int applyAsInt(T t, U u) throws E; in applyAsInt() method
DFailableIntUnaryOperator.java75 int applyAsInt(int operand) throws E; in applyAsInt() method
/external/nullaway/nullaway/src/test/resources/com/uber/nullaway/testdata/
DNullAwayOverrideFunctionalInterfaces.java39 default int applyAsInt(T t) { in applyAsInt() method
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/function/
DFailableFunctionsTest.java1701 public int applyAsInt(final double value) throws IOException { in testThrows_FailableDoubleToIntFunction_IOException() method
1716 public int applyAsInt(final double value) throws Throwable { in testThrows_FailableDoubleToIntFunction_Throwable() method
1791 public int applyAsInt(final int left, final int right) throws IOException { in testThrows_FailableIntBinaryOperator_IOException() method
1806 public int applyAsInt(final int left, final int right) throws Throwable { in testThrows_FailableIntBinaryOperator_Throwable() method
2124 public int applyAsInt(final long value) throws IOException { in testThrows_FailableLongToIntFunction_IOException() method
2139 public int applyAsInt(final long value) throws Throwable { in testThrows_FailableLongToIntFunction_Throwable() method
2428 public int applyAsInt(final Object t, final Object u) throws Throwable { in testThrows_FailableToIntBiFunction_Object_Throwable() method
2443 public int applyAsInt(final String t, final String u) throws IOException { in testThrows_FailableToIntBiFunction_String_IOException() method
2458 public int applyAsInt(final Object t) throws Throwable { in testThrows_FailableToIntFunction_Object_Throwable() method
2473 public int applyAsInt(final String t) throws IOException { in testThrows_FailableToIntFunction_String_IOException() method