HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 1 - 25 of 1023) 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/android/java/src/org/chromium/chrome/browser/
EmptyTabObserver.java 15 public void onDestroyed(Tab tab) { }
18 public void onContentChanged(Tab tab) { }
21 public void onLoadUrl(Tab tab, String url, int loadType) { }
24 public void onFaviconUpdated(Tab tab) { }
27 public void onTitleUpdated(Tab tab) { }
    [all...]
TabObserver.java 12 * An observer that is notified of changes to a {@link Tab} object.
17 * Called when a {@link Tab} is being destroyed.
18 * @param tab The notifying {@link Tab}.
20 void onDestroyed(Tab tab);
23 * Called when the tab content changes (to/from native pages or swapping native WebContents).
24 * @param tab The notifying {@link Tab}.
26 void onContentChanged(Tab tab)
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_types_unittest.cc 43 SessionTab tab; local
44 tab.window_id.set_id(100);
45 tab.tab_id.set_id(100);
46 tab.tab_visual_index = 100;
47 tab.current_navigation_index = 1000;
48 tab.pinned = false;
49 tab.extension_app_id = "fake";
50 tab.user_agent_override = "fake";
51 tab.timestamp = base::Time::FromInternalValue(100);
52 tab.navigations.resize(100)
78 SessionTab tab; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_unittest.cc 5 #include "chrome/browser/ui/views/tabs/tab.h"
33 virtual void SelectTab(Tab* tab) OVERRIDE {}
34 virtual void ExtendSelectionTo(Tab* tab) OVERRIDE {}
35 virtual void ToggleSelected(Tab* tab) OVERRIDE {}
36 virtual void AddSelectionFromAnchorTo(Tab* tab) OVERRIDE {}
37 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/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 9 import org.chromium.chrome.browser.Tab;
15 * Wraps printing related functionality of a {@link Tab} object.
17 * This class doesn't have any lifetime expectations with regards to Tab, since we keep a weak
23 private final WeakReference<Tab> mTab;
25 public TabPrinter(Tab tab) {
26 mTab = new WeakReference<Tab>(tab);
35 Tab tab = mTab.get() local
41 Tab tab = mTab.get(); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
EmptyTabModelObserver.java 7 import org.chromium.chrome.browser.Tab;
17 public void didSelectTab(Tab tab, TabSelectionType type, int lastId) {
21 public void willCloseTab(Tab tab, boolean animate) {
25 public void didCloseTab(Tab tab) {
29 public void willAddTab(Tab tab, TabLaunchType type) {
33 public void didAddTab(Tab tab, TabLaunchType type)
    [all...]
TabModelObserver.java 7 import org.chromium.chrome.browser.Tab;
17 * Called when a tab is selected.
19 * @param tab The newly selected tab.
21 * @param lastId The ID of the last selected tab, or {@link Tab#INVALID_TAB_ID} if no tab was
24 void didSelectTab(Tab tab, TabSelectionType type, int lastId);
27 * Called when a tab starts closing
    [all...]
TabModelUtils.java 7 import org.chromium.chrome.browser.Tab;
19 * @param index The index of the {@link Tab} to close.
20 * @return {@code true} if the {@link Tab} was found.
23 Tab tab = model.getTabAt(index); local
24 if (tab == null) return false;
26 return model.closeTab(tab);
31 * @param tabId The id of the {@link Tab} to close.
32 * @return {@code true} if the {@link Tab} was found.
40 * @param tabId The id of the {@link Tab} to close
45 Tab tab = TabModelUtils.getTabById(model, tabId); local
56 Tab tab = TabModelUtils.getCurrentTab(model); local
73 Tab tab = model.getTabAt(i); local
114 Tab tab = getCurrentTab(model); local
138 Tab tab = getCurrentTab(model); local
    [all...]
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_webcam_browsertest.cc 56 std::string GetUserMediaAndGetStreamSize(content::WebContents* tab,
58 GetUserMediaWithSpecificConstraintsAndAccept(tab, constraints);
60 StartDetectingVideo(tab, "local-view");
61 WaitForVideoToPlay(tab);
62 std::string actual_stream_size = GetStreamSize(tab, "local-view");
63 CloseLastLocalStream(tab);
81 content::WebContents* tab = local
84 if (!HasWebcamAvailableOnSystem(tab)) {
92 GetUserMediaAndGetStreamSize(tab,
97 GetUserMediaAndGetStreamSize(tab, kAudioVideoCallConstraintsVGA))
    [all...]
  /external/chromium_org/chrome/browser/sync/sessions/
sessions_util.cc 17 bool ShouldSyncTab(const SyncedTabDelegate& tab) {
19 tab.GetWindowId()) == NULL) {
23 // Does the tab have a valid NavigationEntry?
24 if (tab.ProfileIsSupervised() && tab.GetBlockedNavigations()->size() > 0)
27 int entry_count = tab.GetEntryCount();
31 int pending_index = tab.GetPendingEntryIndex();
35 tab.GetPendingEntry() : tab.GetEntryAtIndex(i);
  /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));
  /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/perf/metrics/
__init__.py 26 def Start(self, page, tab):
30 def Stop(self, page, tab):
34 def AddResults(self, tab, results):
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 49 void onSetWebView(Tab tab, WebView view);
51 void createSubWindow(Tab tab);
53 void onPageStarted(Tab tab, WebView view, Bitmap favicon);
55 void onPageFinished(Tab tab);
57 void onProgressChanged(Tab tab);
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_info.py 28 # If no tab is opened, open one and close it after evaluate
32 tab = self._browser.tabs[0]
33 result = tab.EvaluateJavaScript(_check_webgl_supported_script)
34 tab.Close()
36 tab = self._browser.tabs[0]
37 result = tab.EvaluateJavaScript(_check_webgl_supported_script)
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
media_action.py 15 def WillRunAction(self, tab):
17 self.LoadJS(tab, 'media_action.js')
19 def RunAction(self, tab):
20 super(MediaAction, self).RunAction(tab)
22 def LoadJS(self, tab, js_file_name):
23 """Loads and executes a JS file in the tab."""
26 tab.ExecuteJavaScript(js)
28 def WaitForEvent(self, tab, selector, event_name, timeout_in_seconds):
32 tab: The tab to check for event on
    [all...]
  /external/chromium_org/tools/perf/measurements/
repaint.py 35 def WillRunActions(self, page, tab):
36 tab.WaitForDocumentReadyStateToBeComplete()
38 self._smoothness_controller.SetUp(page, tab)
39 self._smoothness_controller.Start(tab)
41 tab.ExecuteJavaScript(
52 tab.ExecuteJavaScript("""
62 self._micro_benchmark_id = tab.EvaluateJavaScript(
68 def DidRunActions(self, page, tab):
69 tab.ExecuteJavaScript("""
76 self._smoothness_controller.Stop(tab)
    [all...]
smoothness.py 26 def WillNavigateToPage(self, page, tab):
27 self._power_metric.Start(page, tab)
29 self._smoothness_controller.SetUp(page, tab)
31 def WillRunActions(self, page, tab):
32 self._smoothness_controller.Start(tab)
34 def DidRunActions(self, page, tab):
35 self._power_metric.Stop(page, tab)
36 self._smoothness_controller.Stop(tab)
38 def ValidateAndMeasurePage(self, page, tab, results):
39 self._power_metric.AddResults(tab, results
    [all...]
loading_trace.py 15 def WillNavigateToPage(self, page, tab):
16 self._timeline_controller.SetUp(page, tab)
17 self._timeline_controller.Start(tab)
19 def ValidateAndMeasurePage(self, page, tab, results):
22 tab.WaitForJavaScriptExpression('performance.timing.loadEventStart', 300)
26 self._timeline_controller.Stop(tab)
28 loading.LoadingMetric().AddResults(tab, results)
31 self._timeline_controller.model.GetRendererThreadFromTabId(tab.id)
40 def CleanUpAfterPage(self, _, tab):
41 self._timeline_controller.CleanUp(tab)
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
subpages_tab_controls.css 5 .subpages-nav-tabs .tab {
10 .subpages-nav-tabs .active-tab {
21 * bold, we actually put two labels inside each tab: an inactive label and an
23 * size the tab even when it's not visible. This keeps the tab size constant.
25 .subpages-nav-tabs .active-tab-label,
26 .subpages-nav-tabs .tab-label:hover {
30 .subpages-nav-tabs .tab-label {
36 html[dir=rtl] .subpages-nav-tabs .tab-label {
40 .subpages-nav-tabs .active-tab-label
    [all...]

Completed in 787 milliseconds

1 2 3 4 5 6 7 8 91011>>