Searched defs:navigation (Results 1 - 25 of 35) sorted by relevance

12

/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DInvalidPositionException.java6 package jme3tools.navigation;
H A DNumUtil.java5 package jme3tools.navigation;
H A DGCSailing.java5 package jme3tools.navigation;
H A DRLSailing.java5 package jme3tools.navigation;
H A DStringUtil.java5 package jme3tools.navigation;
H A DCoordinate.java5 package jme3tools.navigation;
H A DMapModel2D.java1 package jme3tools.navigation;
H A DMapModel3D.java5 package jme3tools.navigation;
H A DPosition.java5 package jme3tools.navigation;
/external/chromium_org/chrome/browser/sessions/
H A Dsession_types_unittest.cc54 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());
H A Dbase_session_service.cc144 const sessions::SerializedNavigationEntry& navigation) {
152 navigation.WriteToPickle(max_state_size, &pickle);
217 sessions::SerializedNavigationEntry* navigation,
225 navigation->ReadFromPickle(&iterator);
141 CreateUpdateTabNavigationCommand( SessionID::id_type command_id, SessionID::id_type tab_id, const sessions::SerializedNavigationEntry& navigation) argument
215 RestoreUpdateTabNavigationCommand( const SessionCommand& command, sessions::SerializedNavigationEntry* navigation, SessionID::id_type* tab_id) argument
H A Dpersistent_tab_restore_service_unittest.cc645 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);
H A Dsession_service_unittest.cc79 const SerializedNavigationEntry& navigation,
81 service()->UpdateTabNavigation(window_id, tab_id, navigation);
84 window_id, tab_id, navigation.index());
104 // navigation. If |pinned_state| is true or |write_always| is true, the
284 // index should get reset to last valid navigation, which is 2.
841 // navigation with passwords.
922 // Add another navigation to replace the last one.
933 // We should still have that last navigation at the end,
76 UpdateNavigation( const SessionID& window_id, const SessionID& tab_id, const SerializedNavigationEntry& navigation, bool select) argument
/external/chromium_org/chrome/browser/extensions/
H A Dextension_url_rewrite_browsertest.cc59 // correspond to |url|, while the real URL of the navigation entry uses the
110 NavigationEntry* navigation = GetNavigationEntry(); local
111 EXPECT_EQ(bookmarks_url, navigation->GetVirtualURL().GetWithEmptyPath());
112 EXPECT_TRUE(navigation->GetURL().SchemeIs(extensions::kExtensionScheme));
/external/chromium/chrome/browser/sync/glue/
H A Dsession_model_associator_unittest.cc43 // NewTab does not count as valid if it's the only navigation.
50 // Once there's another navigation, the tab is valid.
87 sync_pb::TabNavigation* navigation = tab_s.add_navigation(); local
88 navigation->set_index(12);
89 navigation->set_virtual_url("http://foo/1");
90 navigation->set_referrer("referrer");
91 navigation->set_title("title");
92 navigation->set_page_transition(sync_pb::TabNavigation_PageTransition_TYPED);
/external/chromium_org/components/sessions/
H A Dserialized_navigation_entry_test_helper.cc36 SerializedNavigationEntry navigation; local
37 navigation.index_ = 0;
38 navigation.referrer_ =
41 navigation.virtual_url_ = GURL(virtual_url);
42 navigation.title_ = UTF8ToUTF16(title);
43 navigation.page_state_ =
45 navigation.timestamp_ = base::Time::Now();
46 navigation.http_status_code_ = 200;
47 return navigation;
53 SerializedNavigationEntry* navigation) {
51 SetPageState( const content::PageState& page_state, SerializedNavigationEntry* navigation) argument
58 SetHasPostData( bool has_post_data, SerializedNavigationEntry* navigation) argument
65 SetOriginalRequestURL( const GURL& original_request_url, SerializedNavigationEntry* navigation) argument
72 SetIsOverridingUserAgent( bool is_overriding_user_agent, SerializedNavigationEntry* navigation) argument
79 SetTimestamp( base::Time timestamp, SerializedNavigationEntry* navigation) argument
[all...]
H A Dserialized_navigation_entry_unittest.cc98 const SerializedNavigationEntry navigation; local
99 EXPECT_EQ(-1, navigation.index());
100 EXPECT_EQ(0, navigation.unique_id());
101 EXPECT_EQ(GURL(), navigation.referrer().url);
102 EXPECT_EQ(blink::WebReferrerPolicyDefault, navigation.referrer().policy);
103 EXPECT_EQ(GURL(), navigation.virtual_url());
104 EXPECT_TRUE(navigation.title().empty());
105 EXPECT_FALSE(navigation.page_state().IsValid());
106 EXPECT_EQ(content::PAGE_TRANSITION_TYPED, navigation.transition_type());
107 EXPECT_FALSE(navigation
123 const SerializedNavigationEntry& navigation = local
150 const SerializedNavigationEntry& navigation = local
212 const SerializedNavigationEntry& navigation = local
246 const SerializedNavigationEntry& navigation = local
284 const SerializedNavigationEntry& navigation = local
[all...]
H A Dserialized_navigation_entry.cc38 SerializedNavigationEntry navigation; local
39 navigation.index_ = index;
40 navigation.unique_id_ = entry.GetUniqueID();
41 navigation.referrer_ = entry.GetReferrer();
42 navigation.virtual_url_ = entry.GetVirtualURL();
43 navigation.title_ = entry.GetTitle();
44 navigation.page_state_ = entry.GetPageState();
45 navigation.transition_type_ = entry.GetTransitionType();
46 navigation.has_post_data_ = entry.GetHasPostData();
47 navigation
65 SerializedNavigationEntry navigation; local
[all...]
/external/chromium_org/chrome/browser/sync/glue/
H A Dsession_sync_test_helper.cc107 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);
H A Dsession_model_associator_unittest.cc113 // NewTab does not count as valid if it's the only navigation.
119 // Once there's another navigation, the tab is valid.
131 // NewTab does not count as valid if it's the only navigation.
318 // Populate the mock tab delegate with some data and navigation
477 sync_pb::TabNavigation* navigation = tab.add_navigation(); local
478 navigation->set_virtual_url(page_url);
497 sync_pb::TabNavigation* navigation = tab.add_navigation(); local
498 navigation->set_virtual_url(page_url);
516 sync_pb::TabNavigation* navigation = tab.add_navigation(); local
517 navigation
537 sync_pb::TabNavigation* navigation = tab.add_navigation(); local
[all...]
/external/chromium_org/chrome_frame/test/
H A Dmock_ie_event_sink_test.cc44 ExpectationSet navigation; local
46 navigation += EXPECT_CALL(*this, OnBeforeNavigate2(_, _, _, _, _, _, _))
49 navigation += EXPECT_CALL(*this, OnBeforeNavigate2(_,
65 "expect statements. If you do not require this navigation to be in "
70 navigation += EXPECT_CALL(*this, OnFileDownload(_, _))
80 navigation += EXPECT_CALL(*this, OnNavigateComplete2(_, _))
84 navigation += EXPECT_CALL(*this, OnNavigateComplete2(_,
92 return navigation;
/external/chromium/chrome/browser/sessions/
H A Dbase_session_service.cc204 TabNavigation* navigation,
212 !pickle->ReadInt(&iterator, &(navigation->index_)) ||
214 !pickle->ReadString16(&iterator, &(navigation->title_)) ||
215 !pickle->ReadString(&iterator, &(navigation->state_)) ||
217 reinterpret_cast<int*>(&(navigation->transition_))))
221 bool has_type_mask = pickle->ReadInt(&iterator, &(navigation->type_mask_));
229 navigation->referrer_ = GURL(referrer_spec);
232 navigation->virtual_url_ = GURL(url_spec);
253 bool BaseSessionService::ShouldTrackEntry(const TabNavigation& navigation) { argument
254 return navigation
202 RestoreUpdateTabNavigationCommand( const SessionCommand& command, TabNavigation* navigation, SessionID::id_type* tab_id) argument
[all...]
H A Dsession_service_unittest.cc68 const TabNavigation& navigation,
72 entry.set_url(navigation.virtual_url());
73 entry.set_referrer(navigation.referrer());
74 entry.set_title(navigation.title());
75 entry.set_content_state(navigation.state());
76 entry.set_transition_type(navigation.transition());
78 navigation.type_mask() & TabNavigation::HAS_POST_DATA);
94 // navigation. If |pinned_state| is true or |write_always| is true, the
250 // index should get reset to last valid navigation, which is 2.
66 UpdateNavigation(const SessionID& window_id, const SessionID& tab_id, const TabNavigation& navigation, int index, bool select) argument
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_session_unittest.cc277 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
278 navigation->set_index(12);
279 navigation->set_virtual_url("http://foo/1");
280 navigation->set_referrer("referrer");
281 navigation->set_title("title");
282 navigation->set_page_transition(sync_pb::TabNavigation_PageTransition_TYPED);
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_apitest.cc66 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
67 navigation->set_virtual_url("http://foo/1");
68 navigation->set_referrer("referrer");
69 navigation->set_title("title");
70 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);

Completed in 678 milliseconds

12