Home
last modified time | relevance | path

Searched refs:phase (Results 1 – 25 of 131) sorted by relevance

123456

/frameworks/layoutlib/bridge/src/android/graphics/
DDashPathEffect_Delegate.java76 /*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()
/frameworks/base/graphics/java/android/graphics/
DDashPathEffect.java34 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
DPathDashPathEffect.java42 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/
DRefocusFilter.java31 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/libaudioprocessing/
DAudioResamplerFirProcess.h377 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/
DBluetoothService.java48 public void onBootPhase(int phase) { in onBootPhase() argument
49 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
52 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY && in onBootPhase()
DContextHubSystemService.java47 public void onBootPhase(int phase) { in onBootPhase() argument
48 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
DSensorNotificationService.java70 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()
DCachedDeviceStateService.java70 public void onBootPhase(int phase) { in onBootPhase() argument
71 if (SystemService.PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase()
DSystemServiceManager.java220 public void startBootPhase(@NonNull TimingsTraceAndSlog t, int phase) { in startBootPhase() argument
221 if (phase <= mCurrentPhase) { in startBootPhase()
224 mCurrentPhase = phase; in startBootPhase()
228 t.traceBegin("OnBootPhase_" + phase); in startBootPhase()
233 t.traceBegin("OnBootPhase_" + phase + "_" + service.getClass().getName()); in startBootPhase()
249 if (phase == SystemService.PHASE_BOOT_COMPLETED) { in startBootPhase()
/frameworks/base/libs/hwui/jni/
DPathEffect.cpp35 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/
DNativeTombstoneManagerService.java45 public void onBootPhase(int phase) { in onBootPhase() argument
46 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetService.java40 public void onBootPhase(int phase) { in onBootPhase() argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/base/services/core/java/com/android/server/tv/
DTvRemoteService.java60 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/
DRollbackManagerService.java53 public void onBootPhase(int phase) { in onBootPhase() argument
54 if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
/frameworks/base/graphics/java/android/graphics/drawable/
DRippleShader.java159 public void setNoisePhase(float phase) { in setNoisePhase() argument
160 setUniform("in_noisePhase", phase * 0.001f); in setNoisePhase()
165 final float turbulencePhase = phase; in setNoisePhase()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetService.java46 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/
DRadioCapability.java132 public RadioCapability(int phoneId, int session, int phase, in RadioCapability() argument
137 mPhase = phase; in RadioCapability()
/frameworks/base/tools/aapt2/
Dformats.md6 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/
DNetworkStagedRollbackTest.java45 private void runPhase(String phase) throws Exception { in runPhase() argument
48 phase)); in runPhase()
/frameworks/native/opengl/libs/EGL/
Degl_angle_platform.cpp70 PlatformMethods* /**platform*/, char phase, const unsigned char* /*category_group_enabled*/, in addTraceEvent() argument
74 switch (phase) { in addTraceEvent()
/frameworks/base/services/core/java/com/android/server/display/
DLogicalDisplayMapper.java581 private void resetLayoutLocked(int fromState, int toState, @DisplayPhase int phase) { in resetLayoutLocked() argument
625 setDisplayPhase(logicalDisplay, phase); in resetLayoutLocked()
626 if (phase == LogicalDisplay.DISPLAY_PHASE_LAYOUT_TRANSITION) { in resetLayoutLocked()
699 private void setDisplayPhase(LogicalDisplay display, @DisplayPhase int phase) { in setDisplayPhase() argument
705 if (phase != LogicalDisplay.DISPLAY_PHASE_DISABLED && disallowSecondaryDisplay) { in setDisplayPhase()
708 phase = LogicalDisplay.DISPLAY_PHASE_DISABLED; in setDisplayPhase()
711 display.setPhase(phase); in setDisplayPhase()
/frameworks/base/tests/RollbackTest/MultiUserRollbackTest/src/com/android/tests/rollback/host/
DMultiUserRollbackTest.java112 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/
DIWallpaperManagerService.java29 void onBootPhase(int phase); in onBootPhase() argument
/frameworks/base/services/core/java/com/android/server/wm/
DLaunchParamsController.java81 ActivityOptions options, @Nullable Request request, int phase, LaunchParams result) { in calculate() argument
96 switch(modifier.onCalculate(task, layout, activity, source, options, request, phase, in calculate()
328 @Phase int phase, LaunchParams currentParams, LaunchParams outParams); in onCalculate() argument

123456