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

/frameworks/base/graphics/java/android/graphics/
H A DDashPathEffect.java24 * 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) { argument
38 native_instance = nativeCreate(intervals, phase);
41 private static native int nativeCreate(float intervals[], float phase); argument
H A DPathDashPathEffect.java39 * @param phase amount to offset before the first shape is stamped
42 public PathDashPathEffect(Path shape, float advance, float phase, argument
44 native_instance = nativeCreate(shape.ni(), advance, phase,
49 float phase, int native_style);
48 nativeCreate(int native_path, float advance, float phase, int native_style) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DDashPathEffect_Delegate.java76 /*package*/ static int nativeCreate(float intervals[], float phase) { argument
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) { argument
86 mPhase = phase;
H A DPathDashPathEffect_Delegate.java65 /*package*/ static int nativeCreate(int native_path, float advance, float phase, argument
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp29 jfloatArray intervalArray, float phase) {
39 return new SkDashPathEffect(intervals, count, SkFloatToScalar(phase));
43 const SkPath* shape, float advance, float phase, int style) {
46 SkFloatToScalar(phase), (SkPath1DPathEffect::Style)style);
28 Dash_constructor(JNIEnv* env, jobject, jfloatArray intervalArray, float phase) argument
42 OneD_constructor(JNIEnv* env, jobject, const SkPath* shape, float advance, float phase, int style) argument
/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.cpp395 int32_t& l, int32_t& r, uint32_t phase, const int16_t *samples)
401 uint32_t indexP = (phase & c->cMask) >> c->cShift;
402 uint16_t lerpP = (phase & c->pMask) >> c->pShift;
403 uint32_t indexN = (-phase & c->cMask) >> c->cShift;
404 uint16_t lerpN = (-phase & c->pMask) >> c->pShift;
394 filterCoefficient( int32_t& l, int32_t& r, uint32_t phase, const int16_t *samples) argument
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.cpp136 EventPhase phase,
140 "AddEntry time=%s type=%s source=%s phase=%s\n",
144 EventPhaseToString(phase)).c_str());
132 AddEntry( EventType type, const base::TimeTicks &time, const Source &source, EventPhase phase, EventParameters *params) argument

Completed in 282 milliseconds