HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 1 - 25 of 1046) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
vtxfmt.c 48 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab,
52 _mesa_install_arrayelt_vtxfmt(tab, vfmt);
53 SET_Color3f(tab, vfmt->Color3f);
54 SET_Color3fv(tab, vfmt->Color3fv);
55 SET_Color4f(tab, vfmt->Color4f);
56 SET_Color4fv(tab, vfmt->Color4fv);
57 SET_EdgeFlag(tab, vfmt->EdgeFlag);
61 _mesa_install_eval_vtxfmt(tab, vfmt);
65 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT);
66 SET_FogCoordfvEXT(tab, vfmt->FogCoordfvEXT)
    [all...]
  /external/mesa3d/src/mesa/main/
vtxfmt.c 48 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab,
52 _mesa_install_arrayelt_vtxfmt(tab, vfmt);
53 SET_Color3f(tab, vfmt->Color3f);
54 SET_Color3fv(tab, vfmt->Color3fv);
55 SET_Color4f(tab, vfmt->Color4f);
56 SET_Color4fv(tab, vfmt->Color4fv);
57 SET_EdgeFlag(tab, vfmt->EdgeFlag);
61 _mesa_install_eval_vtxfmt(tab, vfmt);
65 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT);
66 SET_FogCoordfvEXT(tab, vfmt->FogCoordfvEXT)
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab_controller.h 21 // Selects the tab.
22 virtual void SelectTab(BaseTab* tab) = 0;
24 // Extends the selection from the anchor to |tab|.
25 virtual void ExtendSelectionTo(BaseTab* tab) = 0;
27 // Toggles whether |tab| is selected.
28 virtual void ToggleSelected(BaseTab* tab) = 0;
30 // Adds the selection the anchor to |tab|.
31 virtual void AddSelectionFromAnchorTo(BaseTab* tab) = 0;
33 // Closes the tab.
34 virtual void CloseTab(BaseTab* tab) = 0
    [all...]
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
TestShellTabObserver.java 18 * @param tab The notifying {@link TestShellTab}.
21 public void onLoadProgressChanged(TestShellTab tab, int progress);
25 * @param tab The notifying {@link TestShellTab}.
28 public void onUpdateUrl(TestShellTab tab, String url);
31 * Called when the tab is about to close.
32 * @param tab The closing {@link TestShellTab}.
34 public void onCloseTab(TestShellTab tab);
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_unittest.cc 5 #include "chrome/browser/ui/views/tabs/tab.h"
29 virtual void SelectTab(Tab* tab) OVERRIDE {}
30 virtual void ExtendSelectionTo(Tab* tab) OVERRIDE {}
31 virtual void ToggleSelected(Tab* tab) OVERRIDE {}
32 virtual void AddSelectionFromAnchorTo(Tab* tab) OVERRIDE {}
33 virtual void CloseTab(Tab* tab, CloseTabSource source) OVERRIDE {
    [all...]
tab_controller.h 10 class Tab;
32 // Selects the tab.
33 virtual void SelectTab(Tab* tab) = 0;
35 // Extends the selection from the anchor to |tab|.
36 virtual void ExtendSelectionTo(Tab* tab) = 0;
38 // Toggles whether |tab| is selected.
39 virtual void ToggleSelected(Tab* tab) = 0
    [all...]
  /external/chromium/chrome/browser/
pdf_unsupported_feature.h 13 // Call this when a tab encounters a PDF that has features which our internal
17 void PDFHasUnsupportedFeature(TabContents* tab);
repost_form_warning_uitest.cc 37 scoped_refptr<TabProxy> tab(browser->GetTab(0));
38 ASSERT_TRUE(tab.get());
41 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/form.html")));
43 ASSERT_TRUE(tab->NavigateToURL(GURL(
47 tab->ReloadAsync();
48 tab->ReloadAsync();
51 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("bar")));
68 scoped_refptr<TabProxy> tab(browser->GetTab(0));
69 ASSERT_TRUE(tab.get());
72 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/form.html")))
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_test_utils.cc 9 std::string TabToString(const StartupTab& tab) {
10 return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
11 (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
  /external/chromium_org/chrome/browser/sessions/
session_id.cc 15 SessionID::id_type SessionID::IdForTab(const content::WebContents* tab) {
17 tab ? SessionTabHelper::FromWebContents(tab) : NULL;
22 const content::WebContents* tab) {
24 tab ? SessionTabHelper::FromWebContents(tab) : NULL;
session_types_unittest.cc 111 SessionTab tab; local
112 tab.window_id.set_id(100);
113 tab.tab_id.set_id(100);
114 tab.tab_visual_index = 100;
115 tab.current_navigation_index = 1000;
116 tab.pinned = false;
117 tab.extension_app_id = "fake";
118 tab.user_agent_override = "fake";
119 tab.timestamp = base::Time::FromInternalValue(100);
120 tab.navigations.resize(100)
146 SessionTab tab; local
    [all...]
  /external/chromium_org/chrome/android/testshell/javatests/src/org/chromium/chrome/testshell/
TabShellTabUtils.java 18 private static TestContentViewClient createTestContentViewClientForTab(TestShellTab tab) {
19 ContentViewClient client = tab.getContentView().getContentViewClient();
23 tab.getContentView().setContentViewClient(testClient);
30 public TestCallbackHelperContainerForTab(TestShellTab tab) {
31 super(createTestContentViewClientForTab(tab),
32 new TestWebContentsObserver(tab.getContentView().getContentViewCore()));
34 tab.addObserver(this);
45 public void onLoadProgressChanged(TestShellTab tab, int progress) {
49 public void onUpdateUrl(TestShellTab tab, String url) {
53 public void onCloseTab(TestShellTab tab) {
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
synced_session.cc 23 bool ShouldSyncSessionTab(const SessionTab& tab) {
24 if (tab.navigations.empty())
27 for (size_t i = 0; i < tab.navigations.size(); ++i) {
28 if (tab.navigations.at(i).virtual_url().is_valid() &&
29 !tab.navigations.at(i).virtual_url().SchemeIs("chrome") &&
30 !tab.navigations.at(i).virtual_url().SchemeIsFile()) {
42 const SessionTab* tab = *i; local
43 if (ShouldSyncSessionTab(*tab))
  /external/chromium_org/extensions/browser/
view_type_utils.h 17 // GetViewType handles a NULL |tab| for convenience by returning
19 ViewType GetViewType(content::WebContents* tab);
20 void SetViewType(content::WebContents* tab, ViewType type);
view_type_utils.cc 30 ViewType GetViewType(WebContents* tab) {
31 if (!tab)
35 tab->GetUserData(&kViewTypeUserDataKey));
40 void SetViewType(WebContents* tab, ViewType type) {
41 tab->SetUserData(&kViewTypeUserDataKey, new ViewTypeUserData(type));
  /external/chromium/chrome/browser/sessions/
session_types.cc 35 TabNavigation::TabNavigation(const TabNavigation& tab)
36 : virtual_url_(tab.virtual_url_),
37 referrer_(tab.referrer_),
38 title_(tab.title_),
39 state_(tab.state_),
40 transition_(tab.transition_),
41 type_mask_(tab.type_mask_),
42 index_(tab.index_) {
48 TabNavigation& TabNavigation::operator=(const TabNavigation& tab) {
49 virtual_url_ = tab.virtual_url_
    [all...]
  /external/chromium/chrome/browser/sidebar/
sidebar_manager.h 42 // Returns SidebarContainer registered for |tab| and active or NULL if
43 // there is no alive and active SidebarContainer registered for |tab|.
44 SidebarContainer* GetActiveSidebarContainerFor(TabContents* tab);
46 // Returns SidebarContainer registered for |tab| and |content_id| or NULL if
48 SidebarContainer* GetSidebarContainerFor(TabContents* tab,
51 // Returns sidebar's TabContents registered for |tab| and |content_id|.
52 TabContents* GetSidebarTabContents(TabContents* tab,
61 // Shows sidebar identified by |tab| and |content_id| (only sidebar's
62 // mini tab is visible).
63 void ShowSidebar(TabContents* tab, const std::string& content_id)
    [all...]
sidebar_manager.cc 20 // Sidebars linked to this tab.
41 TabContents* tab) {
42 TabToSidebarHostMap::iterator it = tab_to_sidebar_host_.find(tab);
54 TabContents* tab, const std::string& content_id) {
56 TabToSidebarHostMap::iterator it = tab_to_sidebar_host_.find(tab);
67 TabContents* tab, const std::string& content_id) {
69 SidebarContainer* sidebar_host = GetSidebarContainerFor(tab, content_id);
103 void SidebarManager::ShowSidebar(TabContents* tab,
106 SidebarContainer* host = GetSidebarContainerFor(tab, content_id);
108 host = new SidebarContainer(tab, content_id, this)
    [all...]
  /external/chromium_org/tools/perf/metrics/
loading.py 10 def Start(self, page, tab):
13 def Stop(self, page, tab):
16 def AddResults(self, tab, results):
17 load_timings = tab.EvaluateJavaScript('window.performance.timing')
__init__.py 14 def Start(self, page, tab):
18 def Stop(self, page, tab):
22 def AddResults(self, tab, results):
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
CompatTabListener.java 27 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
29 public void onTabSelected(CompatTab tab, FragmentTransaction ft);
33 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
35 public void onTabUnselected(CompatTab tab, FragmentTransaction ft);
39 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
41 public void onTabReselected(CompatTab tab, FragmentTransaction ft);
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 48 void onSetWebView(Tab tab, WebView view);
50 void createSubWindow(Tab tab);
52 void onPageStarted(Tab tab, WebView view, Bitmap favicon);
54 void onPageFinished(Tab tab);
56 void onProgressChanged(Tab tab);
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
tab_control.css 6 .tab-control {
15 .tab-control > .tab-strip {
27 .tab-control > .tabs {
34 .tab-control > .tabs > :not([selected]) {
38 .tab-control .tab-button {
51 .tab-control .tab-button:hover {
56 .tab-control .tab-button:visited
    [all...]
  /external/chromium/chrome/browser/tabs/
pinned_tab_test_utils.cc 7 typedef BrowserInit::LaunchWithProfile::Tab Tab;
11 std::string TabToString(const Tab& tab) {
12 return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
13 (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
20 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values) {
  /external/chromium_org/tools/perf/measurements/
image_decoding.py 12 def WillNavigateToPage(self, page, tab):
13 tab.ExecuteJavaScript("""
20 tab.StartTimelineRecording()
22 def NeedsBrowserRestartAfterEachRun(self, tab):
23 return not tab.ExecuteJavaScript("""
29 def MeasurePage(self, page, tab, results):
30 tab.StopTimelineRecording()
32 return tab.EvaluateJavaScript('isDone')
35 tab.timeline_model.GetAllEventsOfName('DecodeImage')
43 min_iterations = tab.EvaluateJavaScript('minIterations'
    [all...]

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>