OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:positiveValue
(Results
1 - 5
of
5
) sorted by null
/external/guava/guava-tests/test/com/google/common/math/
DoubleUtilsTest.java
49
for (double
positiveValue
: POSITIVE_FINITE_DOUBLE_CANDIDATES) {
50
assertEquals(
positiveValue
, DoubleUtils.ensureNonNegative(
positiveValue
));
51
assertEquals(0.0, DoubleUtils.ensureNonNegative(-
positiveValue
));
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
PasvCommandHandler.java
83
int
positiveValue
= (address[i] >=0) ? address[i] : 256 + address[i];
84
buffer.append(
positiveValue
);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
PortParser.java
122
int
positiveValue
= (address[i] >= 0) ? address[i] : 256 + address[i];
123
buffer.append(
positiveValue
);
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Float16Utils.java
302
double
positiveValue
= Math.abs(value);
304
if (
positiveValue
< MIN_NORMAL) {
305
short quotient = (short) (
positiveValue
/ MIN_VALUE);
/external/icu/icu4c/source/test/intltest/
numberformat2test.cpp
172
int32_t
positiveValue
,
[
all
...]
Completed in 660 milliseconds