/external/guava/guava-tests/test/com/google/common/collect/ |
D | GeneralRangeTest.java | 17 import static com.google.common.collect.BoundType.CLOSED; 63 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); in testCreateEmptyRangeClosedOpenSucceeds() 72 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); in testCreateEmptyRangeOpenClosedSucceeds() 81 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, CLOSED); in testCreateSingletonRangeSucceeds() 89 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 3, CLOSED, 3, CLOSED); in testSingletonRange() 100 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); in testLowerRange() 113 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 134 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); 136 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 4, CLOSED))); 140 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); [all …]
|
D | RangeTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 76 assertEquals(CLOSED, range.lowerBoundType()); in testClosed() 79 assertEquals(CLOSED, range.upperBoundType()); in testClosed() 101 assertEquals(CLOSED, range.upperBoundType()); in testOpenClosed() 112 assertEquals(CLOSED, range.lowerBoundType()); in testClosedOpen() 145 assertEquals(CLOSED, range.lowerBoundType()); in testSingleton() 148 assertEquals(CLOSED, range.upperBoundType()); in testSingleton() 161 assertEquals(CLOSED, range.lowerBoundType()); in testEmpty1() 180 assertEquals(CLOSED, range.upperBoundType()); in testEmpty2() 221 assertEquals(CLOSED, range.lowerBoundType()); in testAtLeast() [all …]
|
D | ContiguousSetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 251 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); in testRange() 253 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); in testRange() 255 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)); in testRange() 257 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, CLOSED)); in testRange() 269 ContiguousSet.create(Range.closed(1, 3), integers()).range(CLOSED, OPEN)); in testRange() 271 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN)); in testRange() 273 ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN)); in testRange() 275 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN)); in testRange() 282 ContiguousSet.create(Range.<Integer>all(), integers()).range(CLOSED, OPEN)); in testRange_unboundedRange() [all …]
|
D | TreeMultisetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 346 assertEquals(Integer.MAX_VALUE, ms.headMultiset("c", CLOSED).size()); in testSubMultisetSize() 347 assertEquals(Integer.MAX_VALUE, ms.headMultiset("b", CLOSED).size()); in testSubMultisetSize() 348 assertEquals(Integer.MAX_VALUE, ms.headMultiset("a", CLOSED).size()); in testSubMultisetSize() 350 assertEquals(3, ms.tailMultiset("c", CLOSED).size()); in testSubMultisetSize() 351 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("b", CLOSED).size()); in testSubMultisetSize() 352 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("a", CLOSED).size()); in testSubMultisetSize()
|
D | ForwardingSortedMultisetTest.java | 17 import static com.google.common.collect.BoundType.CLOSED; 254 forward().headMultiset("abcd", CLOSED); 259 forward().subMultiset("abcd", CLOSED, "dcba", OPEN);
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | GeneralRangeTest.java | 17 import static com.google.common.collect.BoundType.CLOSED; 61 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); in testCreateEmptyRangeClosedOpenSucceeds() 70 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); in testCreateEmptyRangeOpenClosedSucceeds() 79 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, CLOSED); in testCreateSingletonRangeSucceeds() 87 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 3, CLOSED, 3, CLOSED); in testSingletonRange() 98 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); in testLowerRange() 111 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 132 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); 134 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 4, CLOSED))); 138 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); [all …]
|
D | ContiguousSetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 226 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); in testRange() 228 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); in testRange() 230 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)); in testRange() 232 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, CLOSED)); in testRange() 244 ContiguousSet.create(Range.closed(1, 3), integers()).range(CLOSED, OPEN)); in testRange() 246 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN)); in testRange() 248 ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN)); in testRange() 250 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN)); in testRange() 257 ContiguousSet.create(Range.<Integer>all(), integers()).range(CLOSED, OPEN)); in testRange_unboundedRange() [all …]
|
D | TreeMultisetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 266 assertEquals(Integer.MAX_VALUE, ms.headMultiset("c", CLOSED).size()); in testSubMultisetSize() 267 assertEquals(Integer.MAX_VALUE, ms.headMultiset("b", CLOSED).size()); in testSubMultisetSize() 268 assertEquals(Integer.MAX_VALUE, ms.headMultiset("a", CLOSED).size()); in testSubMultisetSize() 270 assertEquals(3, ms.tailMultiset("c", CLOSED).size()); in testSubMultisetSize() 271 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("b", CLOSED).size()); in testSubMultisetSize() 272 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("a", CLOSED).size()); in testSubMultisetSize()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultisetNavigationTester.java | 17 import static com.google.common.collect.BoundType.CLOSED; 149 assertEquals(a, sortedMultiset.headMultiset(samples.e0, CLOSED).lastEntry()); in testSingletonMultisetNearby() 150 assertEquals(a, sortedMultiset.tailMultiset(samples.e0, CLOSED).firstEntry()); in testSingletonMultisetNearby() 197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry()); in testFloor() 198 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), CLOSED).lastEntry()); in testFloor() 199 assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry()); in testFloor() 206 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry()); in testCeiling() 207 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry()); in testCeiling() 208 assertEquals(c, sortedMultiset.tailMultiset(c.getElement(), CLOSED).firstEntry()); in testCeiling() 294 expectAddFailure(sortedMultiset.tailMultiset(b.getElement(), CLOSED), a); in testAddOutOfTailBoundsSeveral() local [all …]
|
/external/jmdns/src/javax/jmdns/impl/constants/ |
D | DNSState.java | 61 CLOSED("closed", StateClass.closed); enumConstant 113 return CLOSED; in advance() 114 case CLOSED: in advance() 115 return CLOSED; in advance() 144 case CLOSED: in revert() 145 return CLOSED; in revert()
|
/external/guava/guava/src/com/google/common/collect/ |
D | BoundType.java | 34 return CLOSED; in flip() 40 CLOSED { enumConstant 51 return inclusive ? CLOSED : OPEN; in forBoolean()
|
D | SortedMultisets.java | 19 import static com.google.common.collect.BoundType.CLOSED; 64 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); in subSet() 72 return multiset().tailMultiset(fromElement, CLOSED).elementSet(); in tailSet()
|
D | Cut.java | 247 return BoundType.CLOSED; in typeAsLowerBound() 254 case CLOSED: in withLowerBoundType() 265 case CLOSED: in withUpperBoundType() 311 return BoundType.CLOSED; in typeAsUpperBound() 317 case CLOSED: in withLowerBoundType() 329 case CLOSED: in withUpperBoundType()
|
D | RegularImmutableSortedMultiset.java | 19 import static com.google.common.collect.BoundType.CLOSED; 87 return getSubMultiset(0, elementSet.headIndex(upperBound, checkNotNull(boundType) == CLOSED)); in headMultiset() 92 return getSubMultiset(elementSet.tailIndex(lowerBound, checkNotNull(boundType) == CLOSED), in tailMultiset()
|
D | GeneralRange.java | 19 import static com.google.common.collect.BoundType.CLOSED; 212 upType = CLOSED; in intersect() 260 .append(lowerBoundType == CLOSED ? '[' : '(') in toString() 264 .append(upperBoundType == CLOSED ? ']' : ')') in toString()
|
D | RegularContiguousSet.java | 19 import static com.google.common.collect.BoundType.CLOSED; 152 return range(CLOSED, CLOSED);
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLEngineImpl.java | 87 CLOSED, enumConstant 134 if (engineState == EngineState.CLOSED || engineState == EngineState.CLOSED_OUTBOUND in beginHandshake() 181 engineState = EngineState.CLOSED; in beginHandshake() 191 if (engineState == EngineState.CLOSED) { in closeInbound() 195 engineState = EngineState.CLOSED; in closeInbound() 206 if (engineState == EngineState.CLOSED || engineState == EngineState.CLOSED_OUTBOUND) { in closeOutbound() 213 engineState = EngineState.CLOSED; in closeOutbound() 268 case CLOSED: in getHandshakeStatus() 318 return engineState == EngineState.CLOSED in isInboundDone() 330 return engineState == EngineState.CLOSED in isOutboundDone() [all …]
|
/external/ppp/pppd/ |
D | fsm.c | 103 f->state = CLOSED; 132 case CLOSED: 181 case CLOSED: 231 f->state = nextstate == CLOSING ? CLOSED : STOPPED; 261 f->state = CLOSED; 293 f->state = (f->state == CLOSING)? CLOSED: STOPPED; 422 case CLOSED: 502 case CLOSED: 574 case CLOSED: 650 f->state = CLOSED; [all …]
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | SortedMultisets.java | 19 import static com.google.common.collect.BoundType.CLOSED; 62 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); in subSet() 70 return multiset().tailMultiset(fromElement, CLOSED).elementSet(); in tailSet()
|
D | RegularContiguousSet.java | 19 import static com.google.common.collect.BoundType.CLOSED; 133 return range(CLOSED, CLOSED); in range()
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
D | SSLEngineImplTest.java | 457 SSLEngineResult.Status.CLOSED); in testCloseOutbound() 479 SSLEngineResult.Status.CLOSED); in testCloseInbound() 540 SSLEngineResult.Status.CLOSED, in testCloseInbound2() 634 SSLEngineResult.Status.CLOSED, in testErrorProcessing() 651 SSLEngineResult.Status.CLOSED, in testErrorProcessing() 1167 SSLEngineResult.Status.CLOSED, in doClose() 1180 SSLEngineResult.Status.CLOSED, in doClose() 1217 SSLEngineResult.Status.CLOSED, in doClose() 1242 SSLEngineResult.Status.CLOSED, in doClose() 1262 SSLEngineResult.Status.CLOSED, in doClose() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | DoorAnimationComponent.java | 25 public static final int CLOSED = 0; field in DoorAnimationComponent.Animation 111 mSprite.playAnimation(Animation.CLOSED); in close() 161 mSprite.playAnimation(Animation.CLOSED); in update()
|
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/ |
D | WebSocket.java | 16 UNCONNECTED, CONNECTING, OPEN, CLOSING, CLOSED enumConstant 153 if (state == State.CLOSED) { in doClose() 170 state = State.CLOSED; in doClose()
|
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
D | SSLEngineResultTest.java | 117 SSLEngineResult.Status.CLOSED)); in testStatus01() 140 SSLEngineResult.Status.CLOSED); in testStatus02()
|
/external/libvncserver/webclients/novnc/include/web-socket-js/ |
D | web_socket.js | 81 if (this.readyState == WebSocket.CLOSED || this.readyState == WebSocket.CLOSING) { 189 WebSocket.CLOSED = 3;
|