OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:realWindow
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPhoneWindowFor22.java
17
directlyOn(
realWindow
,
realWindow
.getClass().getName(), "setTitle", ReflectionHelpers.ClassParameter.from(CharSequence.class, title));
23
directlyOn(
realWindow
,
realWindow
.getClass().getName(), "setBackgroundDrawable", ReflectionHelpers.ClassParameter.from(Drawable.class, drawable));
ShadowWindow.java
20
private @RealObject Window
realWindow
;
39
directlyOn(
realWindow
, Window.class, "setFlags", ClassParameter.from(int.class, flags), ClassParameter.from(int.class, mask));
45
directlyOn(
realWindow
, Window.class, "setSoftInputMode", ClassParameter.from(int.class, softInputMode));
65
return (ProgressBar) directlyOn(
realWindow
,
realWindow
.getClass().getName(), "getHorizontalProgressBar", ClassParameter.from(boolean.class, false));
69
return (ProgressBar) directlyOn(
realWindow
,
realWindow
.getClass().getName(), "getCircularProgressBar", ClassParameter.from(boolean.class, false));
ShadowPhoneWindow.java
16
protected @RealObject Window
realWindow
;
21
directlyOn(
realWindow
,
realWindow
.getClass().getName(), "setTitle", ClassParameter.from(CharSequence.class, title));
27
directlyOn(
realWindow
,
realWindow
.getClass().getName(), "setBackgroundDrawable", ClassParameter.from(Drawable.class, drawable));
Completed in 984 milliseconds