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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/gui/splash/
SawToothTiming.java 31 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)
42 this.phase = phase;
51 return (double)((time + phase) % period) / (double)period;
SineTiming.java 31 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)
42 this.phase = phase;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 24 * specifying the "off" intervals. phase is an offset into the intervals
32 * @param phase offset into the intervals array
34 public DashPathEffect(float intervals[], float phase) {
38 native_instance = nativeCreate(intervals, phase);
41 private static native long nativeCreate(float intervals[], float phase);
PathDashPathEffect.java 39 * @param phase amount to offset before the first shape is stamped
42 public PathDashPathEffect(Path shape, float advance, float phase,
44 native_instance = nativeCreate(shape.ni(), advance, phase,
49 float phase, int native_style);
  /external/replicaisland/src/com/replica/replicaisland/
PhasedObject.java 20 * 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/
SVGTextPainter.cpp 17 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection)
28 if (paintInfo.phase == PaintPhaseForeground) {
29 blockInfo.phase = PaintPhaseSelfOutline;
SVGForeignObjectPainter.cpp 19 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 = PaintPhaseForeground
    [all...]
LineBoxListPainter.cpp 20 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 == PaintPhaseChildOutlines)
    [all...]
ReplicaPainter.cpp 19 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
24 if (paintInfo.phase == PaintPhaseForeground) {
31 } else if (paintInfo.phase == PaintPhaseMask) {
BlockFlowPainter.cpp 26 currentPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
34 currentPaintInfo.phase = PaintPhaseChildBlockBackgrounds;
36 currentPaintInfo.phase = PaintPhaseFloat;
38 currentPaintInfo.phase = PaintPhaseForeground;
40 currentPaintInfo.phase = PaintPhaseOutline;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Complex.h 39 inline Complex complexFromMagnitudePhase(double magnitude, double phase)
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
  /external/chromium_org/third_party/skia/src/animator/
SkDrawDash.cpp 17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
SkDrawDash.h 21 SkScalar phase; member in class:SkDash
  /external/skia/src/animator/
SkDrawDash.cpp 17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
SkDrawDash.h 21 SkScalar phase; member in class:SkDash
  /libcore/luni/src/main/java/java/util/concurrent/
Phaser.java 37 * generation of a phaser has an associated phase number. The phase
40 * Integer.MAX_VALUE}. The use of phase numbers enables independent
49 * do not block, but return an associated <em>arrival phase
50 * number</em>; that is, the phase number of the phaser to which
51 * the arrival applied. When the final party for a given phase
52 * arrives, an optional action is performed and the phase
54 * triggering a phase advance, and are arranged by overriding
61 * argument indicating an arrival phase number, and returns when
62 * the phaser advances to (or is already at) a different phase
356 int phase = (int)(s >>> PHASE_SHIFT); local
402 int phase; local
464 int phase, p; local
525 int phase = 0; local
651 int phase = (int)(s >>> PHASE_SHIFT); local
1062 final int phase; field in class:Phaser.QNode
    [all...]
  /external/chromium_org/ui/v2/public/
view_observer.h 36 DispositionChangePhase phase; member in struct:v2::ViewObserver::TreeChangeParams
52 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {}
57 DispositionChangePhase phase) {}
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsAgent.h 72 GPUEvent(double timestamp, int phase, bool foreign, uint64_t usedGPUMemoryBytes) :
74 phase(phase),
79 int phase; member in class:blink::WebDevToolsAgent::GPUEvent
  /external/chromium_org/ui/base/cocoa/
nsgraphics_context_additions.h 12 // 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/
view_observer.cc 19 phase(ViewObserver::DISPOSITION_CHANGING) {}
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 76 /*package*/ static long nativeCreate(float intervals[], float phase) {
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) {
86 mPhase = phase;
  /external/chromium_org/third_party/angle/src/common/
event_tracer.h 21 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/
DashPathEffectTest.cpp 12 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/
event_tracer.h 34 typedef void (*AddTraceEventPtr)(char phase,
60 char phase,
  /external/skia/tests/
DashPathEffectTest.cpp 12 SkScalar phase = SK_ScalarInfinity; // Used to force the bad fInitialDashLength = -1 path. local
13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));

Completed in 3683 milliseconds

1 2 3 4 5 6 7 8 91011>>