/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/draganddrop/ |
D | DragAndDropController.java | 264 final PerDisplay pd = mDisplayDropTargets.get(displayId); in onDisplayConfigurationChanged() local 265 if (pd == null) { in onDisplayConfigurationChanged() 268 pd.rootView.requestApplyInsets(); in onDisplayConfigurationChanged() 274 final PerDisplay pd = mDisplayDropTargets.get(displayId); in onDisplayRemoved() local 275 if (pd == null) { in onDisplayRemoved() 278 pd.context.unregisterComponentCallbacks(this); in onDisplayRemoved() 279 pd.wm.removeViewImmediate(pd.rootView); in onDisplayRemoved() 290 final PerDisplay pd = mDisplayDropTargets.get(displayId); in onDrag() local 293 if (pd == null) { in onDrag() 299 pd.isHandlingDrag = DragUtils.canHandleDrag(event); in onDrag() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/ |
D | SystemWindows.java | 79 PerDisplay pd = mPerDisplay.get(displayId); 80 if (pd == null) { 83 pd.updateConfiguration(newConfig); 110 PerDisplay pd = mPerDisplay.get(displayId); in addView() local 111 if (pd == null) { in addView() 112 pd = new PerDisplay(displayId); in addView() 113 mPerDisplay.put(displayId, pd); in addView() 115 pd.addView(view, attrs, shellRootLayer); in addView() 144 PerDisplay pd = mPerDisplay.get(displayId); in setShellRootAccessibilityWindow() local 145 if (pd == null) { in setShellRootAccessibilityWindow() [all …]
|
D | DisplayInsetsController.java | 96 PerDisplay pd = new PerDisplay(displayId); in onDisplayAdded() local 97 pd.register(); in onDisplayAdded() 98 mInsetsPerDisplay.put(displayId, pd); in onDisplayAdded() 103 PerDisplay pd = mInsetsPerDisplay.get(displayId); in onDisplayRemoved() local 104 if (pd == null) { in onDisplayRemoved() 107 pd.unregister(); in onDisplayRemoved()
|
D | DisplayImeController.java | 112 PerDisplay pd = new PerDisplay(displayId, in onDisplayAdded() local 114 pd.register(); in onDisplayAdded() 115 mImePerDisplay.put(displayId, pd); in onDisplayAdded() 120 PerDisplay pd = mImePerDisplay.get(displayId); in onDisplayConfigurationChanged() local 121 if (pd == null) { in onDisplayConfigurationChanged() 125 != pd.mRotation && isImeShowing(displayId)) { in onDisplayConfigurationChanged() 126 pd.startAnimation(true, false /* forceRestart */, in onDisplayConfigurationChanged() 133 PerDisplay pd = mImePerDisplay.get(displayId); in onDisplayRemoved() local 134 if (pd == null) { in onDisplayRemoved() 137 pd.unregister(); in onDisplayRemoved() [all …]
|
/frameworks/base/services/core/java/com/android/server/power/ |
D | ShutdownThread.java | 288 ProgressDialog pd = new ProgressDialog(context); in showShutdownDialog() local 318 pd.setTitle(context.getText(com.android.internal.R.string.reboot_to_update_title)); in showShutdownDialog() 320 pd.setMax(100); in showShutdownDialog() 321 pd.setProgress(0); in showShutdownDialog() 322 pd.setIndeterminate(false); in showShutdownDialog() 326 pd.setProgressPercentFormat(null); in showShutdownDialog() 328 pd.setProgressNumberFormat(null); in showShutdownDialog() 329 pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); in showShutdownDialog() 330 pd.setMessage(context.getText( in showShutdownDialog() 336 pd.setIndeterminate(true); in showShutdownDialog() [all …]
|
/frameworks/native/services/powermanager/include/android/ |
D | ParcelDuration.h | 36 bool operator==(const ParcelDuration& pd) const { 37 return mSeconds == pd.mSeconds && mNanos == pd.mNanos;
|
/frameworks/native/opengl/tests/angeles/ |
D | demo.c | 243 VECTOR3 pa, pb, pc, pd; in createSuperShape() local 252 superShapeMap(&pd, r0, r3, t1, p2); in createSuperShape() 259 vector3Sub(&v2, &pd, &pa); in createSuperShape() 317 result->vertexArray[currentVertex * 3] = FIXED(pd.x); in createSuperShape() 318 result->vertexArray[currentVertex * 3 + 1] = FIXED(pd.y); in createSuperShape() 319 result->vertexArray[currentVertex * 3 + 2] = FIXED(pd.z); in createSuperShape() 329 result->vertexArray[currentVertex * 3] = FIXED(pd.x); in createSuperShape() 330 result->vertexArray[currentVertex * 3 + 1] = FIXED(pd.y); in createSuperShape() 331 result->vertexArray[currentVertex * 3 + 2] = FIXED(pd.z); in createSuperShape()
|
/frameworks/av/media/codec2/vndk/internal/ |
D | C2ParamInternal.h | 65 inline static uint32_t GetAttrib(const C2ParamDescriptor &pd) { in GetAttrib() 66 return pd._mAttrib; in GetAttrib()
|
/frameworks/av/media/codec2/tests/ |
D | C2SampleComponent_test.cpp | 380 void dumpDesc(const C2ParamDescriptor &pd) { in dumpDesc() argument 382 if (pd.isRequired()) { in dumpDesc() 385 if (pd.isPersistent()) { in dumpDesc() 389 dumpType(C2Param::Type(pd.index().type())); in dumpDesc() 390 cout << " " << pd.name() << ";" << endl; in dumpDesc()
|
D | C2ComponentInterface_test.cpp | 523 for (const auto &pd : sParams) { in isSupportedParam() local 524 if (param.type() == pd->index().type()) { in isSupportedParam()
|