OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:canGoBack
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowWebView.java
54
private boolean
canGoBack
;
62
// use when
canGoBack
or goBack is called.
293
protected boolean
canGoBack
() {
294
// TODO: Remove the
canGoBack
check when setCanGoBack is deleted.
296
return
canGoBack
;
303
if (
canGoBack
()) {
352
* Sets the value to return from {@code android.webkit.WebView#
canGoBack
()}
354
* @param
canGoBack
Value to return from {@code android.webkit.WebView#
canGoBack
()}
359
public void setCanGoBack(boolean
canGoBack
) {
[
all
...]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowWebViewTest.java
110
public void
canGoBack
() throws Exception {
112
assertThat(webView.
canGoBack
()).isFalse();
115
assertThat(webView.
canGoBack
()).isTrue();
117
assertThat(webView.
canGoBack
()).isFalse();
259
assertThat(newWebView.
canGoBack
()).isTrue();
/cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java
[
all
...]
Completed in 331 milliseconds