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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
BoundType.java 21 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
31 OPEN {
43 return OPEN;
51 return inclusive ? CLOSED : OPEN;
GeneralRange.java 20 import static com.google.common.collect.BoundType.OPEN;
47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN;
51 BoundType upperBoundType = range.hasUpperBound() ? range.upperBoundType() : OPEN;
60 return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN);
69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN);
78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType);
123 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN);
151 return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN);
    [all...]
SortedMultisets.java 20 import static com.google.common.collect.BoundType.OPEN;
65 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet();
69 return multiset().headMultiset(toElement, OPEN).elementSet();
96 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry());
111 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry());
Cut.java 250 return BoundType.OPEN;
256 case OPEN:
268 case OPEN:
308 return BoundType.OPEN;
315 case OPEN:
326 case OPEN:
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
GeneralRangeTest.java 18 import static com.google.common.collect.BoundType.OPEN;
53 GeneralRange.range(ORDERING, i, OPEN, i, OPEN);
61 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN);
70 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED);
100 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooLow(i));
113 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i));
132 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
133 assertEquals(GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN),
    [all...]
ContiguousSetTest.java 20 import static com.google.common.collect.BoundType.OPEN;
64 ContiguousSet.create(Range.open(0, 4), integers()),
68 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
177 assertEquals(1, ContiguousSet.create(Range.open(0, 4), integers()).first().intValue());
184 assertEquals(3, ContiguousSet.create(Range.open(0, 4), integers()).last().intValue());
196 set = ContiguousSet.create(Range.open(0, 4), integers());
221 assertEquals(Range.closed(1, 3), ContiguousSet.create(Range.open(0, 4), integers()).range());
226 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED));
228 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED));
230 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
GeneralRangeTest.java 18 import static com.google.common.collect.BoundType.OPEN;
55 GeneralRange.range(ORDERING, i, OPEN, i, OPEN);
63 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN);
72 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED);
102 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooLow(i));
115 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i));
134 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
135 assertEquals(GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN),
    [all...]
ContiguousSetTest.java 20 import static com.google.common.collect.BoundType.OPEN;
81 ContiguousSet.create(Range.open(0, 4), integers()),
85 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
215 assertEquals(1, ContiguousSet.create(Range.open(0, 4), integers()).first().intValue());
222 assertEquals(3, ContiguousSet.create(Range.open(0, 4), integers()).last().intValue());
234 set = ContiguousSet.create(Range.open(0, 4), integers());
259 assertEquals(Range.closed(1, 3), ContiguousSet.create(Range.open(0, 4), integers()).range());
264 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED));
266 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED));
268 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED))
    [all...]
RangeTest.java 20 import static com.google.common.collect.BoundType.OPEN;
45 Range<Integer> range = Range.open(4, 8);
49 assertEquals(OPEN, range.lowerBoundType());
52 assertEquals(OPEN, range.upperBoundType());
60 Range.open(4, 3);
65 Range.open(3, 3);
98 assertEquals(OPEN, range.lowerBoundType());
115 assertEquals(OPEN, range.upperBoundType());
122 assertTrue(Range.closed(3, 5).isConnected(Range.open(5, 6)));
124 assertTrue(Range.open(3, 5).isConnected(Range.closed(5, 6)))
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 18 import static com.google.common.collect.BoundType.OPEN;
146 assertNull(sortedMultiset.headMultiset(samples.e0, OPEN).lastEntry());
147 assertNull(sortedMultiset.tailMultiset(samples.e0, OPEN).lastEntry());
189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry());
190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry());
191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry());
214 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry());
215 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry());
216 assertEquals(null, sortedMultiset.tailMultiset(c.getElement(), OPEN).firstEntry());
287 expectAddFailure(sortedMultiset.tailMultiset(a.getElement(), OPEN), a)
    [all...]
  /system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
preferred_network.h 2 * Copyright (C) 2017 The Android Open Source Project
29 OPEN = 0x1 << 0,
33 ALL_SECURITY_MODES_MASK = OPEN | WEP | PSK | EAP,
  /toolchain/binutils/binutils-2.27/binutils/
arlex.l 58 "OPEN" { return OPEN; }
73 "open" { return OPEN; }
arparse.y 60 %token OPEN
137 OPEN FILENAME
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 20 import static com.google.common.collect.BoundType.OPEN;
62 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet();
66 return multiset().headMultiset(toElement, OPEN).elementSet();
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 2 * Copyright (C) 2013, The Android Open Source Project
37 * -e security-type [OPEN|WEP64|WEP128|WPA_TKIP|WPA2_AES] -e frequency-band [2.4|5.0|auto]
42 OPEN, WEP64, WEP128, WPA_TKIP, WPA2_AES
85 case OPEN:
105 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
113 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
  /hardware/qcom/display/msm8084/liboverlay/pipes/
overlayGenPipe.h 68 /* is open */
90 /* Pipe open or closed */
93 OPEN
overlayGenPipe.cpp 85 pipeState = ret ? OPEN : CLOSED;
132 return (pipeState == OPEN);
  /hardware/qcom/display/msm8960/liboverlay/pipes/
overlayGenPipe.h 69 /* is open */
93 /* Pipe open or closed */
96 OPEN
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 29 OPEN = getImage("folder24.png");
72 public ImageIcon OPEN ;
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 22 static const UChar OPEN[] = {40,32,0}; // "( "
105 rule.append(OPEN, 2);
  /frameworks/data-binding/compilerCommon/
XMLLexer.g4 45 OPEN : '<' -> pushMode(INSIDE) ;
  /external/replicaisland/src/com/replica/replicaisland/
DoorAnimationComponent.java 2 * Copyright (C) 2010 The Android Open Source Project
26 public static final int OPEN = 1;
64 private void open(float timeSinceTriggered, GameObject parentObject) { method in class:DoorAnimationComponent
71 // snap open.
72 mSprite.playAnimation(Animation.OPEN);
110 // snap open.
146 open(delta, (GameObject)parent); method
158 mSprite.playAnimation(Animation.OPEN);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/
WifiConfigurationProvider.java 2 * Copyright 2016, The Android Open Source Project
60 wifiConf.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
75 wifiConf.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
89 wifiConf.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarker.java 156 private static String OPEN = "[ ";
183 sb.append(' ').append(OPEN);
  /frameworks/base/core/java/android/os/
FileObserver.java 2 * Copyright (C) 2006 The Android Open Source Project
50 /** Event type: Someone had a file or directory open for writing, and closed it */
52 /** Event type: Someone had a file or directory open read-only, and closed it */
55 public static final int OPEN = 0x00000020;
71 | CLOSE_NOWRITE | OPEN | MOVED_FROM | MOVED_TO | DELETE | CREATE

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 91011>>