HomeSort by relevance Sort by last modified time
    Searched defs:tabs (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigTabGroup.java 35 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { local
40 setTabs(tabs);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchConfigTabGroups.java 31 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { local
37 setTabs(tabs);
  /external/toybox/toys/posix/
expand.c 1 /* expand.c - expands tabs to space
15 Expand tabs to spaces according to tabstops.
29 struct arg_list *tabs;
93 struct arg_list *tabs; local
96 for (tabs = TT.tabs; tabs; tabs = tabs->next) {
97 char *s = tabs->arg
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitTabGroup.java 33 * Creates the UI tabs for the Android JUnit configuration
37 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { local
42 setTabs(tabs);
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java 113 PagerTabStrip tabs = (PagerTabStrip) rootView.findViewById(R.id.tabs); local
117 final TypedArray ta = tabs.getContext().obtainStyledAttributes(
122 tabs.setTabIndicatorColorResource(colorAccent);
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 139 final TabWidget tabs = tabHost.getTabWidget(); local
199 tabs.requestFocus();
299 final TabWidget tabs = tabHost.getTabWidget(); local
359 tabs.requestFocus();
669 final ViewGroup tabs = (ViewGroup) launcher.findViewById(R.id.qsb_bar); local
729 tabs.requestFocus();
    [all...]
AppsCustomizeTabHost.java 71 * Convenience methods to select specific tabs. We want to set the content type immediately
74 * tabs manually).
91 * Setup the tab host and create all necessary tabs.
99 final TabWidget tabs = getTabWidget(); local
102 mTabs = tabs;
107 if (tabs == null || mAppsCustomizePane == null) throw new Resources.NotFoundException();
109 // Configure the tabs content factory to return the same paged view (that we change the
117 // Create the tabs
121 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
126 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 91 ConfigTab[] tabs; field in class:ComponentResultsView
155 // Create tabs
172 this.tabs = new ConfigTab[length];
174 this.tabs[i] = new ConfigTab(configNames[i], configDescriptions[i]);
176 for (int i=0; i<this.tabs.length; i++) {
178 item.setText (this.tabs[i].getTabText ());
179 item.setControl (this.tabs[i].createTabFolderPage(this.componentResultsElement, this.tabFolder, this.fullLineSelection.isChecked()));
180 item.setData (this.tabs[i]);
191 int length = this.tabs==null ? 0 : this.tabs.length
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 301 final ViewGroup tabs = (ViewGroup) dragLayer.findViewById(R.id.search_drop_target_bar); local
342 newIcon = tabs;
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 251 final float[] tabs = block.getTabPosition(); local
268 if (tabs != null && x0 < tabs[tabs.length-1]) {
269 for (int i = 0; i < tabs.length-1; i++) {
270 if (x0 > tabs[i] && x0 < tabs[i+1]) {
271 width = tabs[i+1] - x0;
  /packages/apps/Browser/src/com/android/browser/
PieControl.java 148 View tabs = makeTabsView(); local
149 mShowTabs = new PieItem(tabs, 1);
248 final List<Tab> tabs = mUiController.getTabs(); local
250 mTabAdapter.setTabs(tabs);
296 public void setTabs(List<Tab> tabs) {
297 mTabs = tabs;
Controller.java 223 // Tabs' notion of whether they represent bookmarked sites.
275 // remaining incognito tabs.
313 // not null, but there aren't any tabs to restore.
343 List<Tab> tabs = mTabControl.getTabs(); local
344 ArrayList<Long> restoredTabs = new ArrayList<Long>(tabs.size());
345 for (Tab t : tabs) {
349 if (tabs.size() == 0) {
352 mUi.updateTabs(tabs);
669 // Save all the tabs
680 * @return Bundle containing the current state of all tabs
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarOverlayLayout.java 357 final View tabs = mActionBarTop.getTabContainer(); local
358 if (tabs != null) {
359 // If tabs are not embedded, increase space on top to account for them.
365 // and tabs.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 822 * An integer between zero and the number of tabs
828 * The string "end", which returns the number of tabs (only
853 tabs may be restored with the add command."""
865 the total number of tabs if tab_id is the string "end"."""
899 def tabs(self): member in class:Notebook
901 return self.tk.call(self._w, "tabs") or ()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 822 * An integer between zero and the number of tabs
828 * The string "end", which returns the number of tabs (only
853 tabs may be restored with the add command."""
865 the total number of tabs if tab_id is the string "end"."""
899 def tabs(self): member in class:Notebook
901 return self.tk.call(self._w, "tabs") or ()
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 306 // tabs.
364 // Can't tell if we have tabs for sure, currently
713 * characters that need to be handled specially, like tabs
921 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class); local
1039 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class); local
    [all...]
  /external/proguard/src/proguard/gui/
ProGuardGUI.java 589 TabbedPane tabs = new TabbedPane(); local
    [all...]
  /frameworks/base/media/java/android/media/
ClosedCaptionRenderer.java 252 int tabs = ccData.getTabOffset(); local
254 if (tabs > 0) {
255 getMemory().tab(tabs);
622 void tab(int tabs) {
623 moveCursorByCol(tabs);
    [all...]
  /external/toybox/generated/
globals.h 948 struct arg_list *tabs; member in struct:expand_data
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 

Completed in 430 milliseconds

1 2 3 4 5