HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 1 - 25 of 1118) 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_org/chrome/browser/ui/views/tabs/
tab_unittest.cc 5 #include "chrome/browser/ui/views/tabs/tab.h"
30 virtual void SelectTab(Tab* tab) OVERRIDE {}
31 virtual void ExtendSelectionTo(Tab* tab) OVERRIDE {}
32 virtual void ToggleSelected(Tab* tab) OVERRIDE {}
33 virtual void AddSelectionFromAnchorTo(Tab* tab) OVERRIDE {}
34 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_org/chrome/android/java/src/org/chromium/chrome/browser/
TabObserver.java 18 * @param tab The notifying {@link TabBase}.
20 void onDestroyed(TabBase tab);
23 * Called when the tab content changes (to/from native pages or swapping native WebContents).
24 * @param tab The notifying {@link TabBase}.
26 void onContentChanged(TabBase tab);
30 * @param tab The notifying {@link TabBase}.
32 void onFaviconUpdated(TabBase tab);
36 * @param tab The notifying {@link TabBase}.
38 void onWebContentsSwapped(TabBase tab);
42 * @param tab The notifying {@link TabBase}
    [all...]
EmptyTabObserver.java 15 public void onDestroyed(TabBase tab) { }
18 public void onContentChanged(TabBase tab) { }
21 public void onFaviconUpdated(TabBase tab) { }
24 public void onWebContentsSwapped(TabBase tab) { }
27 public void onContextMenuShown(TabBase tab, ContextMenu menu) { }
30 public void onLoadProgressChanged(TabBase tab, int progress) { }
33 public void onUpdateUrl(TabBase tab, String url) { }
36 public void onToggleFullscreenMode(TabBase tab, boolean enable) { }
39 public void onDidFailLoad(TabBase tab, boolean isProvisionalLoad, boolean isMainFrame,
  /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/browser/sessions/
session_types_unittest.cc 61 SessionTab tab; local
62 tab.window_id.set_id(100);
63 tab.tab_id.set_id(100);
64 tab.tab_visual_index = 100;
65 tab.current_navigation_index = 1000;
66 tab.pinned = false;
67 tab.extension_app_id = "fake";
68 tab.user_agent_override = "fake";
69 tab.timestamp = base::Time::FromInternalValue(100);
70 tab.navigations.resize(100)
96 SessionTab tab; local
    [all...]
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;
  /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/android/java/src/org/chromium/chrome/browser/printing/
TabPrinter.java 17 * This class doesn't have any lifetime expectations with regards to Tab, since we keep a weak
25 public TabPrinter(TabBase tab) {
26 mTab = new WeakReference<TabBase>(tab);
35 TabBase tab = mTab.get(); local
36 return tab != null && tab.print();
41 TabBase tab = mTab.get(); local
42 if (tab == null) return sDefaultTitle;
44 String title = tab.getTitle();
47 String url = tab.getUrl()
    [all...]
  /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...]
  /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 26 def Start(self, page, tab):
30 def Stop(self, page, tab):
34 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);
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
reload.py 11 def RunAction(self, page, tab, previous_action):
12 tab.ExecuteJavaScript('window.location.reload()')
13 tab.WaitForDocumentReadyStateToBeInteractiveOrBetter()
wait.py 21 def RunAction(self, page, tab, previous_action):
22 tab.ExecuteJavaScript(
32 previous_action.WillRunAction(page, tab)
33 action_to_perform = lambda: previous_action.RunAction(page, tab, None)
34 tab.PerformActionAndWaitForNavigate(action_to_perform, self.timeout)
35 tab.WaitForDocumentReadyStateToBeInteractiveOrBetter()
41 previous_action.WillRunAction(page, tab)
42 old_url = tab.EvaluateJavaScript('document.location.href')
43 previous_action.RunAction(page, tab, None)
44 tab.WaitForJavaScriptExpression
    [all...]
  /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) {

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>