/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ |
H A D | SysuiTestableContext.java | 24 private ArrayMap<Class<?>, Object> mComponents; field in class:SysuiTestableContext 35 if (mComponents == null) mComponents = new ArrayMap<>(); 36 return mComponents; 41 return (T) (mComponents != null ? mComponents.get(interfaceType) : null); 45 if (mComponents == null) mComponents = new ArrayMap<>(); 46 mComponents.put(interfaceType, component);
|
H A D | ScreenDecorationsTest.java | 93 mScreenDecorations.mComponents = mContext.getComponents();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | SystemUI.java | 30 public Map<Class<?>, Object> mComponents; field in class:SystemUI 45 return (T) (mComponents != null ? mComponents.get(interfaceType) : null); 49 if (mComponents != null) { 50 mComponents.put(interfaceType, component);
|
H A D | SystemBars.java | 70 mStatusBar.mComponents = mComponents;
|
H A D | SystemUIApplication.java | 59 private final Map<Class<?>, Object> mComponents = new HashMap<>(); field in class:SystemUIApplication 183 mServices[i].mComponents = mComponents; 246 return (T) mComponents.get(interfaceType);
|
H A D | Dependency.java | 403 d.mComponents = new HashMap<>();
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | Color.java | 309 private final float[] mComponents; field in class:Color 327 mComponents = new float[] { 0.0f, 0.0f, 0.0f, 1.0f }; 355 mComponents = new float[] { r, g, b, a }; 366 mComponents = components; 438 return pack(mComponents[0], mComponents[1], mComponents[2], mComponents[3], mColorSpace); 454 mComponents[0], mComponents[ [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | ImageShader.java | 84 private int mComponents; field in class:ImageShader.VertexAttribute 100 mComponents = components; 116 mComponents = components; 124 switch (mComponents) { 148 mComponents, 156 mComponents,
|
/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageManagerShellCommand.java | 128 boolean mComponents; field in class:PackageManagerShellCommand 727 mComponents = false; 738 mComponents = true; 791 printResolveInfo(pr, "", ri, mBrief, mComponents); 813 if (!mComponents) { 818 printResolveInfo(pr, " ", result.get(i), mBrief, mComponents); 823 printResolveInfo(pr, "", result.get(i), mBrief, mComponents); 847 if (!mComponents) { 852 printResolveInfo(pr, " ", result.get(i), mBrief, mComponents); 857 printResolveInfo(pr, "", result.get(i), mBrief, mComponents); [all...] |
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/ |
H A D | PowerUITest.java | 468 mPowerUI.mComponents = mContext.getComponents();
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarTest.java | 218 mStatusBar.mComponents = mContext.getComponents();
|