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

1 2

  /external/guava/guava/src/com/google/common/collect/
TreeRangeSet.java 48 final NavigableMap<Cut<C>, Range<C>> rangesByLowerBound;
54 return new TreeRangeSet<C>(new TreeMap<Cut<C>, Range<C>>());
66 private TreeRangeSet(NavigableMap<Cut<C>, Range<C>> rangesByLowerCut) {
99 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(Cut.belowValue(value));
111 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound);
118 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound);
126 Entry<Cut<C>, Range<C>> firstEntry = rangesByLowerBound.firstEntry();
127 Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry();
144 Cut<C> lbToAdd = rangeToAdd.lowerBound
303 Cut<C> cut = (Cut<C>) key; local
    [all...]
Cut.java 32 * way, an interval can always be represented by a pair of {@code Cut} instances.
37 abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable {
40 Cut(@Nullable C endpoint) {
49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain);
59 * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
62 Cut<C> canonical(DiscreteDomain<C> domain) {
68 public int compareTo(Cut<C> that) {
90 if (obj instanceof Cut) {
    [all...]
Range.java 117 private static final Function<Range, Cut> LOWER_BOUND_FN = new Function<Range, Cut>() {
119 public Cut apply(Range range) {
125 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> lowerBoundFn() {
129 private static final Function<Range, Cut> UPPER_BOUND_FN = new Function<Range, Cut>() {
131 public Cut apply(Range range) {
137 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> upperBoundFn() {
152 Cut<C> lowerBound, Cut<C> upperBound)
    [all...]
TreeRangeMap.java 58 private final NavigableMap<Cut<K>, RangeMapEntry<K, V>> entriesByLowerBound;
73 RangeMapEntry(Cut<K> lowerBound, Cut<K> upperBound, V value) {
96 Cut<K> getLowerBound() {
100 Cut<K> getUpperBound() {
115 Map.Entry<Cut<K>, RangeMapEntry<K, V>> mapEntry =
116 entriesByLowerBound.floorEntry(Cut.belowValue(key));
147 Entry<Cut<K>, RangeMapEntry<K, V>> firstEntry = entriesByLowerBound.firstEntry();
148 Entry<Cut<K>, RangeMapEntry<K, V>> lastEntry = entriesByLowerBound.lastEntry();
157 private void putRangeMapEntry(Cut<K> lowerBound, Cut<K> upperBound, V value)
    [all...]
ImmutableRangeSet.java 129 Cut.belowValue(value),
217 Cut<C> lowerBound;
219 lowerBound = (index == 0) ? Cut.<C>belowAll() : ranges.get(index - 1).upperBound;
224 Cut<C> upperBound;
226 upperBound = Cut.<C>aboveAll();
ImmutableRangeMap.java 166 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER);
179 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER);
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
class_definition.py 45 def Cut(self, child):
46 self.suite.Cut(child)
function_definition.py 45 def Cut(self, child):
46 self.suite.Cut(child)
base_symbol.py 25 def Cut(self, child):
  /external/pdfium/xfa/fxfa/
cxfa_ffcombobox.h 33 Optional<WideString> Cut() override;
cxfa_fftextedit.h 55 Optional<WideString> Cut() override;
cxfa_ffwidget.h 110 virtual Optional<WideString> Cut();
cxfa_fftextedit.cpp 407 Optional<WideString> CXFA_FFTextEdit::Cut() {
408 return ToEdit(m_pNormalWidget.get())->Cut();
cxfa_ffcombobox.cpp 245 Optional<WideString> CXFA_FFComboBox::Cut() {
cxfa_ffwidget.cpp 487 Optional<WideString> CXFA_FFWidget::Cut() {
  /external/guava/guava-tests/test/com/google/common/collect/
TreeRangeSetTest.java 85 private static final ImmutableList<Cut<Integer>> CUTS_TO_TEST;
88 List<Cut<Integer>> cutsToTest = Lists.newArrayList();
90 cutsToTest.add(Cut.belowValue(i));
91 cutsToTest.add(Cut.aboveValue(i));
93 cutsToTest.add(Cut.<Integer>aboveAll());
94 cutsToTest.add(Cut.<Integer>belowAll());
100 NavigableMap<Cut<Integer>, Range<Integer>> expectedRangesByLowerBound = Maps.newTreeMap();
105 NavigableMap<Cut<Integer>, Range<Integer>> rangesByLowerBound = rangeSet.rangesByLowerBound;
276 NavigableMap<Cut<Integer>, Range<Integer>> expectedRangesByUpperBound = Maps.newTreeMap();
RangeTest.java 283 Cut<Integer> a = Range.lessThan(0).lowerBound;
284 Cut<Integer> b = Range.atLeast(0).lowerBound;
285 Cut<Integer> c = Range.greaterThan(0).lowerBound;
286 Cut<Integer> d = Range.atLeast(1).lowerBound;
287 Cut<Integer> e = Range.greaterThan(1).lowerBound;
288 Cut<Integer> f = Range.greaterThan(1).upperBound;
  /external/pdfium/xfa/fwl/
cfwl_combobox.h 87 Optional<WideString> EditCut() { return m_pEdit->Cut(); }
cfwl_edit.h 84 Optional<WideString> Cut();
cfwl_edit.cpp 332 Optional<WideString> CFWL_Edit::Cut() {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalAnalysis.cpp     [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
load.go 79 // Cut off the last field (delimited by ".") and find its parent
  /external/pdfium/fpdfsdk/
fpdfformfill.cpp 586 static_cast<CXFA_FFWidget*>(hWidget)->Cut().value_or(WideString());
  /external/syzkaller/pkg/repro/
repro.go 178 // Cut programs that were executed after crash.
  /external/cldr/tools/java/libs/
guava.jar 

Completed in 1329 milliseconds

1 2