/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | DashPathEffect_Delegate.java | 76 /*package*/ static long nativeCreate(float intervals[], float phase) { in nativeCreate() argument 77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase); in nativeCreate() 83 private DashPathEffect_Delegate(float intervals[], float phase) { in DashPathEffect_Delegate() argument 86 mPhase = phase; in DashPathEffect_Delegate()
|
D | PathDashPathEffect_Delegate.java | 65 /*package*/ static long nativeCreate(long native_path, float advance, float phase, in nativeCreate() argument
|
/frameworks/base/graphics/java/android/graphics/ |
D | DashPathEffect.java | 34 public DashPathEffect(float intervals[], float phase) { in DashPathEffect() argument 38 native_instance = nativeCreate(intervals, phase); in DashPathEffect() 41 private static native long nativeCreate(float intervals[], float phase); in nativeCreate() argument
|
D | PathDashPathEffect.java | 42 public PathDashPathEffect(Path shape, float advance, float phase, in PathDashPathEffect() argument 44 native_instance = nativeCreate(shape.ni(), advance, phase, in PathDashPathEffect() 49 float phase, int native_style); in nativeCreate() argument
|
/frameworks/av/services/audioflinger/ |
D | AudioResamplerFirProcess.h | 339 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument 351 uint32_t indexP = phase >> coefShift; in fir() 352 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir() 364 uint32_t indexP = phase >> coefShift; in fir() 365 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir() 385 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir() 390 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir() 391 >> ((sizeof(phase)-sizeof(*coefs))*8 + 1); in fir()
|
D | AudioResamplerSinc.cpp | 643 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, in filterCoefficient() argument 655 uint32_t indexP = ( phase & c.cMask) >> c.cShift; in filterCoefficient() 656 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient() 657 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient() 658 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
|
D | AudioResamplerSinc.h | 55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
|
/frameworks/base/core/jni/android/graphics/ |
D | PathEffect.cpp | 36 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument 44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase); in Dash_constructor() 49 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument 52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase, in OneD_constructor()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetService.java | 42 public void onBootPhase(int phase) { in onBootPhase() argument 43 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pService.java | 40 public void onBootPhase(int phase) { in onBootPhase() argument 41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetService.java | 40 public void onBootPhase(int phase) { in onBootPhase() argument 41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/native/services/surfaceflinger/ |
D | DispSync.cpp | 64 void updateModel(nsecs_t period, nsecs_t phase) { in updateModel() argument 67 mPhase = phase; in updateModel() 147 status_t addEventListener(nsecs_t phase, const sp<DispSync::Callback>& callback) { in addEventListener() argument 157 listener.mPhase = phase; in addEventListener() 249 nsecs_t phase = mPhase + listener.mPhase; in computeListenerNextEventTimeLocked() local 250 nsecs_t t = (((ref - phase) / mPeriod) + 1) * mPeriod + phase; in computeListenerNextEventTimeLocked() 385 status_t DispSync::addEventListener(nsecs_t phase, in addEventListener() argument 389 return mThread->addEventListener(phase, callback); in addEventListener()
|
D | DispSync.h | 117 status_t addEventListener(nsecs_t phase, const sp<Callback>& callback);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiService.java | 44 public void onBootPhase(int phase) { in onBootPhase() argument 45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
D | WifiScanningService.java | 44 public void onBootPhase(int phase) { in onBootPhase() argument 45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
D | RttService.java | 436 public void onBootPhase(int phase) { in onBootPhase() argument 437 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/ |
D | SystemServiceManager.java | 123 public void startBootPhase(final int phase) { in startBootPhase() argument 124 if (phase <= mCurrentPhase) { in startBootPhase() 127 mCurrentPhase = phase; in startBootPhase()
|
D | SystemService.java | 126 public void onBootPhase(int phase) {} in onBootPhase() argument
|
D | DockObserver.java | 85 public void onBootPhase(int phase) { in onBootPhase() argument 86 if (phase == PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/av/media/libmediaplayerservice/ |
D | VideoFrameScheduler.h | 75 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
|
D | VideoFrameScheduler.cpp | 127 nsecs_t phase, nsecs_t period, size_t numSamplesToUse, in fit() argument 151 int64_t y = divRound(time - phase, period >> kPrecision); in fit()
|
/frameworks/base/docs/html/tools/ |
D | workflow.jd | 28 <p>During this phase you install and set up your development environment. You also create 36 <p>During this phase you set up and develop your Android project, which contains all of the 41 <p>During this phase you build your project into a debuggable <code>.apk</code> package that you 57 <p>During this phase you configure and build your application for release and distribute your
|
/frameworks/base/docs/html/tools/workflow/ |
D | index.jd | 28 <p>During this phase you install and set up your development environment. You also create 36 <p>During this phase you set up and develop your Android project, which contains all of the 41 <p>During this phase you build your project into a debuggable <code>.apk</code> package that you 57 <p>During this phase you configure and build your application for release and distribute your
|
/frameworks/base/services/usb/java/com/android/server/usb/ |
D | UsbService.java | 63 public void onBootPhase(int phase) { in onBootPhase() argument 64 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/job/ |
D | JobSchedulerService.java | 283 public void onBootPhase(int phase) { in onBootPhase() argument 284 if (PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase() 293 } else if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|