HomeSort by relevance Sort by last modified time
    Searched refs:sweep (Results 1 - 25 of 34) sorted by null

1 2

  /external/valgrind/main/none/tests/s390x/
clc.c 50 void sweep(int l) function
60 sweep(0);
61 sweep(1);
62 sweep(2);
63 sweep(3);
64 sweep(4);
65 sweep(5);
66 sweep(22);
  /external/webkit/Source/WebCore/platform/graphics/android/
PathAndroid.cpp 177 float sweep = ea - sa; local
180 /* Note if clockwise and the sign of the sweep disagree. This particular
183 if (clockwise && (sweep > 0 || sweep < -g2PI)) {
184 sweep = fmodf(sweep, g2PI) - g2PI;
185 } else if (!clockwise && (sweep < 0 || sweep > g2PI)) {
186 sweep = fmodf(sweep, g2PI) + g2PI
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 129 protected void layoutSweep(ChartSweepView sweep) {
133 layoutSweep(sweep, parentRect, childRect);
134 sweep.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
137 protected void layoutSweep(ChartSweepView sweep, Rect parentRect, Rect childRect) {
138 final Rect sweepMargins = sweep.getMargins();
140 // sweep is always placed along specific dimension
141 if (sweep.getFollowAxis() == ChartSweepView.VERTICAL) {
142 parentRect.top += sweepMargins.top + (int) sweep.getPoint();
146 Gravity.apply(SWEEP_GRAVITY, parentRect.width(), sweep.getMeasuredHeight(),
150 parentRect.left += sweepMargins.left + (int) sweep.getPoint()
    [all...]
ChartDataUsageView.java 96 final ChartSweepView sweep = (ChartSweepView) msg.obj;
97 updateVertAxisBounds(sweep);
100 // we keep dispatching repeating updates until sweep is dropped
101 sendUpdateAxisDelayed(sweep, true);
258 // since we just changed axis, make sweep recalculate its value
300 public void onSweep(ChartSweepView sweep, boolean sweepDone) {
310 public void requestEdit(ChartSweepView sweep) {
315 private void sendUpdateAxisDelayed(ChartSweepView sweep, boolean force) {
316 if (force || !mHandler.hasMessages(MSG_UPDATE_AXIS, sweep)) {
318 mHandler.obtainMessage(MSG_UPDATE_AXIS, sweep), DELAY_MILLIS)
    [all...]
ChartSweepView.java 42 * Sweep across a {@link ChartView} at a specific {@link ChartAxis} value, which
100 public void onSweep(ChartSweepView sweep, boolean sweepDone);
101 public void requestEdit(ChartSweepView sweep);
214 public void setSweepDrawable(Drawable sweep) {
220 if (sweep != null) {
221 sweep.setCallback(this);
222 if (sweep.isStateful()) {
223 sweep.setState(getDrawableState());
225 sweep.setVisible(getVisibility() == VISIBLE, false);
226 mSweep = sweep;
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 35 private float sweep; field in class:PieItem
115 sweep = sw;
129 return sweep;
PieMenu.java 249 float sweep = (float) (Math.PI - 2 * emptyangle) / mCounts[level]; local
250 float angle = emptyangle + sweep / 2;
251 mPath = makeSlice(getDegrees(0) - gap, getDegrees(sweep) + gap, outer, inner, mCenter);
270 float itemstart = angle - sweep / 2;
271 item.setGeometry(itemstart, sweep, inner, outer);
272 angle += sweep;
  /external/skia/third_party/glu/libtess/
GNUmakefile 85 sweep.h \
98 sweep.c \
alg-outline 25 input and output during the line sweep process. At the very least,
38 3. Using a line-sweep algorithm, partition the plane into x-monotone
90 The Line Sweep
103 The edge dictionary describes the current intersection of the sweep
105 edges which intersect the sweep line, sorted by their current order of
108 (since they are crossed by the current sweep line).
110 The basic algorithm is to sweep from left to right, processing each
111 vertex. The processed portion of the mesh (left of the sweep line) is
118 computed. For unprocessed vertices (right of the sweep line), these
158 These are the most important invariants maintained during the sweep
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathByteStreamSource.cpp 103 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
109 sweep = readFlag();
SVGPathSegListSource.cpp 138 bool SVGPathSegListSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
147 sweep = arcTo->sweepFlag();
SVGPathStringSource.cpp 224 bool SVGPathStringSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
232 || !parseArcFlag(m_current, m_end, sweep)
SVGPathParser.cpp 244 bool sweep; local
246 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
270 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
  /external/skia/samplecode/
SampleDither.cpp 58 SkScalar sweep = SkFloatToScalar(360.0f); local
65 path.arcTo(bounds, 0, sweep, false);
67 path.arcTo(innerBounds, sweep, -sweep, false);
SampleArc.cpp 65 int start, int sweep) {
75 str.appendS32(sweep);
149 // printf("----- sweep %g %X\n", SkScalarToFloat(fSweep), SkDegreesToRadians(fSweep));
  /external/webkit/Source/JavaScriptCore/heap/
MarkedSpace.cpp 117 void MarkedSpace::sweep() function in class:JSC::MarkedSpace
121 (*it)->sweep();
MarkedBlock.cpp 66 void MarkedBlock::sweep() function in class:JSC::MarkedBlock
MarkedSpace.h 71 void sweep();
  /external/v8/test/mjsunit/regress/
regress-regexp-codeflush.js 33 // This can create a crash if the code was exchanged with the sweep
42 // Run enough times to get a number of GC's (all mark sweep because of the
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 139 float sweep = ea - sa; local
141 SkScalar sweepDegrees = WebCoreFloatToSkScalar(sweep * 180 / piFloat);
144 // Move to the start position (0 sweep means we add a single point).
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
ainstr_iw.h 88 signed short sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_lfo
243 __s16 sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_xlfo
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_iw.h 88 signed short sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_lfo
243 __s16 sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_xlfo
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ainstr_iw.h 91 signed short sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_lfo
246 __s16 sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_xlfo
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_iw.h 88 signed short sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_lfo
243 __s16 sweep; /* 0 - 950 deciseconds */ member in struct:iwffff_xlfo
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 155 float sweep = endAngle - startAngle; local
157 if ((sweep <= -twoPI || sweep >= twoPI)

Completed in 254 milliseconds

1 2