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

1 2 3

  /external/llvm/include/llvm/ADT/
StringExtras.h 170 StringRef Separator, std::input_iterator_tag) {
177 S += Separator;
185 StringRef Separator, std::forward_iterator_tag) {
190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
196 S += Separator;
202 /// Joins the strings in the range [Begin, End), adding Separator between
205 inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) {
207 return join_impl(Begin, End, Separator, tag());
StringRef.h 440 /// Split into two substrings around the first occurrence of a separator
443 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
444 /// such that (*this == LHS + Separator + RHS) is true and RHS is
445 /// maximal. If \p Separator is not in the string, then the result is a
448 /// \param Separator The character to split on.
450 std::pair<StringRef, StringRef> split(char Separator) const {
451 size_t Idx = find(Separator);
457 /// Split into two substrings around the first occurrence of a separator
460 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
461 /// such that (*this == LHS + Separator + RHS) is true and RHS i
    [all...]
  /external/llvm/lib/MC/
MCInst.cpp 52 StringRef Separator) const {
60 OS << Separator;
MCSectionMachO.cpp 129 char Separator = ',';
140 OS << Separator;
145 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...]
OldLogCatView.java 39 import org.eclipse.jface.action.Separator;
331 menuManager.add(new Separator());
333 menuManager.add(new Separator());
341 toolBarManager.add(new Separator());
345 toolBarManager.add(new Separator());
  /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());
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 636 * at most one separator. As such, separators are ordered in increasing
637 * priority, and setting a separator multiple times between text will
638 * result in the single separator with the highest priority being used.
642 static enum Separator {
644 // enum's ordinal() method is used when determining if a new separator
682 // The next separator to be inserted between two text nodes.
683 private Separator separator = Separator.None; field in class:HtmlTree.PlainTextPrinter
696 * Sets the next separator between two text nodes. A Space separator i
    [all...]
  /external/v8/test/mjsunit/
whitespaces.js 17 0x2028, // Line Separator LS
18 0x2029, // Paragraph Separator PS
22 0x180E, // Mongolian Vowel Separator
34 0x2028, // LINE SEPARATOR
35 0x2029, // PARAGRAPH SEPARATOR
  /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);
FragmentMenu.java 44 import org.eclipse.jface.action.Separator;
161 new Separator().fill(menu, -1);
172 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 )
  /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 34 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());
  /art/cmdline/
cmdline_types.h 398 template <char Separator>
415 return art::Join(list_, Separator);
418 static ParseStringList<Separator> Split(const std::string& str) {
420 art::Split(str, Separator, &list);
421 return ParseStringList<Separator>(std::move(list));
432 template <char Separator>
433 struct CmdlineType<ParseStringList<Separator>> : CmdlineTypeParser<ParseStringList<Separator>> {
434 using Result = CmdlineParseResult<ParseStringList<Separator>>;
437 return Result::Success(ParseStringList<Separator>::Split(args))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 34 import org.eclipse.jface.action.Separator;
227 toolBarManager.add(new Separator());
229 toolBarManager.add(new Separator());
231 toolBarManager.add(new Separator());
234 toolBarManager.add(new Separator());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 135 assertTrue(contextMenu.get(1) instanceof RuleAction.Separator);
138 assertTrue(contextMenu.get(4) instanceof RuleAction.Separator);
239 assertTrue(nestedActions.get(1) instanceof RuleAction.Separator);
243 assertTrue(nestedActions.get(5) instanceof RuleAction.Separator);
245 assertTrue(nestedActions.get(7) instanceof RuleAction.Separator);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 36 import org.eclipse.jface.action.Separator;
166 new Separator().fill(mMenu, -1);
  /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/
ComponentsView.java 28 import org.eclipse.jface.action.Separator;
243 manager.add(new Separator());
249 manager.add(new Separator());
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 339 // Show separator between Attendees
343 View Separator = prevItem.findViewById(R.id.contact_separator);
344 if (Separator != null) {
345 Separator.setVisibility(View.VISIBLE);

Completed in 531 milliseconds

1 2 3