OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Tabs
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/Format/
WhitespaceManager.cpp
322
// Indent with
tabs
only when there's at least one full tab.
338
unsigned
Tabs
= Indentation / Style.TabWidth;
339
Text.append(std::string(
Tabs
, '\t'));
340
Spaces -=
Tabs
* Style.TabWidth;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
SettingsScreen.js
53
this._tabbedPane.appendTab(WebInspector.SettingsScreen.
Tabs
.General, WebInspector.UIString("General"), new WebInspector.GenericSettingsTab());
54
this._tabbedPane.appendTab(WebInspector.SettingsScreen.
Tabs
.Workspace, WebInspector.UIString("Workspace"), new WebInspector.WorkspaceSettingsTab());
56
this._tabbedPane.appendTab(WebInspector.SettingsScreen.
Tabs
.Experiments, WebInspector.UIString("Experiments"), new WebInspector.ExperimentsSettingsTab());
57
this._tabbedPane.appendTab(WebInspector.SettingsScreen.
Tabs
.Shortcuts, WebInspector.UIString("Shortcuts"), WebInspector.shortcutsScreen.createShortcutsTabView());
61
this._lastSelectedTabSetting = WebInspector.settings.createSetting("lastSelectedSettingsTab", WebInspector.SettingsScreen.
Tabs
.General);
84
WebInspector.SettingsScreen.
Tabs
= {
667
WebInspector._settingsController.showSettingsScreen(WebInspector.SettingsScreen.
Tabs
.General);
[
all
...]
/external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip.h
13
#include "chrome/browser/ui/views/
tabs
/tab.h"
14
#include "chrome/browser/ui/views/
tabs
/tab_controller.h"
46
// container for
Tabs
, and is also responsible for creating them.
48
// DraggedTab, focusing on tasks that require reshuffling other
tabs
49
// in response to dragged
tabs
.
78
// |stacked_layout_| defines what should happen when the
tabs
won't fit at
79
// their ideal size. When |stacked_layout_| is true the
tabs
are always sized
81
// set of
tabs
are visible. This is used when the user uses a touch device.
82
// When |stacked_layout_| is false the
tabs
shrink to accommodate the
151
// Gets the number of
Tabs
in the tab strip
[
all
...]
Completed in 167 milliseconds