Searched refs:parentView (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java118 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index, argument
120 if (parentView instanceof ViewGroup == false) {
121 throw new IllegalArgumentException("parentView is not a ViewGroup");
128 mLastResult = mSession.insertChild((ViewGroup) parentView, childXml, index,
141 public Result moveChild(Object parentView, Object childView, int index, argument
143 if (parentView instanceof ViewGroup == false) {
144 throw new IllegalArgumentException("parentView is not a ViewGroup");
154 mLastResult = mSession.moveChild((ViewGroup) parentView, (View) childView, index,
H A DBridge.java406 ViewParent parentView = view.getParent();
408 if (parentView instanceof ViewGroup) {
409 Status.SUCCESS.createResult(((ViewGroup) parentView).indexOfChild(view));
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DManualActivity.java170 public void onItemSelected(AdapterView<?> parentView, View selectedItem,
177 public void onNothingSelected(AdapterView<?> parentView) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DSmartCamera.java169 public void onItemSelected(AdapterView<?> parentView, View selectedItemView,
183 public void onNothingSelected(AdapterView<?> parentView) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java698 public Result insertChild(final ViewGroup parentView, ILayoutPullParser childXml, argument
709 // get added. We do pass the parentView however to ensure that the layoutParams will
711 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
721 parentView.setLayoutTransition(new LayoutTransition());
722 return addView(parentView, child, index);
727 parentView.setLayoutTransition(null);
735 // add it to the parentView in the correct location
736 Result result = addView(parentView, child, index);
934 // add it to the parentView in the correct location
953 // add it to the parentView i
[all...]
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java745 View parentView = (View) parent;
746 AccessibilityNodeInfo info = parentView.createAccessibilityNodeInfo();
H A DView.java4681 View parentView = (View) parent;
4683 position.offset(-parentView.getScrollX(), -parentView.getScrollY());
4685 child = parentView;
5210 View parentView = (View) parent;
5212 position.offset(-parentView.mScrollX, -parentView.mScrollY);
5214 if (!parentView.hasIdentityMatrix()) {
5215 parentView.getMatrix().mapRect(position);
5218 position.offset(parentView
[all...]

Completed in 629 milliseconds