HomeSort by relevance Sort by last modified time
    Searched refs:increment (Results 76 - 100 of 308) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/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/chromium/base/
string_number_conversions.cc 206 // - a static function, Increment, that appends the next digit appropriately
240 Sign::Increment(new_digit, output);
257 static void Increment(uint8 increment, value_type* output) {
258 *output += increment;
273 static void Increment(uint8 increment, value_type* output) {
274 *output -= increment;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 88 i != e; i.increment(err)) {
143 se = obj->end_sections(); si != se; si.increment(err)) {
150 e = si->end_relocations(); i != e; i.increment(err)) {
223 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.cpp 416 void JITCompiler::emitCount(AbstractSamplingCounter& counter, uint32_t increment)
418 addPtr(TrustedImm32(increment), AbsoluteAddress(counter.addressOfCounter()));
423 void JITCompiler::emitCount(AbstractSamplingCounter& counter, uint32_t increment)
426 add32(TrustedImm32(increment), AbsoluteAddress(counter.addressOfCounter()));
  /external/webkit/Source/WebCore/bindings/js/
JSLazyEventListener.cpp 60 eventListenerCounter.increment();
  /external/webkit/Source/WebCore/dom/
PositionIterator.cpp 51 void PositionIterator::increment() function in class:WebCore::PositionIterator
  /external/webkit/Source/WebCore/platform/graphics/android/utils/
ClassTracker.cpp 52 void ClassTracker::increment(String name) function in class:WebCore::ClassTracker
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.cpp 60 instanceCounter.increment();
  /external/webkit/Source/WebKit/android/nav/
SelectText.cpp 81 void increment() { m_offset++; } function in class:WebCore::TextRunIterator
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 67 hostedNetscapePluginStreamCounter.increment();
78 hostedNetscapePluginStreamCounter.increment();
  /libcore/luni/src/main/java/java/util/
Calendar.java 265 * increment and decrement buttons for the month, day, and year, and an
267 * 31, 1999 and the user presses the month increment button, what should it
270 * if the user presses the month increment button again, it should read March
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 46 * On key presses (right or left), the amount to increment/decrement the
160 * @param increment The amount to increment or decrement when the user
163 public void setKeyProgressIncrement(int increment) {
164 mKeyProgressIncrement = increment < 0 ? -increment : increment;
172 * @return The amount to increment or decrement when the user presses the
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 239 public void startForLoop(JavaExpression start, JavaExpression end, JavaExpression increment) {
246 writeExpression(increment);
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.h 91 increment = 0.0;
97 double increment; member in struct:JSC::DSTOffsetCache
  /external/webkit/Source/WebCore/css/
view-source.css 75 counter-increment: lines;
  /frameworks/native/include/utils/
BasicHashtable.h 130 // Returns the increment to add to a bucket index to seek to the next bucket
138 // that is defined by the specified increment, given the total number of buckets.
139 inline static size_t chainSeek(size_t index, size_t increment, size_t count) {
140 return (index + increment) % count;
  /libcore/luni/src/main/java/java/text/
ChoiceFormat.java 333 * @param increment
338 public static double nextDouble(double value, boolean increment) {
339 return increment ? nextDouble(value) : previousDouble(value);
  /packages/apps/Camera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java 233 int increment = iconSize + ICON_SPACING; local
236 offset += increment;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java 183 int increment = iconWidth + ICON_SPACING; local
186 offsetX += increment;
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 225 // Does the loop have an increment?
226 const Expr *increment = FS->getInc(); local
228 if (!increment)
233 increment = increment->IgnoreParenCasts();
264 // Does either variable appear in increment?
265 const DeclRefExpr *drInc = getIncrementedVar(increment, vdLHS, vdRHS);
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 14 // Edges are instrumented to increment the path number register, such that the
128 // increment. Notice this is incrementing the path counter
130 // increment is determined by getIncrement().
134 // Get/set the path number increment that this edge will be instrumented
135 // with. This is distinct from the path counter increment and the
136 // weight. The counter increment counts the number of executions of
140 void setIncrement(long increment);
150 // The increment that the code will be instrumented with.
159 // Whether this edge is a path counter increment.
202 // increment and initialization
    [all...]
  /external/mesa3d/src/glsl/
ir_clone.cpp 132 if (this->increment)
133 new_loop->increment = this->increment->clone(mem_ctx, ht);
  /frameworks/base/core/java/android/widget/
NumberPicker.java 66 * presents the current value as an editable input field with an increment button
176 * The increment button.
286 * The {@link Drawable} for pressed virtual (increment/decrement) buttons.
428 * Whether the increment virtual button is pressed.
605 if (v.getId() == R.id.increment) {
617 if (v.getId() == R.id.increment) {
626 // increment button
628 mIncrementButton = (ImageButton) findViewById(R.id.increment);
    [all...]
TimePicker.java 540 trySetContentDescription(mMinuteSpinner, R.id.increment,
545 trySetContentDescription(mHourSpinner, R.id.increment,
551 trySetContentDescription(mAmPmSpinner, R.id.increment,

Completed in 2241 milliseconds

1 2 34 5 6 7 8 91011>>