Searched refs:ln (Results 1 - 6 of 6) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DProxyInputStream.java80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException { argument
85 return in.skip(ln);
H A DProxyReader.java80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException { argument
85 return in.skip(ln);
/packages/apps/ExactCalculator/tests/src/com/android/calculator2/
H A DBRTest.java57 private final static CR LN10 = CR.valueOf(10).ln();
99 CR.valueOf(15).ln().multiply(xAsCR).exp(),
118 checkWeakEq(BoundedRational.ln(x), xAsCR.ln(), "ln:" + x);
119 checkWeakEq(BoundedRational.log(x), xAsCR.ln().divide(LN10),
123 xAsCR.ln().multiply(CR.valueOf(15)).exp(),
186 BoundedRational.ln(BR_M1);
187 check(false, "ln(-1)");
/packages/apps/Messaging/build/
H A Dandroid_lint.mk24 ln -f -s $(SOURCE_PATH) $(DST_PATH)
30 ln -f -s $(abspath prebuilts/fullsdk/linux/platform-tools/api/api-versions.xml) $(API_VERSIONS_XML)
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DCalculatorExpr.java803 ratVal = BoundedRational.ln(argVal.ratVal);
807 return new EvalRet(argVal.pos, argVal.val.ln(), null);
827 return new EvalRet(argVal.pos, argVal.val.ln().divide(CR.valueOf(10).ln()), null);
966 crVal = crVal.ln().multiply(exp.val).exp();
H A DBoundedRational.java485 public static BoundedRational ln(BoundedRational r) { method in class:BoundedRational

Completed in 176 milliseconds