Home
last modified time | relevance | path

Searched refs:grandParent (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DZOrderingActivity.java15 ViewGroup grandParent = findViewById(R.id.parent); in onCreate() local
16 if (grandParent == null) throw new IllegalStateException(); in onCreate()
21 for (int i = 0; i < grandParent.getChildCount(); i++) { in onCreate()
22 ViewGroup parent = (ViewGroup) grandParent.getChildAt(i); in onCreate()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DRecyclerViewBasicTest.java429 ViewGroup grandParent = new FrameLayout(getContext()); in findNestedRecyclerView() local
430 assertEquals(null, RecyclerView.findNestedRecyclerView(grandParent)); in findNestedRecyclerView()
431 grandParent.addView(parent); in findNestedRecyclerView()
432 assertEquals(recyclerView, RecyclerView.findNestedRecyclerView(grandParent)); in findNestedRecyclerView()
440 ViewGroup grandParent = new FrameLayout(getContext()); in clearNestedRecyclerViewIfNotNested() local
441 grandParent.addView(parent); in clearNestedRecyclerViewIfNotNested()
456 holder = new RecyclerView.ViewHolder(grandParent) {}; in clearNestedRecyclerViewIfNotNested()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
DLayoutFileParser.java217 final ParserRuleContext grandParent = myParentContent.getParent(); in parseExpressions() local
218 Preconditions.check(grandParent instanceof XMLParser.ElementContext, in parseExpressions()
220 grandParent.getClass().getCanonicalName()); in parseExpressions()
222 tag = nodeTagMap.get(grandParent); in parseExpressions()
/frameworks/base/core/java/android/view/
DGhostView.java144 ViewGroup grandParent = (ViewGroup) parent.getParent(); in removeGhost() local
145 grandParent.removeView(parent); in removeGhost()