Home
last modified time | relevance | path

Searched refs:Cut (Results 1 – 25 of 74) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
DRanges.java75 Cut<C> lowerBound, Cut<C> upperBound) { in create()
87 return create(Cut.aboveValue(lower), Cut.belowValue(upper)); in open()
98 return create(Cut.belowValue(lower), Cut.aboveValue(upper)); in closed()
110 return create(Cut.belowValue(lower), Cut.belowValue(upper)); in closedOpen()
122 return create(Cut.aboveValue(lower), Cut.aboveValue(upper)); in openClosed()
138 Cut<C> lowerBound = (lowerType == BoundType.OPEN) in range()
139 ? Cut.aboveValue(lower) in range()
140 : Cut.belowValue(lower); in range()
141 Cut<C> upperBound = (upperType == BoundType.OPEN) in range()
142 ? Cut.belowValue(upper) in range()
[all …]
DCut.java37 abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { class
40 Cut(@Nullable C endpoint) { in Cut() method in Cut
49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType()
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType()
62 Cut<C> canonical(DiscreteDomain<C> domain) { in canonical()
68 public int compareTo(Cut<C> that) { in compareTo()
90 if (obj instanceof Cut) { in equals()
92 Cut<C> that = (Cut<C>) obj; in equals()
107 static <C extends Comparable> Cut<C> belowAll() { in belowAll()
108 return (Cut<C>) BelowAll.INSTANCE; in belowAll()
[all …]
DRange.java114 final Cut<C> lowerBound;
115 final Cut<C> upperBound;
117 Range(Cut<C> lowerBound, Cut<C> upperBound) { in Range()
130 return lowerBound != Cut.belowAll(); in hasLowerBound()
159 return upperBound != Cut.aboveAll(); in hasUpperBound()
314 Cut<C> newLower = Ordering.natural().max(lowerBound, other.lowerBound); in intersection()
315 Cut<C> newUpper = Ordering.natural().min(upperBound, other.upperBound); in intersection()
370 Cut<C> newLower = Ordering.natural().min(lowerBound, other.lowerBound); in span()
371 Cut<C> newUpper = Ordering.natural().max(upperBound, other.upperBound); in span()
451 Cut<C> lower = lowerBound.canonical(domain); in canonical()
[all …]
/external/chromium/chrome/browser/extensions/
Dextension_clipboard_api.cc46 render_view_host->Cut(); in RunImpl()
/external/guava/guava-tests/test/com/google/common/collect/
DRangeTest.java279 Cut<Integer> a = Ranges.lessThan(0).lowerBound; in testOrderingCuts()
280 Cut<Integer> b = Ranges.atLeast(0).lowerBound; in testOrderingCuts()
281 Cut<Integer> c = Ranges.greaterThan(0).lowerBound; in testOrderingCuts()
282 Cut<Integer> d = Ranges.atLeast(1).lowerBound; in testOrderingCuts()
283 Cut<Integer> e = Ranges.greaterThan(1).lowerBound; in testOrderingCuts()
284 Cut<Integer> f = Ranges.greaterThan(1).upperBound; in testOrderingCuts()
/external/webkit/Tools/QtTestBrowser/
Dmainwindow.cpp102 page()->action(QWebPage::Cut)->setShortcut(QKeySequence::Cut); in buildUI()
/external/chromium/chrome/browser/chromeos/frame/
Dbrowser_view.h57 virtual void Cut() OVERRIDE;
Dbrowser_view.cc317 void BrowserView::Cut() { in Cut() function in chromeos::BrowserView
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/
Dtab_manipulation.applescript26 cut selection -- Cut a piece of text and place it on the system clipboard.
/external/webkit/Source/WebKit/wx/
DWebView.cpp868 void wxWebView::Cut() in Cut() function in wxWebView
871 m_mainFrame->Cut(); in Cut()
919 Cut(); in OnKeyEvents()
935 Cut(); in OnKeyEvents()
DWebFrame.h126 void Cut();
DWebBrowserShell.cpp268 webview->Cut(); in OnCut()
/external/webkit/Source/WebKit2/UIProcess/qt/
DWebContextMenuProxyQt.cpp60 return QWKPage::Cut; in webActionForContextMenuAction()
/external/webkit/Source/WebKit2/UIProcess/API/qt/
Dqwkpage.h43 Cut, enumerator
Dqwkpage.cpp74 case QWKPage::Cut: in contextMenuActionForWebAction()
766 case Cut: in action()
/external/chromium/chrome/browser/ui/cocoa/
Dbrowser_window_cocoa.h103 virtual void Cut();
/external/chromium/chrome/browser/ui/panels/
Dpanel.h115 virtual void Cut();
Dpanel.cc306 void Panel::Cut() { in Cut() function in Panel
/external/chromium/chrome/browser/ui/
Dbrowser_window.h302 virtual void Cut() = 0;
/external/chromium/chrome/browser/automation/
Dautomation_provider.cc321 IPC_MESSAGE_HANDLER(AutomationMsg_Cut, Cut) in OnMessageReceived()
646 void AutomationProvider::Cut(int tab_handle) { in Cut() function in AutomationProvider
653 view->Cut(); in Cut()
Dautomation_provider.h295 void Cut(int tab_handle);
/external/icu4c/data/locales/
Dtzm.txt169 "Cut",
/external/webkit/Source/WebCore/English.lproj/
DLocalizable.strings106 /* Cut context menu item */
107 "Cut" = "Cut";
110 "Cut (Undo action name)" = "Cut";
/external/chromium/chrome/browser/ui/gtk/
Dbrowser_window_gtk.h125 virtual void Cut();
/external/hyphenation/
DREADME.nonstandard89 - Cut: length of the removed character sequence in the original word.

123