HomeSort by relevance Sort by last modified time
    Searched refs:positiveValue (Results 1 - 12 of 12) sorted by null

  /external/icu/icu4c/source/i18n/
smallintformatter.h 49 * Estimates the actual digit count needed to format positiveValue
53 * @param positiveValue the value to format
57 int32_t positiveValue, const IntDigitCountRange &range);
60 * Returns TRUE if this class can format positiveValue using
63 * @param positiveValue the value to format
67 int32_t positiveValue, const IntDigitCountRange &range);
70 * Formats positiveValue using the given range of digit counts.
78 * @param positiveValue the value to format
82 int32_t positiveValue,
digitgrouping.cpp 38 int32_t positiveValue, const IntDigitCountRange &range) const {
40 SmallIntFormatter::estimateDigitCount(positiveValue, range)) == 0;
valueformatter.h 86 * formats positiveValue and appends to appendTo. Returns appendTo.
87 * @param positiveValue If negative, no negative sign is formatted.
92 const VisibleDigitsWithExponent &positiveValue,
98 * formats positiveValue and appends to appendTo. Returns appendTo.
104 int32_t positiveValue,
110 * @param positiveValue if negative, the negative sign is not included
114 const VisibleDigitsWithExponent &positiveValue) const;
digitgrouping.h 75 int32_t positiveValue, const IntDigitCountRange &range) const;
digitformatter.cpp 359 int32_t positiveValue,
364 if (fIsStandardDigits && SmallIntFormatter::canFormat(positiveValue, range)) {
366 SmallIntFormatter::format(positiveValue, range, appendTo);
371 int32_t count = formatInt(positiveValue, digits);
digitformatter.h 185 * @param positiveValue the value to format must be positive.
192 int32_t positiveValue,
smallintformatter.cpp     [all...]
  /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 422 milliseconds