Home
last modified time | relevance | path

Searched refs:grandParent (Results 1 – 8 of 8) 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/room/compiler/src/main/kotlin/androidx/room/processor/
DProcessorErrors.kt305 fun droppedEmbeddedFieldIndex(fieldPath: String, grandParent: String): String { in droppedEmbeddedFieldIndex()
306 return "The index will be dropped when being merged into $grandParent" + in droppedEmbeddedFieldIndex()
307 "($fieldPath). You must re-declare it in $grandParent if you want to index this" + in droppedEmbeddedFieldIndex()
308 " field in $grandParent." in droppedEmbeddedFieldIndex()
311 fun droppedEmbeddedIndex(entityName: String, fieldPath: String, grandParent: String): String { in droppedEmbeddedIndex()
313 " $grandParent ($fieldPath). You can re-declare them in $grandParent." in droppedEmbeddedIndex()
DEntityProcessor.kt442 grandParent = element.qualifiedName.toString())) in <lambda>()
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
DRecyclerViewBasicTest.java470 ViewGroup grandParent = new FrameLayout(getContext()); in findNestedRecyclerView() local
471 assertEquals(null, RecyclerView.findNestedRecyclerView(grandParent)); in findNestedRecyclerView()
472 grandParent.addView(parent); in findNestedRecyclerView()
473 assertEquals(recyclerView, RecyclerView.findNestedRecyclerView(grandParent)); in findNestedRecyclerView()
481 ViewGroup grandParent = new FrameLayout(getContext()); in clearNestedRecyclerViewIfNotNested() local
482 grandParent.addView(parent); in clearNestedRecyclerViewIfNotNested()
497 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/support/room/compiler/src/test/kotlin/androidx/room/processor/
DEntityProcessorTest.kt570 val grandParent = JavaFileObjects.forSourceLines("foo.bar.Base", in <lambda>() constant
597 jfos = listOf(parent, grandParent)) { in <lambda>()
668 val grandParent = JavaFileObjects.forSourceLines("foo.bar.Base", in <lambda>() constant
692 """, baseClass = "foo.bar.Parent", jfos = listOf(parent, grandParent)) { in <lambda>()
753 grandParent = "foo.bar.MyEntity") in <lambda>()
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
DFieldReadWriteWriter.kt81 val grandParent = fieldParent.parent in <lambda>() constant
82 val grandParentNode = grandParent?.let { in <lambda>()
/frameworks/base/core/java/android/view/
DGhostView.java144 ViewGroup grandParent = (ViewGroup) parent.getParent(); in removeGhost() local
145 grandParent.removeView(parent); in removeGhost()