/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.readOnlyNI(), advance, phase, in PathDashPathEffect() 49 float phase, int native_style); in nativeCreate() argument
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | RefocusFilter.java | 31 public void logTiming(String implementation, String phase, long time) { in logTiming() argument 32 logTiming(implementation, phase, time, "ns"); in logTiming() 35 public void logTiming(String implementation, String phase, long time, String unit) { in logTiming() argument 36 timings.add(Pair.create(phase + " (" + unit + ")", Long.valueOf(time))); in logTiming() 37 Log.d(implementation, phase + ":" + time + " " + unit); in logTiming()
|
/frameworks/av/media/libaaudio/src/flowgraph/resampler/ |
D | MultiChannelResampler.cpp | 136 double phase = 0.0; // ranges from 0.0 to 1.0, fraction between samples in generateCoefficients() local 145 float tapPhase = phase - numTapsHalf; in generateCoefficients() 161 phase += phaseIncrement; in generateCoefficients() 162 while (phase >= 1.0) { in generateCoefficients() 163 phase -= 1.0; in generateCoefficients()
|
D | LinearResampler.cpp | 35 float phase = (float) getIntegerPhase() / mDenominator; in readFrame() local 40 *frame++ = f0 + (phase * (f1 - f0)); in readFrame()
|
/frameworks/av/media/libaudioprocessing/ |
D | AudioResamplerFirProcess.h | 377 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument 389 uint32_t indexP = phase >> coefShift; in fir() 390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir() 402 uint32_t indexP = phase >> coefShift; in fir() 403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir() 423 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir() 428 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir() 429 >> ((sizeof(phase)-sizeof(*coefs))*8 + 1); in fir()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DesktopModeLaunchParamsModifier.java | 58 @Nullable ActivityOptions options, @Nullable ActivityStarter.Request request, int phase, in onCalculate() argument 63 int result = calculate(task, layout, activity, source, options, request, phase, in onCalculate() 71 @Nullable ActivityOptions options, @Nullable ActivityStarter.Request request, int phase, in calculate() argument 79 if (phase != PHASE_BOUNDS) { in calculate()
|
D | LaunchParamsController.java | 85 ActivityOptions options, @Nullable Request request, int phase, LaunchParams result) { in calculate() argument 100 switch(modifier.onCalculate(task, layout, activity, source, options, request, phase, in calculate() 318 @Phase int phase, LaunchParams currentParams, LaunchParams outParams); in onCalculate() argument
|
/frameworks/base/libs/hwui/jni/ |
D | PathEffect.cpp | 35 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument 43 SkPathEffect* effect = SkDashPathEffect::Make(intervals, count, phase).release(); in Dash_constructor() 48 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument 51 SkPathEffect* effect = SkPath1DPathEffect::Make(*shape, advance, phase, in OneD_constructor()
|
/frameworks/base/services/core/java/com/android/server/os/ |
D | NativeTombstoneManagerService.java | 45 public void onBootPhase(int phase) { in onBootPhase() argument 46 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | RippleShader.java | 158 public void setNoisePhase(float phase) { in setNoisePhase() argument 159 setFloatUniform("in_noisePhase", phase * 0.001f); in setNoisePhase() 164 final float turbulencePhase = phase; in setNoisePhase()
|
/frameworks/base/services/core/java/com/android/server/tv/ |
D | TvRemoteService.java | 60 public void onBootPhase(int phase) { in onBootPhase() argument 62 if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/rollback/ |
D | RollbackManagerService.java | 53 public void onBootPhase(int phase) { in onBootPhase() argument 54 if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/ |
D | ContextHubSystemService.java | 47 public void onBootPhase(int phase) { in onBootPhase() argument 48 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
D | SensorNotificationService.java | 70 public void onBootPhase(int phase) { in onBootPhase() argument 71 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase() 82 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()
|
D | CachedDeviceStateService.java | 70 public void onBootPhase(int phase) { in onBootPhase() argument 71 if (SystemService.PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetService.java | 46 public void onBootPhase(int phase) { in onBootPhase() argument 47 if (phase == PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioCapability.java | 132 public RadioCapability(int phoneId, int session, int phase, in RadioCapability() argument 137 mPhase = phase; in RadioCapability()
|
/frameworks/base/tools/aapt2/ |
D | formats.md | 6 The APC format (AAPT2 Container Format) is generated by AAPT2 during the compile phase and 7 consumed by the AAPT2 link phase. It is a simple container format for storing compiled PNGs, 9 meta-data from the compile phase.
|
/frameworks/base/tests/RollbackTest/NetworkStagedRollbackTest/src/com/android/tests/rollback/host/ |
D | NetworkStagedRollbackTest.java | 45 private void runPhase(String phase) throws Exception { in runPhase() argument 48 phase)); in runPhase()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_angle_platform.cpp | 70 PlatformMethods* /**platform*/, char phase, const unsigned char* /*category_group_enabled*/, in addTraceEvent() argument 74 switch (phase) { in addTraceEvent()
|
/frameworks/opt/car/services/builtInServices/src/com/android/server/wm/ |
D | CalculateParams.java | 50 ActivityOptions options, ActivityStarter.Request request, int phase, in create() argument 61 params.mPhase = phase; in create()
|
/frameworks/base/tests/RollbackTest/MultiUserRollbackTest/src/com/android/tests/rollback/host/ |
D | MultiUserRollbackTest.java | 112 private void runPhaseForUsers(String phase, int... userIds) throws Exception { in runPhaseForUsers() argument 117 phase, userId, timeout)); in runPhaseForUsers() local
|
/frameworks/base/services/core/java/com/android/server/wallpaper/ |
D | IWallpaperManagerService.java | 29 void onBootPhase(int phase); in onBootPhase() argument
|
/frameworks/base/services/core/java/com/android/server/sensors/ |
D | SensorService.java | 76 public void onBootPhase(int phase) { in onBootPhase() argument 77 if (phase == SystemService.PHASE_WAIT_FOR_SENSOR_SERVICE) { in onBootPhase()
|