HomeSort by relevance Sort by last modified time
    Searched refs:mChild (Results 1 - 18 of 18) sorted by null

  /packages/apps/Camera2/src/com/android/camera/ui/
RotateLayout.java 34 protected View mChild;
47 mChild = getChildAt(0);
48 mChild.setPivotX(0);
49 mChild.setPivotY(0);
60 mChild.layout(0, 0, width, height);
64 mChild.layout(0, 0, height, width);
75 measureChild(mChild, widthSpec, heightSpec);
76 w = mChild.getMeasuredWidth();
77 h = mChild.getMeasuredHeight();
81 measureChild(mChild, heightSpec, widthSpec)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateLayout.java 29 private View mChild;
42 mChild = getChildAt(0);
43 mChild.setPivotX(0);
44 mChild.setPivotY(0);
55 mChild.layout(0, 0, width, height);
59 mChild.layout(0, 0, height, width);
70 measureChild(mChild, widthSpec, heightSpec);
71 w = mChild.getMeasuredWidth();
72 h = mChild.getMeasuredHeight();
76 measureChild(mChild, heightSpec, widthSpec)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
ViewInvalidateTest.java 63 mChild = new View(getContext());
68 mParent.addView(mChild);
72 validateInvalFlags(mChild, View.PFLAG_INVALIDATED);
80 mChild = null;
92 private View mChild;
119 validateInvalFlags(mChild,
127 mChild.invalidate();
130 validateInvalFlags(mChild,
145 validateInvalFlags(mChild,
149 mChild.invalidate(/*don't invalidate cache*/ false)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
FillInWrapTest.java 27 private View mChild;
39 mChild = activity.findViewById(R.id.data);
45 assertNotNull(mChild);
52 mChild.getMeasuredHeight() < mContainer.getMeasuredHeight());
LinearLayoutEditTextsTest.java 28 private View mChild;
40 mChild = activity.findViewById(R.id.editText1);
46 assertNotNull(mChild);
52 final int childHeight = mChild.getHeight();
WeightSumTest.java 28 private View mChild;
40 mChild = activity.findViewById(R.id.child);
46 assertNotNull(mChild);
52 final int childWidth = mChild.getWidth();
WeightTest.java 31 private View mChild;
43 mChild = activity.findViewById(R.id.child4);
49 assertNotNull(mChild);
55 ViewAsserts.assertRightAligned(mChild, mContainer);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 47 private View mChild;
95 if (mChild != null) {
96 mChild.setBackground(mBackground);
102 if (mChild != null) {
103 MarginLayoutParams params = (MarginLayoutParams) mChild.getLayoutParams();
111 mChild.setLayoutParams(params);
122 if (mChild == null) {
124 mChild = getChildAt(0);
125 mChild.setBackground(mBackground);
127 mOldHeight = mChild.getMeasuredHeight()
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DelayedDiscovery.java 36 private final Discovery mChild;
50 mChild = wrapped;
83 mChild.start(mChildListener);
89 mChild.start(mChildListener);
99 mChild.stop(mChildListener);
105 return Collections.singleton(mChild);
  /frameworks/support/compat/src/androidTest/java/androidx/core/widget/
NestedScrollViewNestedScrollingParentTest.java 63 private View mChild;
73 mChild = new View(mActivityTestRule.getActivity());
108 mNestedScrollView.onNestedScrollAccepted(mChild, mChild,
129 mChild,
130 mChild,
160 mChild,
161 mChild,
192 mChild,
193 mChild,
    [all...]
NestedScrollViewTest.java 54 private View mChild;
114 assertThat(mChild.getMeasuredHeight(), is(50));
125 assertThat(mChild.getMeasuredHeight(), is(60));
136 assertThat(mChild.getMeasuredHeight(), is(100));
357 mChild = new View(mActivityTestRule.getActivity());
358 mChild.setMinimumWidth(100);
359 mChild.setMinimumHeight(childHeight);
360 mChild.setBackgroundDrawable(
366 mNestedScrollView.addView(mChild);
374 mChild.setLayoutParams(childLayoutParams)
    [all...]
  /packages/services/Car/procfs-inspector/server/
directory.h 36 const std::string& getChild() { return mChild; }
49 std::string mChild;
directory.cpp 29 return mParent.empty() && mChild.empty();
33 mParent(parent), mChild(child) {
42 return mParent + mChild;
  /frameworks/base/services/core/java/com/android/server/firewall/
NotFilter.java 28 private final Filter mChild;
31 mChild = child;
37 return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
  /frameworks/native/services/surfaceflinger/tests/fakehwc/
SFFakeHwc_test.cpp     [all...]
  /frameworks/base/apct-tests/perftests/core/src/android/view/
ViewShowHidePerfTest.java 132 private final View mChild;
135 mChild = subTreeFactory.create(getContext(), depth);
153 callback.run(state, width, height, parent, mChild);
  /frameworks/native/services/surfaceflinger/tests/
Transaction_test.cpp     [all...]
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentManager.java     [all...]

Completed in 310 milliseconds