HomeSort by relevance Sort by last modified time
    Searched defs:sweep (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.cpp 66 void MarkedBlock::sweep() function in class:JSC::MarkedBlock
MarkedSpace.cpp 117 void MarkedSpace::sweep() function in class:JSC::MarkedSpace
121 (*it)->sweep();
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 33 private float sweep; field in class:PieItem
67 sweep = sw;
78 return sweep;
PieMenu.java 208 float sweep = (float) (Math.PI - 2 * emptyangle) / mCounts[level]; local
209 float angle = emptyangle + sweep / 2;
226 float itemstart = angle - sweep / 2;
228 getDegrees(itemstart + sweep) + gap,
230 item.setGeometry(itemstart, sweep, inner, outer, slice);
231 angle += sweep;
  /external/skia/samplecode/
SampleDither.cpp 51 SkScalar sweep = SkFloatToScalar(360.0f); local
58 path.arcTo(bounds, 0, sweep, false);
60 path.arcTo(innerBounds, sweep, -sweep, false);
  /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...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 155 float sweep = endAngle - startAngle; local
157 if ((sweep <= -twoPI || sweep >= twoPI)
  /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).
  /external/webkit/Source/WebCore/svg/
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);
  /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...]
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...]
  /external/ipsec-tools/src/racoon/
handler.c 1176 struct timeval now, diff, sweep; local
1180 /* calculate sweep time; delete entries older than this */
1183 timersub(&now, &diff, &sweep);
1188 if (timercmp(&r->time_send, &sweep, <)) {
  /external/skia/src/core/
SkPath.cpp 519 SkScalar sweep = SkIntToScalar(90); local
521 start += sweep;
522 sweep = -sweep;
525 path->arcTo(r, start, sweep, forceMoveTo);
636 /* If the sweep angle is nearly (but less than) 360, then due to precision
    [all...]
  /prebuilt/linux-x86/toolchain/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

Completed in 1175 milliseconds