OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanGoToOffset
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/content/browser/frame_host/
navigation_controller_android.cc
47
jboolean NavigationControllerAndroid::
CanGoToOffset
(JNIEnv* env,
50
return navigation_controller_->
CanGoToOffset
(offset);
navigation_controller_android.h
38
jboolean
CanGoToOffset
(JNIEnv* env, jobject obj, jint offset);
navigation_controller_impl_unittest.cc
285
EXPECT_FALSE(controller.
CanGoToOffset
(1));
292
EXPECT_TRUE(controller.
CanGoToOffset
(-i));
293
EXPECT_FALSE(controller.
CanGoToOffset
(-(i + 1)));
294
EXPECT_FALSE(controller.
CanGoToOffset
(1));
328
EXPECT_TRUE(controller.
CanGoToOffset
(j - url_index));
330
EXPECT_FALSE(controller.
CanGoToOffset
(-(url_index + 1)));
331
EXPECT_FALSE(controller.
CanGoToOffset
(urls.size() - url_index));
[
all
...]
navigation_controller_impl.h
67
virtual bool
CanGoToOffset
(int offset) const OVERRIDE;
navigation_controller_impl.cc
525
bool NavigationControllerImpl::
CanGoToOffset
(int offset) const {
603
if (!
CanGoToOffset
(offset))
[
all
...]
/external/chromium_org/content/public/browser/
navigation_controller.h
321
virtual bool
CanGoToOffset
(int offset) const = 0;
Completed in 184 milliseconds