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

1 2 3 4 5 6 7 8 9

  /external/chromium-trace/catapult/telemetry/telemetry/testing/
tab_test_case.py 19 while len(self._browser.tabs) < 1:
20 self._browser.tabs.New()
21 while len(self._browser.tabs) > 1:
22 self._browser.tabs[0].Close()
23 self._tab = self._browser.tabs[0]
42 if not self._browser.tabs:
45 self._tab = self._browser.tabs[0]
48 def tabs(self): member in class:TabTestCase
49 return self._browser.tabs
  /external/skia/src/core/
SkStringUtils.cpp 42 SkString tabs; local
44 tabs.append("\t");
52 result.append(tabs);
59 result.append(tabs);
  /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);
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
LNotificationActivity.java 39 // Show 3 tabs with the different notification options.
41 TabLayout tabs = (TabLayout) findViewById(R.id.tabs); local
46 tabs.setupWithViewPager(viewPager);
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
LNotificationActivity.java 39 // Show 3 tabs with the different notification options.
41 TabLayout tabs = (TabLayout) findViewById(R.id.tabs); local
46 tabs.setupWithViewPager(viewPager);
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
LNotificationActivity.java 39 // Show 3 tabs with the different notification options.
41 TabLayout tabs = (TabLayout) findViewById(R.id.tabs); local
46 tabs.setupWithViewPager(viewPager);
  /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);
  /device/google/contexthub/util/nanotool/
log.cpp 98 std::string tabs; local
100 tabs += "\t";
103 Log::Debug(" %s%s%s", line, tabs.c_str(), line_chars);
  /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);
  /frameworks/support/design/tests/src/android/support/design/widget/
TabLayoutTest.java 153 final TabLayout tabs = (TabLayout) inflater.inflate(R.layout.design_tabs, null); local
154 tabs.addOnTabSelectedListener(mockListener);
156 final TabLayout.Tab tab1 = tabs.newTab().setCustomView(R.layout.design_tab_item_custom);
157 tabs.addTab(tab1);
160 final TabLayout.Tab tab2 = tabs.newTab().setCustomView(R.layout.design_tab_item_custom);
161 tabs.addTab(tab2, true);
164 final TabLayout.Tab tab3 = tabs.newTab().setCustomView(R.layout.design_tab_item_custom);
165 tabs.addTab(tab3);
168 assertEquals("Second tab is selected", 1, tabs.getSelectedTabPosition());
169 assertTabCustomViewSelected(tabs);
178 final TabLayout tabs = (TabLayout) inflater.inflate(R.layout.design_tabs, null); local
247 final TabLayout tabs = (TabLayout) mActivityTestRule.getActivity().findViewById(R.id.tabs); local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser.py 90 def tabs(self): member in class:Browser
98 # which means that tabs that have never been in the foreground return
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 23 // A cell represents a segment of text terminated by tabs or line breaks.
38 // of cells terminated by horizontal ('\t') or vertical ('\v') tabs,
45 // all characters have the same width, except for tabs for which a
65 // entirely by vertical (or "soft") tabs are discarded. Columns
66 // terminated by horizontal (or "hard") tabs are not affected by
75 // unchanged. In particular, it does not interpret any tabs or line
102 buf bytes.Buffer // collected text excluding tabs or line breaks
125 // - all text written is appended to buf; tabs and line breaks are stripped away
164 // Always use tabs for indentation columns (i.e., padding of
249 tabs = []byte("\t\t\t\t\t\t\t\t"
248 tabs = []byte("\\t\\t\\t\\t\\t\\t\\t\\t") var
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 23 // A cell represents a segment of text terminated by tabs or line breaks.
38 // of cells terminated by horizontal ('\t') or vertical ('\v') tabs,
45 // all characters have the same width, except for tabs for which a
65 // entirely by vertical (or "soft") tabs are discarded. Columns
66 // terminated by horizontal (or "hard") tabs are not affected by
75 // unchanged. In particular, it does not interpret any tabs or line
102 buf bytes.Buffer // collected text excluding tabs or line breaks
125 // - all text written is appended to buf; tabs and line breaks are stripped away
164 // Always use tabs for indentation columns (i.e., padding of
249 tabs = []byte("\t\t\t\t\t\t\t\t"
248 tabs = []byte("\\t\\t\\t\\t\\t\\t\\t\\t") var
    [all...]
  /system/chre/host/msm/daemon/
chre_daemon.cc 110 char tabs[8]; local
111 char *pos = tabs;
117 LOGV(" %s%s%s", line, tabs, line_chars);
  /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 349 final ViewGroup tabs = (ViewGroup) dragLayer.findViewById(R.id.drop_target_bar); local
382 newIcon = tabs;
  /prebuilts/go/darwin-x86/src/encoding/gob/
debug.go 36 tabs = strings.Repeat("\t", 100)
44 if n > len(tabs) {
45 n = len(tabs)
47 return tabs[0:n]
35 tabs = strings.Repeat("\\t", 100) var
  /prebuilts/go/linux-x86/src/encoding/gob/
debug.go 36 tabs = strings.Repeat("\t", 100)
44 if n > len(tabs) {
45 n = len(tabs)
47 return tabs[0:n]
35 tabs = strings.Repeat("\\t", 100) var
  /external/chromium-trace/catapult/telemetry/telemetry/testing/fakes/
__init__.py 274 def tabs(self): member in class:_FakeBrowser
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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...]

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 9