OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:digitsRequired
(Results
1 - 3
of
3
) sorted by null
/packages/apps/ExactCalculator/tests/src/com/android/calculator2/
BRTest.java
148
check(BoundedRational.
digitsRequired
(BoundedRational.ZERO) == 0, "
digitsRequired
(0)");
149
check(BoundedRational.
digitsRequired
(BoundedRational.HALF) == 1, "
digitsRequired
(1/2)");
150
check(BoundedRational.
digitsRequired
(BoundedRational.MINUS_HALF) == 1,
151
"
digitsRequired
(-1/2)");
152
check(BoundedRational.
digitsRequired
(new BoundedRational(1,-2)) == 1,
153
"
digitsRequired
(1/-2)");
/packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java
600
static int
digitsRequired
(BoundedRational r) {
Evaluator.java
556
int result = BoundedRational.
digitsRequired
(ratVal);
[
all
...]
Completed in 61 milliseconds