HomeSort by relevance Sort by last modified time
    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.h 67 virtual bool CanGoToOffset(int offset) const OVERRIDE;
navigation_controller_impl_unittest.cc 299 EXPECT_FALSE(controller.CanGoToOffset(1));
306 EXPECT_TRUE(controller.CanGoToOffset(-i));
307 EXPECT_FALSE(controller.CanGoToOffset(-(i + 1)));
308 EXPECT_FALSE(controller.CanGoToOffset(1));
342 EXPECT_TRUE(controller.CanGoToOffset(j - url_index));
344 EXPECT_FALSE(controller.CanGoToOffset(-(url_index + 1)));
345 EXPECT_FALSE(controller.CanGoToOffset(urls.size() - url_index));
    [all...]
navigation_controller_impl.cc 526 bool NavigationControllerImpl::CanGoToOffset(int offset) const {
604 if (!CanGoToOffset(offset))
    [all...]
  /external/chromium_org/content/public/browser/
navigation_controller.h 316 virtual bool CanGoToOffset(int offset) const = 0;

Completed in 61 milliseconds