HomeSort by relevance Sort by last modified time
    Searched defs:navigation (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/chrome/browser/sessions/
session_types_unittest.cc 54 sync_pb::TabNavigation* navigation = sync_data.add_navigation(); local
55 navigation->set_virtual_url("http://foo/" + base::IntToString(i));
56 navigation->set_referrer("referrer");
57 navigation->set_title("title");
58 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
122 sync_data.navigation(i).virtual_url());
124 sync_data.navigation(i).title());
persistent_tab_restore_service_unittest.cc 645 SerializedNavigationEntry navigation = local
651 tab->navigations.push_back(navigation);
667 SerializedNavigationEntry navigation = local
671 tab->navigations.push_back(navigation);
682 navigation = SerializedNavigationEntryTestHelper::CreateNavigation(
686 tab->navigations.push_back(navigation);
701 tab->navigations.push_back(navigation);
716 tab->navigations.push_back(navigation);
717 tab->navigations.push_back(navigation);
session_service.cc 460 const SerializedNavigationEntry& navigation) {
461 if (!ShouldTrackEntry(navigation.virtual_url()) ||
469 range.first = std::min(navigation.index(), range.first);
470 range.second = std::max(navigation.index(), range.second);
473 tab_id.id(), navigation));
652 const SerializedNavigationEntry navigation = local
657 navigation);
675 const SerializedNavigationEntry navigation = local
683 navigation);
1170 SerializedNavigationEntry navigation; local
1347 const SerializedNavigationEntry navigation = local
    [all...]
  /external/chromium_org/components/sessions/
serialized_navigation_entry_test_helper.cc 36 SerializedNavigationEntry navigation; local
37 navigation.index_ = 0;
38 navigation.referrer_ =
41 navigation.virtual_url_ = GURL(virtual_url);
42 navigation.title_ = base::UTF8ToUTF16(title);
43 navigation.page_state_ =
45 navigation.timestamp_ = base::Time::Now();
46 navigation.http_status_code_ = 200;
47 return navigation;
53 SerializedNavigationEntry* navigation) {
    [all...]
serialized_navigation_entry.cc 39 SerializedNavigationEntry navigation; local
40 navigation.index_ = index;
41 navigation.unique_id_ = entry.GetUniqueID();
42 navigation.referrer_ = entry.GetReferrer();
43 navigation.virtual_url_ = entry.GetVirtualURL();
44 navigation.title_ = entry.GetTitle();
45 navigation.page_state_ = entry.GetPageState();
46 navigation.transition_type_ = entry.GetTransitionType();
47 navigation.has_post_data_ = entry.GetHasPostData();
48 navigation.post_id_ = entry.GetPostID()
68 SerializedNavigationEntry navigation; local
    [all...]
serialized_navigation_entry_unittest.cc 108 const SerializedNavigationEntry navigation; local
109 EXPECT_EQ(-1, navigation.index());
110 EXPECT_EQ(0, navigation.unique_id());
111 EXPECT_EQ(GURL(), navigation.referrer().url);
112 EXPECT_EQ(blink::WebReferrerPolicyDefault, navigation.referrer().policy);
113 EXPECT_EQ(GURL(), navigation.virtual_url());
114 EXPECT_TRUE(navigation.title().empty());
115 EXPECT_FALSE(navigation.page_state().IsValid());
116 EXPECT_EQ(content::PAGE_TRANSITION_TYPED, navigation.transition_type());
117 EXPECT_FALSE(navigation.has_post_data())
134 const SerializedNavigationEntry& navigation = local
165 const SerializedNavigationEntry& navigation = local
229 const SerializedNavigationEntry& navigation = local
267 const SerializedNavigationEntry& navigation = local
305 const SerializedNavigationEntry& navigation = local
340 const SerializedNavigationEntry& navigation = local
364 const SerializedNavigationEntry& navigation = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_url_rewrite_browsertest.cc 59 // correspond to |url|, while the real URL of the navigation entry uses the
104 NavigationEntry* navigation = GetNavigationEntry(); local
105 EXPECT_EQ(bookmarks_url, navigation->GetVirtualURL().GetWithEmptyPath());
106 EXPECT_TRUE(navigation->GetURL().SchemeIs(extensions::kExtensionScheme));
  /external/chromium_org/chrome/browser/sync/glue/
session_sync_test_helper.cc 107 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
108 navigation->set_virtual_url(kVirtualUrl);
109 navigation->set_referrer(kReferrer);
110 navigation->set_title(kTitle);
111 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 37 jfieldID navigation; member in struct:android::__anon38340
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
102 GET_FIELD_ID(gConfigurationClassInfo.navigation, clazz,
103 "navigation", "I");
  /external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_apitest.cc 74 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
75 navigation->set_virtual_url("http://foo/1");
76 navigation->set_referrer("referrer");
77 navigation->set_title("title");
78 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
  /external/chromium_org/third_party/WebKit/Source/core/timing/
Performance.cpp 78 PerformanceNavigation* Performance::navigation() const function in class:WebCore::Performance
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 147 String navigation = null; local
148 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
149 navigation = "undefined";
150 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
151 navigation = "nonav";
152 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
153 navigation = "drap";
154 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
155 navigation = "trackball";
156 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /external/chromium_org/components/dom_distiller/content/
dom_distiller_viewer_source.cc 137 const GURL& navigation = details.entry->GetURL(); local
139 navigation.SchemeIs(expected_scheme_.c_str()) &&
140 expected_request_path_ == navigation.query())) {
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_builder_test_helper.cc 300 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
301 navigation->set_virtual_url(ToTabUrl(session_id, window_id, tab_id));
302 navigation->set_referrer("referrer");
303 navigation->set_title(base::UTF16ToUTF8(GetTabTitle(
305 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
aria_util.js 102 'navigation' : 'aria_role_navigation',
886 case 'navigation':
  /frameworks/base/core/java/android/content/res/
Configuration.java 358 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
360 /** Constant for {@link #navigation}, value corresponding to the
364 /** Constant for {@link #navigation}, value corresponding to the
368 /** Constant for {@link #navigation}, value corresponding to the
372 /** Constant for {@link #navigation}, value corresponding to the
378 * The kind of navigation method available on the device.
382 public int navigation; field in class:Configuration
396 * A flag indicating whether any 5-way or DPAD navigation available.
397 * This will be set on a device with a mechanism to hide the navigation
587 /** @hide Native-specific bit mask for NAVIGATION config; DO NOT USE UNLESS YOU ARE SURE. *
    [all...]
  /frameworks/base/include/androidfw/
ResourceTypes.h 1004 uint8_t navigation; member in struct:android::ResTable_config::__anon38453::__anon38454
    [all...]
  /external/chromium_org/third_party/accessibility-audit/
axs_testing.js 433 parent:["section"]}, menu:{mustcontain:["group", "menuitemradio", "menuitem", "menuitemcheckbox"], namefrom:["author"], namerequired:!0, parent:["list", "select"]}, menubar:{namefrom:["author"], parent:["menu"]}, menuitem:{namefrom:["contents", "author"], namerequired:!0, parent:["command"]}, menuitemcheckbox:{namefrom:["contents", "author"], namerequired:!0, parent:["checkbox", "menuitem"]}, menuitemradio:{namefrom:["contents", "author"], namerequired:!0, parent:["menuitemcheckbox", "radio"]}, navigation:{namefrom:["author"],
488 main:"aria_role_main", math:"aria_role_math", navigation:"aria_role_navigation", note:"aria_role_note", region:"aria_role_region", rowheader:"aria_role_rowheader", search:"aria_role_search", separator:"aria_role_separator"};
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 1724 milliseconds

1 2