Home
last modified time | relevance | path

Searched refs:positiveValue (Results 1 – 25 of 30) sorted by relevance

12

/external/icu/icu4c/source/i18n/
Dsmallintformatter.cpp2595 int32_t positiveValue, const IntDigitCountRange &range) { in estimateDigitCount() argument
2596 if (positiveValue >= gMaxFastInt) { in estimateDigitCount()
2599 return range.pin(gDigitCount[positiveValue]); in estimateDigitCount()
2604 int32_t positiveValue, const IntDigitCountRange &range) { in canFormat() argument
2605 return (positiveValue < gMaxFastInt && range.getMin() <= 4); in canFormat()
Dsmallintformatter.h57 int32_t positiveValue, const IntDigitCountRange &range);
67 int32_t positiveValue, const IntDigitCountRange &range);
82 int32_t positiveValue,
Dvalueformatter.h92 const VisibleDigitsWithExponent &positiveValue,
104 int32_t positiveValue,
114 const VisibleDigitsWithExponent &positiveValue) const;
Ddigitgrouping.cpp38 int32_t positiveValue, const IntDigitCountRange &range) const { in isNoGrouping() argument
40 SmallIntFormatter::estimateDigitCount(positiveValue, range)) == 0; in isNoGrouping()
/external/guava/guava-tests/test/com/google/common/math/
DDoubleUtilsTest.java49 for (double positiveValue : POSITIVE_FINITE_DOUBLE_CANDIDATES) { in testEnsureNonNegative()
50 assertEquals(positiveValue, DoubleUtils.ensureNonNegative(positiveValue)); in testEnsureNonNegative()
51 assertEquals(0.0, DoubleUtils.ensureNonNegative(-positiveValue)); in testEnsureNonNegative()
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/stub/command/
DPasvCommandHandler.java83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i]; in convertHostAndPortToStringOfBytes() local
84 buffer.append(positiveValue); in convertHostAndPortToStringOfBytes()
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/util/
DPortParser.java127 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
128 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
DPortParser.java122 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
123 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
DPortParser.java122 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
123 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
DPortParser.java122 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
123 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
DPortParser.java122 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
123 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
DPortParser.java122 int positiveValue = (address[i] >= 0) ? address[i] : 256 + address[i]; in convertHostAndPortToCommaDelimitedBytes() local
123 buffer.append(positiveValue); in convertHostAndPortToCommaDelimitedBytes()

12