HomeSort by relevance Sort by last modified time
    Searched refs:phase (Results 1 - 25 of 513) 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/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/mojo/services/public/cpp/view_manager/
node_observer.h 37 DispositionChangePhase phase; member in struct:mojo::view_manager::NodeObserver::TreeChangeParams
45 DispositionChangePhase phase) {}
47 virtual void OnNodeDestroy(Node* node, DispositionChangePhase phase) {}
52 DispositionChangePhase phase) {}
57 DispositionChangePhase phase) {}
  /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/mojo/services/public/cpp/view_manager/lib/
node_observer.cc 20 phase(NodeObserver::DISPOSITION_CHANGING) {}
  /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 19 typedef void (*AddTraceEventFunc)(char phase, const unsigned char* categoryGroupEnabled, const char* name,
35 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));
  /external/chromium_org/ppapi/c/dev/
ppb_trace_event_dev.h 59 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/
SkDashPathEffect.h 23 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
  /external/skia/include/effects/
SkDashPathEffect.h 23 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
  /external/chromium_org/third_party/skia/src/utils/
SkDashPath.cpp 15 static SkScalar find_first_interval(const SkScalar intervals[], SkScalar phase,
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,
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 of -20 (or -120) is equivalent to 8
    [all...]

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 91011>>