Searched refs:phase (Results 1 - 25 of 352) sorted by relevance

1234567891011>>

/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/third_party/WebKit/Source/core/paint/
H A DSVGTextPainter.cpp17 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection)
28 if (paintInfo.phase == PaintPhaseForeground) {
29 blockInfo.phase = PaintPhaseSelfOutline;
H A DSVGForeignObjectPainter.cpp19 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection)
31 if (paintInfo.phase == PaintPhaseForeground) {
38 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
40 childPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
43 childPaintInfo.phase = PaintPhaseChildBlockBackgrounds;
45 childPaintInfo.phase = PaintPhaseFloat;
47 childPaintInfo.phase
[all...]
H A DLineBoxListPainter.cpp20 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
21 && paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines && paintInfo.phase != PaintPhaseTextClip
22 && paintInfo.phase != PaintPhaseMask)
48 if (info.phase == PaintPhaseOutline || info.phase == PaintPhaseSelfOutline || info.phase
[all...]
H A DReplicaPainter.cpp19 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
24 if (paintInfo.phase == PaintPhaseForeground) {
31 } else if (paintInfo.phase == PaintPhaseMask) {
H A DBlockFlowPainter.cpp26 currentPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
34 currentPaintInfo.phase = PaintPhaseChildBlockBackgrounds;
36 currentPaintInfo.phase = PaintPhaseFloat;
38 currentPaintInfo.phase = PaintPhaseForeground;
40 currentPaintInfo.phase = PaintPhaseOutline;
H A DBackgroundImageGeometry.cpp36 IntPoint phase = m_phase; local
37 phase += m_destRect.location() - m_destOrigin;
38 return phase;
H A DTableRowPainter.cpp23 if (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground)
33 PaintPhase paintPhase = paintInfo.phase;
/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/chromium_org/third_party/skia/src/animator/
H A DSkDrawDash.cpp17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
H A DSkDrawDash.h21 SkScalar phase; member in class:SkDash
/external/skia/src/animator/
H A DSkDrawDash.cpp17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
H A DSkDrawDash.h21 SkScalar phase; member in class:SkDash
/external/chromium_org/ui/base/cocoa/
H A Dnsgraphics_context_additions.h12 // When a view is not layer backed the pattern phase is relative to the origin
13 // of the window's content view. With a layer backed view the pattern phase is
16 // For layer backed view this method offsets the pattern phase to match the
18 - (void)cr_setPatternPhase:(NSPoint)phase
/external/chromium_org/ui/v2/src/
H A Dview_observer.cc19 phase(ViewObserver::DISPOSITION_CHANGING) {}
/external/chromium_org/third_party/angle/src/common/
H A Devent_tracer.h21 typedef void (*AddTraceEventFunc)(char phase, const unsigned char* categoryGroupEnabled, const char* name,
37 void TraceAddTraceEvent(char phase, const unsigned char* categoryGroupEnabled, const char* name, unsigned long long id,
/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));
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Devent_tracer.h34 typedef void (*AddTraceEventPtr)(char phase,
60 char phase,
/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));
/external/chromium_org/ppapi/c/dev/
H A Dppb_trace_event_dev.h59 void (*AddTraceEvent)(int8_t phase,
74 void (*AddTraceEventWithThreadIdAndTimestamp)(int8_t phase,
102 void (*AddTraceEvent)(int8_t phase,
/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/chromium_org/ui/v2/public/
H A Dview_observer.h36 DispositionChangePhase phase; member in struct:v2::ViewObserver::TreeChangeParams
52 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {} argument
57 DispositionChangePhase phase) {}
56 OnViewVisibilityChange(View* view, DispositionChangePhase phase) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkDashPath.cpp15 static SkScalar find_first_interval(const SkScalar intervals[], SkScalar phase, argument
18 if (phase > intervals[i]) {
19 phase -= intervals[i];
22 return intervals[i] - phase;
25 // If we get here, phase "appears" to be larger than our length. This
33 void SkDashPath::CalcDashParameters(SkScalar phase, const SkScalar intervals[], int32_t count, argument
43 if ((len > 0) && SkScalarIsFinite(phase) && SkScalarIsFinite(len)) {
45 // Adjust phase to be between 0 and len, "flipping" phase if negative.
46 // e.g., if len is 100, then phase o
[all...]

Completed in 706 milliseconds

1234567891011>>