HomeSort by relevance Sort by last modified time
    Searched refs:Separator (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/ui/views/controls/
separator.cc 5 #include "ui/views/controls/separator.h"
13 const char Separator::kViewClassName[] = "Separator";
15 // The separator height in pixels.
18 // Default color of the separator.
21 Separator::Separator(Orientation orientation) : orientation_(orientation) {
25 Separator::~Separator() {
29 // Separator, View overrides
    [all...]
separator.h 14 // The Separator class is a view that shows a line used to visually separate
17 class VIEWS_EXPORT Separator : public View {
24 // The separator's class name.
27 explicit Separator(Orientation orientation);
28 virtual ~Separator();
39 DISALLOW_COPY_AND_ASSIGN(Separator);
  /external/chromium_org/third_party/WebKit/public/web/
WebMenuItemInfo.h 46 Separator,
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_bubble_view.h 31 class Separator;
112 views::Separator* separator_;
124 views::Separator* separator_switch_users_;
open_pdf_in_reader_bubble_view.cc 13 #include "ui/views/controls/separator.h"
56 layout->AddView(new views::Separator(views::Separator::HORIZONTAL), 1, 1,
profile_chooser_view.cc 24 #include "ui/views/controls/separator.h"
166 layout->AddView(new views::Separator(views::Separator::HORIZONTAL));
173 layout->AddView(new views::Separator(views::Separator::HORIZONTAL));
181 layout->AddView(new views::Separator(views::Separator::HORIZONTAL));
333 layout->AddView(new views::Separator(views::Separator::VERTICAL));
  /external/chromium/webkit/glue/
webmenuitem.h 20 SEPARATOR = WebKit::WebMenuItemInfo::Separator,
  /external/chromium_org/content/public/common/
menu_item.h 23 SEPARATOR = WebKit::WebMenuItemInfo::Separator,
  /external/llvm/lib/MC/
MCInst.cpp 53 StringRef Separator) const {
61 OS << Separator;
MCSectionMachO.cpp 130 char Separator = ',';
141 OS << Separator;
146 Separator = '+';
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
EventLogView.java 27 import org.eclipse.jface.action.Separator;
93 menuManager.add(new Separator());
97 menuManager.add(new Separator());
103 toolBarManager.add(new Separator());
107 toolBarManager.add(new Separator());
FileExplorerView.java 30 import org.eclipse.jface.action.Separator;
132 menuManager.add(new Separator());
134 menuManager.add(new Separator());
139 toolBarManager.add(new Separator());
141 toolBarManager.add(new Separator());
DeviceView.java 69 import org.eclipse.jface.action.Separator;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
TreeViewView.java 32 import org.eclipse.jface.action.Separator;
74 mm.add(new Separator());
77 mm.add(new Separator());
87 tm.add(new Separator());
90 tm.add(new Separator());
  /external/llvm/include/llvm/ADT/
StringRef.h 421 /// Split into two substrings around the first occurrence of a separator
424 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
425 /// such that (*this == LHS + Separator + RHS) is true and RHS is
426 /// maximal. If \p Separator is not in the string, then the result is a
429 /// \param Separator The character to split on.
431 std::pair<StringRef, StringRef> split(char Separator) const {
432 size_t Idx = find(Separator);
438 /// Split into two substrings around the first occurrence of a separator
441 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
442 /// such that (*this == LHS + Separator + RHS) is true and RHS i
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 563 * at most one separator. As such, separators are ordered in increasing
564 * priority, and setting a separator multiple times between text will
565 * result in the single separator with the highest priority being used.
569 static enum Separator {
571 // enum's ordinal() method is used when determining if a new separator
609 // The next separator to be inserted between two text nodes.
610 private Separator separator = Separator.None; field in class:HtmlTree.PlainTextPrinter
623 * Sets the next separator between two text nodes. A Space separator i
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 597 * at most one separator. As such, separators are ordered in increasing
598 * priority, and setting a separator multiple times between text will
599 * result in the single separator with the highest priority being used.
603 static enum Separator {
605 // enum's ordinal() method is used when determining if a new separator
643 // The next separator to be inserted between two text nodes.
644 private Separator separator = Separator.None; field in class:HtmlTree.PlainTextPrinter
657 * Sets the next separator between two text nodes. A Space separator i
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 13 import org.eclipse.jface.action.Separator;
44 new Separator().fill(menu, -1);
ListViewTypeMenu.java 36 import org.eclipse.jface.action.Separator;
74 new Separator().fill(menu, -1);
112 new Separator().fill(menu, -1);
121 new Separator().fill(menu, -1);
DynamicContextMenu.java 59 import org.eclipse.jface.action.Separator;
156 Separator sep = new Separator();
209 && !(action instanceof RuleAction.Separator)) {
223 mMenuManager.insertBefore(endId, new Separator());
239 mMenuManager.insertBefore(endId, new Separator());
251 mMenuManager.insertBefore(endId, new Separator());
278 mMenuManager.insertBefore(endId, new Separator());
295 mMenuManager.insertBefore(endId, new Separator());
299 mMenuManager.insertBefore(endId, new Separator());
    [all...]
PlayAnimationMenu.java 36 import org.eclipse.jface.action.Separator;
112 new Separator().fill(menu, -1);
122 new Separator().fill(menu, -1);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|
190 if list.empty? then list << String.new( File::Separator )
191 elsif list.first.empty? then list.first.replace( File::Separator )
205 return relative_list.join( File::Separator )
  /external/chromium/chrome/browser/ui/views/
first_run_search_engine_view.h 21 class Separator;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
OrientationMenuAction.java 30 import org.eclipse.jface.action.Separator;
74 manager.add(new Separator());
81 manager.add(new Separator());
84 manager.add(new Separator());
ThemeMenuAction.java 33 import org.eclipse.jface.action.Separator;
106 manager.add(new Separator());
114 manager.add(new Separator());
131 manager.add(new Separator());
153 manager.add(new Separator());
159 manager.add(new Separator());

Completed in 1118 milliseconds

1 2 3