/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
TabHostRule.java | 62 INode tab = linear.appendChild(FQCN_TAB_WIDGET); local 63 tab.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent); 64 tab.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, VALUE_WRAP_CONTENT); 65 tab.setAttribute(ANDROID_URI, ATTR_ID, "@android:id/tabs"); //$NON-NLS-1$ 77 String.format("@+id/tab%d", i + 1)); //$NON-NLS-1$
|
/external/chromium_org/tools/perf/measurements/ |
rasterize_and_record.py | 128 def MeasurePage(self, page, tab, results): 129 self._metrics = smoothness.SmoothnessMetrics(tab) 132 tab.ExecuteJavaScript( 142 tab.ExecuteJavaScript(""" 150 tab.browser.StartTracing('webkit,benchmark', 60) 153 tab.ExecuteJavaScript(""" 166 tab.ExecuteJavaScript('console.timeEnd("measureNextFrame")') 168 tab.browser.StopTracing() 171 timeline = tab.browser.GetTraceResultAndReset().AsTimelineModel()
|
startup.py | 53 def MeasurePage(self, page, tab, results): 62 result = tab.EvaluateJavaScript(get_histogram_js % histogram_name)
|
/frameworks/base/core/java/android/app/ |
ActionBar.java | 76 * Tab navigation mode. Instead of static title text this mode 505 * Create and return a new {@link Tab}. 506 * This tab will not be included in the action bar until it is added. 514 * @return A new Tab 516 * @see #addTab(Tab) 518 public abstract Tab newTab(); 521 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list. 522 * If this is the first tab to be added it will become the selected tab [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
ActionBar.java | 86 * Tab navigation mode. Instead of static title text this mode presents a series of tabs for 485 * Create and return a new {@link Tab}. This tab will not be included in the action bar until it 494 * @return A new Tab 495 * @see #addTab(Tab) 497 public abstract Tab newTab(); 500 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list. If 501 * this is the first tab to be added it will become the selected tab [all...] |
/external/opencv/cv/src/ |
cvsegmentation.cpp | 338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \ 339 tab[c1-dptr[(ofs0)+1]+255] + tab[c2-dptr[(ofs0)+2]+255] >= isr22) 350 int tab[768]; local 378 tab[i] = (i - 255)*(i - 255); 477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) 483 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 [all...] |
/external/chromium/chrome/browser/ui/gtk/tabs/ |
dragged_tab_controller_gtk.cc | 27 // Used to determine how far a tab must obscure another tab in order to swap 31 // How far a drag must pull a tab out of the tabstrip in order to detach it. 55 // Need to delete the dragged tab here manually _before_ we reset the dragged 99 bool DraggedTabControllerGtk::IsDragSourceTab(const TabGtk* tab) const { 100 return source_tab_ == tab; 103 bool DraggedTabControllerGtk::IsTabDetached(const TabGtk* tab) const { 104 if (!IsDragSourceTab(tab)) 157 // screen shot in the dragged tab. 230 // TODO(jhawkins): We don't handle the situation where the last tab is dragge 345 TabGtk* tab = GetTabMatchingDraggedContents(attached_tabstrip_); local 663 TabGtk* tab = GetTabMatchingDraggedContents(attached_tabstrip_); local 758 TabGtk* tab = GetTabMatchingDraggedContents(attached_tabstrip_); local [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ScrollingTabContainerView.java | 39 * This widget implements the dynamic action bar tab behavior that can change across different 117 // Recenter the tab display if we're at a new (scrollable) size. 238 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { 241 tabView.attach(this, tab, forAdapter); 258 public void addTab(ActionBar.Tab tab, boolean setSelected) { 259 TabView tabView = createTabView(tab, false); 273 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) 369 final ActionBar.Tab tab = mTab; local [all...] |
/frameworks/support/v13/java/android/support/v13/app/ |
FragmentTabHost.java | 208 "No tab content FrameLayout found for id " + mContainerId); 226 // sure this tab's fragment is inactive if it exists. This shouldn't 250 TabInfo tab = mTabs.get(i); local 251 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag); 252 if (tab.fragment != null && !tab.fragment.isDetached()) { 253 if (tab.tag.equals(currentTab)) { 254 // The fragment for this tab is already there and 256 // as the current tab. Nothing to do 316 TabInfo tab = mTabs.get(i); local [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
FragmentTabHost.java | 36 * its tab content. When placing this in a view hierarchy, after inflating 38 * to complete the initialization of the tab host. 216 "No tab content FrameLayout found for id " + mContainerId); 234 // sure this tab's fragment is inactive if it exists. This shouldn't 258 TabInfo tab = mTabs.get(i); local 259 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag); 260 if (tab.fragment != null && !tab.fragment.isDetached()) { 261 if (tab.tag.equals(currentTab)) 324 TabInfo tab = mTabs.get(i); local [all...] |
/external/bison/src/ |
files.c | 63 If --output=dir/foo.tab.c was specified, DIR_PREFIX is `dir/', 64 ALL_BUT_EXT is `dir/foo.tab', and ALL_BUT_TAB_EXT is `dir/foo'. 67 ALL_BUT_EXT = `foo.tab' and ALL_BUT_TAB_EXT = `foo'. 177 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth 183 If there is no *EXT, *TAB is NULL. Otherwise, *TAB points to 184 `.tab' or `_tab' if present right before *EXT, or is NULL. *TAB 190 '/tmp/foo.tab.c' -> *BASE = 'foo.tab.c', *TAB = '.tab.c', *EXT 230 const char *base, *tab, *ext; local [all...] |
/external/chromium/chrome/browser/ |
browser_encoding_uitest.cc | 248 scoped_refptr<TabProxy> tab(GetActiveTab()); 249 ASSERT_TRUE(tab.get()); 256 ASSERT_TRUE(tab->NavigateToURL(url)); 262 EXPECT_TRUE(tab->Reload()); 267 EXPECT_TRUE(tab->GetPageCurrentEncoding(&encoding)); 273 EXPECT_TRUE(tab->Reload()); 281 EXPECT_TRUE(tab->GetPageCurrentEncoding(&encoding)); 293 EXPECT_TRUE(tab->SavePage(full_saved_file_name, temp_sub_resource_dir_,
|
omnibox_search_hint.cc | 85 : ConfirmInfoBarDelegate(omnibox_hint->tab()), 152 OmniboxSearchHint::OmniboxSearchHint(TabContents* tab) : tab_(tab) { 153 NavigationController* controller = &(tab->controller()); 166 Source<Profile>(tab->profile()));
|
/external/chromium/chrome/browser/tabs/ |
tab_finder.h | 24 // TabFinder is used to locate a tab by URL. TabFinder matches tabs based 37 // Returns the tab that matches the specified url. If a tab is found the 38 // browser containing the tab is set in |existing_browser|. This searches 68 // Returns true if the tab's current url is |url|, or the start of the 69 // redirect chain for the tab is |url|. 72 // Returns the first tab in the specified browser that matches the specified 76 // If we're not currently tracking |tab| this creates a 78 void TrackTab(TabContents* tab); 91 void FetchRedirectStart(TabContents* tab); [all...] |
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_window_controller.h | 12 // know anything about the actual tab implementation or model, as that is fairly 22 // The tab strip can exist in different orientations and window locations, 24 // the tab strip is placed outside the window's content area, overlapping the 26 // of the window. If YES, the tab strip is vertical and lives within the 55 // cached in order to restore the delta when switching tab modes. 61 // Used during tab dragging to turn on/off the overlay window when a tab 72 // the implementation of tab dragging based on whatever model is most 78 // Creates a new window by pulling the given tab out and placing it in 83 // Make room in the tab strip for |tab| at the given x coordinate. Will hide th [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_window_controller.h | 11 // know anything about the actual tab implementation or model, as that is fairly 45 // Used during tab dragging to turn on/off the overlay window when a tab 56 // the implementation of tab dragging based on whatever model is most 62 // Creates a new window by pulling the given tab out and placing it in 67 // Make room in the tab strip for |tab| at the given x coordinate. Will hide the 68 // new tab button while there's a placeholder. Subclasses need to call the 70 - (void)insertPlaceholderForTab:(TabView*)tab frame:(NSRect)frame; 73 // and restores the new tab button. Subclasses need to call the superclas [all...] |
/external/chromium_org/chrome/browser/ui/fullscreen/ |
fullscreen_controller_test.cc | 25 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local 26 browser()->RequestToLockMouse(tab, user_gesture,
|
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
tab_strip_menu_controller.cc | 12 TabStripMenuController::TabStripMenuController(TabGtk* tab, 15 : tab_(tab), 59 // Checking if the tab still exists since it is possible that the tab
|
/external/chromium_org/chrome/browser/ui/sync/ |
browser_synced_window_delegate.cc | 44 const browser_sync::SyncedTabDelegate* tab) const { 47 if (tab == current)
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
background.js | 76 function(tab) { 78 tab.id,
|
/external/chromium_org/tools/telemetry/examples/ |
telemetry_perf_test.py | 22 tab = b.tabs[0] 28 tab.EvaluateJavaScript('%i * 2' % i)
|
/external/chromium_org/tools/vim/ |
filetypes.vim | 1 " To get syntax highlighting and tab settings for gyp(i) and DEPS files,
|
/packages/apps/Browser/src/com/android/browser/ |
ComboViewActivity.java | 37 private static final String STATE_SELECTED_TAB = "tab"; 152 * trick. Normally a tab host has a simple API for supplying a View or 153 * Intent that each tab will show. This is not sufficient for switching 154 * between pages. So instead we make the content part of the tab host 156 * view to show as the tab content. It listens to changes in tabs, and takes 158 * tab changes. 186 public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args) { 188 tab.setTag(info); 189 tab.setTabListener(this) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
iterators.py | 68 tab = ' ' * (level * 4) 69 print >> fp, tab + msg.get_content_type(),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
iterators.py | 68 tab = ' ' * (level * 4) 69 print >> fp, tab + msg.get_content_type(),
|