OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:parentView
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/assist/src/android/assist/cts/
AssistTestBase.java
389
private void traverseViewAndStructure(View
parentView
, ViewNode parentNode,
393
if (
parentView
== null && parentNode == null) {
396
} else if (parentNode == null ||
parentView
== null) {
397
fail(String.format("Views don't match. View: %s, Node: %s",
parentView
, parentNode));
401
Log.i(TAG, "
parentView
is of type: " +
parentView
.getClass().getName());
402
if (
parentView
instanceof ViewGroup) {
403
for (int childInt = 0; childInt < ((ViewGroup)
parentView
).getChildCount();
407
+ ((ViewGroup)
parentView
).getChildAt(childInt).getClass().getName());
411
if (
parentView
.getId() > 0)
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
PermissionLockdownTestActivity.java
130
ViewGroup
parentView
= (ViewGroup) findViewById(R.id.permission_lockdown_activity);
132
parentView
.addView(
133
getLayoutInflater().inflate(R.layout.pass_fail_buttons,
parentView
, false));
146
parentView
.addView(finishButton);
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
ViewFadingEdgeTests.java
75
private FadingView attachFadingView(View
parentView
) {
76
final FadingView child = new FadingView(
parentView
.getContext());
81
FrameLayout root = (FrameLayout)
parentView
.findViewById(R.id.frame_layout);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowLayoutInflaterTest.java
446
ViewGroup
parentView
= inflate(R.layout.included_layout_parent);
447
assertEquals(1,
parentView
.getChildCount());
Completed in 544 milliseconds