OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InspectionCompanion
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/view/src/android/view/inspector/cts/
StaticInspectionCompanionProviderTest.java
26
import android.view.inspector.
InspectionCompanion
;
54
InspectionCompanion
<View> companion = mProvider.provide(View.class);
56
assertEquals("android.view.View$
InspectionCompanion
", companion.getClass().getName());
61
InspectionCompanion
<RelativeLayout.LayoutParams> companion =
65
"android.widget.RelativeLayout$LayoutParams$
InspectionCompanion
",
70
public static final class
InspectionCompanion
71
implements android.view.inspector.
InspectionCompanion
<NestedClassTest> {
86
InspectionCompanion
<NestedClassTest> companion = mProvider.provide(NestedClassTest.class);
88
assertTrue(companion instanceof NestedClassTest.
InspectionCompanion
);
92
public static final class
InspectionCompanion
{
[
all
...]
/cts/tests/tests/tools/processors/view_inspector/src/android/processor/view/inspector/cts/
PlatformInspectableProcessorTest.java
31
import android.view.inspector.
InspectionCompanion
;
111
@Test(expected =
InspectionCompanion
.UninitializedPropertyMapException.class)
446
InspectionCompanion
<IntEnumTest> companion = loadCompanion(IntEnumTest.class);
482
InspectionCompanion
<IntFlagTest> companion = loadCompanion(IntFlagTest.class);
791
InspectionCompanion
<T> companion = loadCompanion((Class<T>) node.getClass());
797
private <T>
InspectionCompanion
<T> loadCompanion(Class<T> cls) {
799
final String companionName = String.format("%s$
InspectionCompanion
", cls.getName());
802
final Class<
InspectionCompanion
<T>> companion =
803
(Class<
InspectionCompanion
<T>>) classLoader.loadClass(companionName);
Completed in 61 milliseconds