HomeSort by relevance Sort by last modified time
    Searched full:increment (Results 151 - 175 of 1961) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/res/res/layout/
number_picker.xml 22 <ImageButton android:id="@+id/increment"
  /frameworks/base/libs/hwui/
ResourceCache.h 80 * Used to increment, decrement, and destroy. Incrementing is generally accessed on the UI
  /frameworks/compile/libbcc/lib/ScriptCRT/
Android.mk 44 # Increment by 1 whenever this is not a final release build, since we want to
  /ndk/sources/cxx-stl/stlport/src/
sparc_atomic.s 36 add %o2, 0x1, %o3 ! Increment and store current
sparc_atomic64.s 34 addx %o2, 0x1, %o3 ! Increment and store current
  /external/chromium/base/metrics/
stats_counters.h 28 // request_count.Increment();
88 void Increment() {
147 // Accept a TimeDelta to increment.
stats_table_unittest.cc 98 increment_counter.Increment();
103 mixed_counter.Increment();
181 increment_counter.Increment();
264 // Test Increment.
265 while (*(foo.Pointer()) < 123) foo.Increment();
  /external/expat/
configure.in 37 dnl Increment LIBREVISION if source code has changed at all
39 dnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0
42 dnl without changing or removing earlier interfaces), then increment LIBAGE.
  /external/libvpx/nestegg/
configure.ac 20 dnl - library source changed -> increment REVISION
21 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
22 dnl - interfaces added -> increment AGE
  /external/llvm/lib/Object/
Object.cpp 47 unwrap(SI)->increment(ec);
74 unwrap(SI)->increment(ec);
132 unwrap(SI)->increment(ec);
  /external/mesa3d/src/glsl/
loop_analysis.h 161 * Increment values for loop induction variables
163 * Loop induction variables have a single increment of the form
173 ir_rvalue *increment; member in class:loop_variable
ir_validate.cpp 122 if ((ir->from == NULL) || (ir->from == NULL) || (ir->increment == NULL)) {
127 " increment: %p\n",
129 (void *) ir->increment);
138 if ((ir->from != NULL) || (ir->from != NULL) || (ir->increment != NULL)) {
143 " increment: %p\n",
145 (void *) ir->increment);
  /external/v8/test/mjsunit/regress/
regress-969.js 62 // Pre and post-increment of global variable.
76 // Assignment, compound assignment, and pre and post-increment of named
103 // Assignment, compound assignment, and pre and post-increment of indexed
  /external/valgrind/unittest/
thread_wrappers_win.h 74 int AtomicIncrement(volatile int *value, int increment) {
76 increment) + increment;
  /packages/apps/Email/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/icu4c/common/unicode/
uclean.h 171 * Pointer type for a user supplied atomic increment or decrement function.
181 * Set the functions that ICU will use for atomic increment and decrement of int32_t values.
183 * use its own internal implementation of atomic increment/decrement.
187 * a parameter to the increment and decrement functions each time they
189 * @param inc Pointer to a function to do an atomic increment operation. Must be non-null.
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 114 public static boolean validateLoopArgs(int start, int end, int increment) {
115 if (increment == 0) {
116 return false; // No increment. Avoid infinite loop.
118 if (increment > 0 && start > end) {
121 if (increment < 0 && start < end) {
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 60 /// insert the IV increment at this position.
117 /// getIVIncOperand - Return the induction variable increment's IV operand.
121 /// hoistIVInc - Utility for hoisting an IV increment.
135 /// setIVIncInsertPos - Set the current IV increment loop and position.
138 "IV increment positions are not supported in CanonicalMode");
  /external/icu4c/test/intltest/
dcfmapts.cpp 47 logln((UnicodeString)"DecimalFormat Rounding Increment test---");
483 // get default rounding increment
486 errln((UnicodeString)"ERROR: Rounding increment not zero");
491 // set a rounding increment to enable non-default mode rounding,
494 // set rounding mode with zero increment. Rounding
495 // increment should not be set by this operation
499 errln((UnicodeString)"ERROR: Rounding increment not zero after setRoundingMode");
  /external/libffi/
ChangeLog.libffi 5 * libtool-version: Increment revision. Add documentation.
23 * libtool-version: Increment revision.
104 * libtool-version: Increment revision.
115 * libtool-version: Increment revision.
137 * libtool-version: Increment revision.
150 * libtool-version: Increment revision.
283 * libtool-version: Increment CURRENT
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 327 // machine the address increment value corresponding to special
393 // increment for a special opcode is the value of the line_base
396 // increment is greater than the maximum line increment, a standard
398 // advance" is calculated by dividing the desired address increment
402 // opcode = (desired line increment - line_base) +
410 // increment the address register is the result of the adjusted
414 // address increment = (adjusted opcode / line_range) *
417 // The amount to increment the line register is the line_base plus
420 // line increment = line_base + (adjusted opcode % line_range
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 263 /// increment() which must set CurrentEntry to 0 to create an end iterator.
296 Base->increment();
329 /// This parses the YAML stream as increment() is called.
376 void increment();
382 /// This parses the YAML stream as increment() is called.
416 void increment();
  /external/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/v8/src/
compilation-cache.cc 218 isolate()->counters()->compilation_cache_hits()->Increment();
221 isolate()->counters()->compilation_cache_misses()->Increment();
277 isolate()->counters()->compilation_cache_hits()->Increment();
280 isolate()->counters()->compilation_cache_misses()->Increment();
338 isolate()->counters()->compilation_cache_hits()->Increment();
341 isolate()->counters()->compilation_cache_misses()->Increment();
  /external/webkit/Source/WebCore/platform/
ScrollAnimatorWin.cpp 101 // increment the desired position by |step| (with |multiplier| == 1) every
120 // causing a visible hitch) while waiting for the next autoscroll increment.
128 // For keyboard and wheel scrolls, we don't know when the next increment
133 // events that come slower, we'll scroll one increment and then pause until
139 // increment to occur -- bad because it leads to hitching as described above
230 // single scroll increment, i.e. the work done due to calling

Completed in 1460 milliseconds

1 2 3 4 5 67 8 91011>>