Home
last modified time | relevance | path

Searched refs:pd (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/wm/
DSystemWindows.java80 PerDisplay pd = mPerDisplay.get(displayId);
81 if (pd == null) {
84 pd.updateConfiguration(newConfig);
114 PerDisplay pd = mPerDisplay.get(displayId); in addView() local
115 if (pd == null) { in addView()
116 pd = new PerDisplay(displayId); in addView()
117 mPerDisplay.put(displayId, pd); in addView()
119 pd.addView(view, attrs, windowType); in addView()
164 PerDisplay pd = mPerDisplay.get(displayId); in addRoot() local
165 if (pd == null) { in addRoot()
[all …]
DDisplayImeController.java90 PerDisplay pd = new PerDisplay(displayId, in onDisplayAdded() local
93 mSystemWindows.mWmService.setDisplayWindowInsetsController(displayId, pd); in onDisplayAdded()
97 mImePerDisplay.put(displayId, pd); in onDisplayAdded()
102 PerDisplay pd = mImePerDisplay.get(displayId); in onDisplayConfigurationChanged() local
103 if (pd == null) { in onDisplayConfigurationChanged()
107 != pd.mRotation && isImeShowing(displayId)) { in onDisplayConfigurationChanged()
108 pd.startAnimation(true, false /* forceRestart */); in onDisplayConfigurationChanged()
123 PerDisplay pd = mImePerDisplay.get(displayId); in isImeShowing() local
124 if (pd == null) { in isImeShowing()
127 final InsetsSource imeSource = pd.mInsetsState.getSource(InsetsState.ITYPE_IME); in isImeShowing()
[all …]
/frameworks/base/services/core/java/com/android/server/power/
DShutdownThread.java263 ProgressDialog pd = new ProgressDialog(context); in showShutdownDialog() local
293 pd.setTitle(context.getText(com.android.internal.R.string.reboot_to_update_title)); in showShutdownDialog()
295 pd.setMax(100); in showShutdownDialog()
296 pd.setProgress(0); in showShutdownDialog()
297 pd.setIndeterminate(false); in showShutdownDialog()
298 pd.setProgressNumberFormat(null); in showShutdownDialog()
299 pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); in showShutdownDialog()
300 pd.setMessage(context.getText( in showShutdownDialog()
306 pd.setIndeterminate(true); in showShutdownDialog()
307 pd.setMessage(context.getText( in showShutdownDialog()
[all …]
/frameworks/native/opengl/tests/angeles/
Ddemo.c243 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/
DC2ParamInternal.h65 inline static uint32_t GetAttrib(const C2ParamDescriptor &pd) { in GetAttrib()
66 return pd._mAttrib; in GetAttrib()
/frameworks/av/media/codec2/tests/
DC2SampleComponent_test.cpp380 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()
DC2ComponentInterface_test.cpp523 for (const auto &pd : sParams) { in isSupportedParam() local
524 if (param.type() == pd->index().type()) { in isSupportedParam()