/external/chromium_org/v8/test/mjsunit/ |
math-exp-precision.js | 49 var increment = Math.PI / 35; // Roughly 0.1, but we want to try many variable 51 for (var x = -708; x < 710; x += increment) {
|
/external/chromium/chrome/browser/debugger/manual_tests/resources/ |
loop-statements.js | 14 function increment() function
|
/external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/ |
loop-statements.js | 14 function increment() function
|
/bionic/libc/private/ |
bionic_atomic_x86.h | 64 /* Atomic increment, without explicit barriers */ 68 int increment = 1; local 70 : "+r" (increment), "+m" (*ptr) 72 /* increment now holds the old value of *ptr */ 73 return increment; 80 int increment = -1; local 82 : "+r" (increment), "+m" (*ptr) 84 /* increment now holds the old value of *ptr */ 85 return increment;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
PositionIterator.cpp | 52 void PositionIterator::increment() function in class:WebCore::PositionIterator
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleMarqueeData.h | 46 Length increment; member in class:WebCore::StyleMarqueeData
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefCountedLeakCounter.cpp | 40 void RefCountedLeakCounter::increment() { } function in class:WTF::RefCountedLeakCounter 84 void RefCountedLeakCounter::increment()
|
/external/smack/src/org/xbill/DNS/ |
Serial.java | 53 increment(long serial) { method in class:Serial
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/ |
reverse_iterator.hpp | 45 void increment() { --this->base_reference(); } function in class:boost::reverse_iterator
|
iterator_adaptor.hpp | 333 void increment() { ++m_iterator; } function in class:boost::iterator_adaptor
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
TextRunIterator.h | 57 void increment() { m_offset++; } function in class:WebCore::TextRunIterator
|
/external/replicaisland/src/com/replica/replicaisland/ |
ShellSorter.java | 25 * Note that the running time can be tuned by adjusting the size of the increment used 27 * of increment = increment / 3 + 1. 31 int increment = count / 3 + 1; local 34 while ( increment > 1 ) { 35 for ( int start = 0; start < increment; start++ ) { 36 insertionSort(array, count, start, increment, comparator); 38 increment = increment / 3 + 1; 41 // Do a final pass with an increment of 1 [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/ |
input_iterator_facade.hpp | 70 increment(); 81 void increment() function in class:boost::unit_test::input_iterator_facade
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 55 int increment = index >> (bits - 1) | 1; local 67 index += increment; 74 int increment = index >> (bits - 1) | 1; local 90 index += increment;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Indentation.java | 78 * increment the indentation field 80 protected void increment() { method in class:Indentation
|
/frameworks/base/core/java/com/android/internal/util/ |
BitwiseInputStream.java | 66 * Read some data and increment the current position. 90 * Read data in bulk into a byte array and increment the current position. 99 int increment = Math.min(8, bits - (i << 3)); local 100 arr[i] = (byte)(read(increment) << (8 - increment)); 106 * Increment the current position and ignore contained data. 108 * @param bits the amount by which to increment the position
|
BitwiseOutputStream.java | 84 * Write some data and increment the current position. 107 * Write data in bulk from a byte array and increment the current position. 114 int increment = Math.min(8, bits - (i << 3)); local 115 if (increment > 0) { 116 write(increment, (byte)(arr[i] >>> (8 - increment))); 122 * Increment the current position, implicitly writing zeros. 124 * @param bits the amount by which to increment the position
|
/external/chromium_org/third_party/angle/src/compiler/ |
ForLoopUnroll.cpp | 182 int increment = 0; local 188 increment = 1; 193 increment = -1; 197 increment = evaluateIntConstant(incrementNode); 201 increment = - evaluateIntConstant(incrementNode); 207 return increment;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itrbnfrt.cpp | 281 double increment = 1; local 282 for (double i = lowLimit; i <= highLimit; i += increment) { 289 increment = 1; 291 increment = 2737; 293 increment = 267437;
|
/external/icu4c/test/intltest/ |
itrbnfrt.cpp | 281 double increment = 1; local 282 for (double i = lowLimit; i <= highLimit; i += increment) { 289 increment = 1; 291 increment = 2737; 293 increment = 267437;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/ |
UnboundedFifoByteBuffer.java | 189 * @param index the index to increment
192 private int increment(int index) {
method in class:UnboundedFifoByteBuffer 235 index = increment(index);
|
/external/chromium_org/chrome/browser/ui/views/ash/ |
tab_scrubber_browsertest.cc | 118 int increment; local 121 increment = -1; 124 increment = 1; 127 increment *= 2; 130 for (int i = active_index + increment; i != (index + increment); 131 i += increment) { 136 offsets.push_back(gfx::Point(increment, 0)); 137 last += increment;
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
ProgressTracker.cpp | 180 double increment, percentOfRemainingBytes; local 200 increment = (maxProgressValue - m_progressValue) * percentOfRemainingBytes; 201 m_progressValue += increment;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
CounterNode.cpp | 149 int increment = actsAsReset() ? 0 : m_value; local 151 return m_previousSibling->m_countInParent + increment; 153 return m_parent->m_value + increment; 283 // The code below handles the case when a formerly root increment counter is loosing its root position 299 // 1. if the increment counter node lost it's root position as a result of another 301 // 2. if the increment counter node lost it's root position as a result of a renderer being 368 current, current->actsAsReset() ? "reset____" : "increment", current->value(),
|
RenderMarquee.cpp | 103 // Now we have the real direction. Next we check to see if the increment is negative. 105 Length increment = style()->marqueeIncrement(); local 106 if (increment.isNegative()) 302 int increment = abs(intValueForLength(style()->marqueeIncrement(), clientSize)); local 304 newPos = currentPos + (addIncrement ? increment : -increment);
|