HomeSort by relevance Sort by last modified time
    Searched defs:increment (Results 126 - 150 of 904) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/number/
Rounder.java 256 * Show numbers rounded if necessary to the closest multiple of a certain rounding increment. For example, if the
257 * rounding increment is 0.5, then round 1.2 to 1 and round 1.3 to 1.5.
261 * rounding increment BigDecimal. For example, to round to the nearest 0.5 and always display 2 numerals after the
265 * Rounder.increment(new BigDecimal("0.50"))
272 * The increment to which to round numbers.
277 public static Rounder increment(BigDecimal roundingIncrement) { method in class:Rounder
281 throw new IllegalArgumentException("Rounding increment must be positive and non-null");
288 * <code>Rounder.increment(0.05)</code> for cash transactions ("nickel rounding").
296 * Either STANDARD (for digital transactions) or CASH (for transactions where the rounding increment may
424 static Rounder constructIncrement(BigDecimal increment) {
448 BigDecimal increment = BigDecimal.valueOf(incrementDouble); local
587 final BigDecimal increment; field in class:Rounder.IncrementRounderImpl
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
Rounder.java 265 * Show numbers rounded if necessary to the closest multiple of a certain rounding increment. For example, if the
266 * rounding increment is 0.5, then round 1.2 to 1 and round 1.3 to 1.5.
270 * rounding increment BigDecimal. For example, to round to the nearest 0.5 and always display 2 numerals after the
274 * Rounder.increment(new BigDecimal("0.50"))
281 * The increment to which to round numbers.
287 public static Rounder increment(BigDecimal roundingIncrement) { method in class:Rounder
291 throw new IllegalArgumentException("Rounding increment must be positive and non-null");
298 * <code>Rounder.increment(0.05)</code> for cash transactions ("nickel rounding").
306 * Either STANDARD (for digital transactions) or CASH (for transactions where the rounding increment may
436 static Rounder constructIncrement(BigDecimal increment) {
460 BigDecimal increment = BigDecimal.valueOf(incrementDouble); local
599 final BigDecimal increment; field in class:Rounder.IncrementRounderImpl
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackAnimationHelper.java 290 postAnimationTrigger.increment();
304 postAnimationTrigger.increment();
353 postAnimationTrigger.increment();
528 postAnimTrigger.increment();
617 animationTrigger.increment();
632 postAnimationTrigger.increment();
649 postAnimationTrigger.increment();
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 116 virtual std::error_code increment() = 0;
138 directory_iterator &increment(std::error_code &EC) { function in class:clang::vfs::directory_iterator
139 assert(Impl && "attempting to increment past end");
140 EC = Impl->increment();
177 recursive_directory_iterator &increment(std::error_code &EC);
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 73 void increment(T &x) { function
82 increment(inc);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CompactByteArray.java 361 int increment = Math.min(3, values.length/16); local
362 for (int i = 0; i < values.length; i+= increment) {
CompactCharArray.java 385 int increment = Math.min(3, values.length/16); local
386 for (int i = 0; i < values.length; i+= increment) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
Counter.java 218 public Counter<T> increment(T key) { method in class:Counter
  /external/icu/icu4c/source/i18n/
number_rounding.cpp 123 IncrementRounder Rounder::increment(double roundingIncrement) { function in class:Rounder
163 double increment = ucurr_getRoundingIncrementForUsage(isoCode, fUnion.currencyUsage, &status); local
166 if (increment != 0.0) {
167 return constructIncrement(increment, minMaxFrac);
186 return constructIncrement(fUnion.increment.fIncrement, minFrac);
224 IncrementRounder Rounder::constructIncrement(double increment, int32_t minFrac) {
226 settings.fIncrement = increment;
229 union_.increment = settings;
327 fUnion.increment.fIncrement, fRoundingMode, fUnion.increment.fMinFrac, status)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CompactByteArray.java 359 int increment = Math.min(3, values.length/16); local
360 for (int i = 0; i < values.length; i+= increment) {
CompactCharArray.java 383 int increment = Math.min(3, values.length/16); local
384 for (int i = 0; i < values.length; i+= increment) {
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
Counter.java 215 public Counter<T> increment(T key) { method in class:Counter
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
UnknownFieldSetLite.java 284 int increment = count < (MIN_CAPACITY / 2) ? MIN_CAPACITY : count >> 1; local
285 int newLength = count + increment;
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
ObjectFile.h 65 content_iterator& increment(error_code &err) { function in class:llvm::object::content_iterator
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FileSystem.h 510 directory_iterator &increment(error_code &ec) { function in class:llvm::sys::fs::directory_iterator
535 directory_iterator &increment(error_code &ec);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
PathProfileInfo.cpp 140 unsigned int increment = _number; local
144 BallLarusEdge* next = getNextEdge(currentNode, increment);
146 increment -= next->getWeight();
179 unsigned int increment = _number; local
183 BallLarusEdge* next = getNextEdge(currentNode, increment);
184 increment -= next->getWeight();
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
vector_support_library.cc 309 int increment = i < vector_size() / 2 ? 0 : (vector_size() / 2); local
310 mask_a.push_back(ir_builder()->getInt32(increment + i));
311 mask_b.push_back(ir_builder()->getInt32(increment + i + 1));
314 int increment = i < vector_size() / 2 ? (vector_size() / 2) : vector_size(); local
315 mask_a.push_back(ir_builder()->getInt32(increment + i));
316 mask_b.push_back(ir_builder()->getInt32(increment + i + 1));
  /external/tensorflow/tensorflow/python/kernel_tests/
py_func_test.py 333 def increment(self, diff): member in class:PyFuncTest.testNoReturnValueStateful.State
342 op = s.increment(constant_op.constant(2, dtypes.int64))
  /external/v8/src/runtime/
runtime-array.cc 179 int increment = (length < kNumberOfHoleCheckSamples) local
184 for (int i = 0; i < length; i += increment) {
  /external/webrtc/webrtc/modules/audio_coding/neteq/
merge.cc 110 int increment = 4194 / fs_mult_; local
115 increment));
118 external_mute_factor, increment,
129 int16_t increment = local
131 int16_t mute_factor = 16384 - increment;
136 &mute_factor, increment, decoded_output);
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 458 * Increment a value block, storing the result in the temporary block on the tag.
466 * @param blockIndex index of block to increment, starting from 0
467 * @param value non-negative to increment by
471 public void increment(int blockIndex, int value) throws IOException { method in class:MifareClassic
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
OldBigIntegerTest.java 319 BigInteger increment = BigInteger.ONE; local
  /libcore/jsr166-tests/src/test/java/jsr166/
LongAdderTest.java 63 ai.increment();
65 ai.increment();
112 ai.increment();
122 ai.increment();
132 ai.increment();
142 ai.increment();
152 ai.increment();
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 542 int increment = isRtl ? -1 : 1; local
543 for (int x = isRtl ? countX - 1 : 0; 0 <= x && x < countX; x += increment) {
557 int increment = isRtl ? 1 : -1; local
558 for (int x = isRtl ? 0 : countX - 1; 0 <= x && x < countX; x += increment) {
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java 183 int increment = iconWidth + ICON_SPACING; local
186 offsetX += increment;

Completed in 1602 milliseconds

1 2 3 4 56 7 8 91011>>