Searched defs:phase (Results 1 - 25 of 156) sorted by relevance

1234567

/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawDash.h21 SkScalar phase; member in class:SkDash
/external/skia/src/animator/
H A DSkDrawDash.h21 SkScalar phase; member in class:SkDash
/external/chromium_org/third_party/skia/tests/
H A DDashPathEffectTest.cpp12 SkScalar phase = SK_ScalarInfinity; // Used to force the bad fInitialDashLength = -1 path. local
13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));
H A DAsADashTest.cpp24 const SkScalar phase = 2.0; local
25 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
34 const SkScalar phase = 2.0; local
36 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
/external/skia/tests/
H A DDashPathEffectTest.cpp12 SkScalar phase = SK_ScalarInfinity; // Used to force the bad fInitialDashLength = -1 path. local
13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));
H A DAsADashTest.cpp24 const SkScalar phase = 2.0; local
25 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
34 const SkScalar phase = 2.0; local
36 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DComplex.h39 inline Complex complexFromMagnitudePhase(double magnitude, double phase) argument
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java31 private final long phase; field in class:SawToothTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SawToothTiming(long period, long phase) argument
42 this.phase = phase;
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java31 private final long phase; field in class:SineTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SineTiming(long period, long phase) argument
42 this.phase = phase;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
/external/replicaisland/src/com/replica/replicaisland/
H A DPhasedObject.java20 * A basic object that adds an execution phase. When PhasedObjects are combined with
21 * PhasedObjectManagers, objects within the manager will be updated by phase.
25 public int phase; // This is public because the phased is accessed extremely often, so much field in class:PhasedObject
38 phase = phaseValue;
/external/chromium_org/content/common/gpu/
H A Ddevtools_gpu_instrumentation.cc38 void GpuEventsDispatcher::DoFireEvent(EventPhase phase, argument
46 (*it)->ProcessEvent(timestamp, phase, channel);
H A Ddevtools_gpu_agent.cc49 GpuEventsDispatcher::EventPhase phase,
57 task.phase = phase;
47 ProcessEvent( TimeTicks timestamp, GpuEventsDispatcher::EventPhase phase, GpuChannel* channel) argument
H A Ddevtools_gpu_instrumentation.h31 static void FireEvent(EventPhase phase, GpuChannel* channel) { argument
34 DoFireEvent(phase, channel);
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBackgroundImageGeometry.cpp36 IntPoint phase = m_phase; local
37 phase += m_destRect.location() - m_destOrigin;
38 return phase;
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
H A DSVGImageForContainer.cpp43 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
45 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
42 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) argument
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDevToolsAgent.h72 GPUEvent(double timestamp, int phase, bool foreign, uint64_t usedGPUMemoryBytes) : argument
74 phase(phase),
79 int phase; member in class:blink::WebDevToolsAgent::GPUEvent
/external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Dgensig.c78 double phase; local
79 phase = omega * k;
81 fft[k].Im = factor * size / 2 * (sin(phase) / (1 - cos(phase)));
/external/chromium_org/third_party/skia/gm/
H A Dstroketext.cpp54 const SkScalar phase = 0; local
58 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), phase))->unref();
/external/chromium_org/third_party/skia/include/effects/
H A DSkDashPathEffect.h23 phase: offset into the intervals array (mod the sum of all of the
26 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
34 A phase of -5, 25, 55, 85, etc. would all result in the same path,
40 SkScalar phase) {
41 return SkNEW_ARGS(SkDashPathEffect, (intervals, count, phase));
57 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase);
67 // computed from phase
39 Create(const SkScalar intervals[], int count, SkScalar phase) argument
/external/skia/gm/
H A Dstroketext.cpp54 const SkScalar phase = 0; local
58 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), phase))->unref();
/external/skia/include/effects/
H A DSkDashPathEffect.h23 phase: offset into the intervals array (mod the sum of all of the
26 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
34 A phase of -5, 25, 55, 85, etc. would all result in the same path,
40 SkScalar phase) {
41 return SkNEW_ARGS(SkDashPathEffect, (intervals, count, phase));
59 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase);
67 // computed from phase
39 Create(const SkScalar intervals[], int count, SkScalar phase) argument
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_render_widget_host_view_mac_delegate_browsertest.cc68 void SendWheelEvent(int dx, int dy, blink::WebMouseWheelEvent::Phase phase) { argument
71 event.phase = phase;
/external/chromium_org/skia/ext/
H A Devent_tracer_impl.cc16 addTraceEvent(char phase,
43 SkChromiumEventTracer::addTraceEvent(char phase, argument
53 phase, categoryEnabledFlag, name, id, numArgs, argNames,
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGraphicsContextAnnotator.cpp50 static const char* paintPhaseName(blink::PaintPhase phase) argument
52 switch (phase) {
104 annotations.append(std::make_pair(AnnotationKeyPaintPhase, paintPhaseName(paintInfo.phase)));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DStrokeData.cpp92 int phase = 1; local
97 // Adjust the phase to center the dashes within the line.
100 phase = dashLength - remainder / 2;
103 phase = (dashLength - remainder) / 2;
108 RefPtr<SkDashPathEffect> pathEffect = adoptRef(SkDashPathEffect::Create(intervals, 2, SkIntToScalar(phase)));

Completed in 356 milliseconds

1234567