/external/guava/guava/src/com/google/common/collect/ |
BoundType.java | 20 * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not 21 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the 34 return CLOSED; 40 CLOSED { 51 return inclusive ? CLOSED : OPEN;
|
SortedMultisets.java | 19 import static com.google.common.collect.BoundType.CLOSED; 65 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); 73 return multiset().tailMultiset(fromElement, CLOSED).elementSet(); 101 return getElementOrNull(multiset().headMultiset(e, CLOSED).lastEntry()); 106 return getElementOrNull(multiset().tailMultiset(e, CLOSED).firstEntry());
|
RegularImmutableSortedMultiset.java | 19 import static com.google.common.collect.BoundType.CLOSED; 87 return getSubMultiset(0, elementSet.headIndex(upperBound, checkNotNull(boundType) == CLOSED)); 92 return getSubMultiset(elementSet.tailIndex(lowerBound, checkNotNull(boundType) == CLOSED),
|
Cut.java | 247 return BoundType.CLOSED; 254 case CLOSED: 265 case CLOSED: 311 return BoundType.CLOSED; 317 case CLOSED: 329 case CLOSED:
|
/cts/libs/json/src/com/android/json/stream/ |
JsonScope.java | 26 * it is closed. 38 * before it is closed. 65 * A document that's been closed and cannot be accessed. 67 CLOSED,
|
/frameworks/base/core/java/android/util/ |
JsonScope.java | 26 * it is closed. 38 * before it is closed. 65 * A document that's been closed and cannot be accessed. 67 CLOSED,
|
/frameworks/native/services/surfaceflinger/ |
Barrier.h | 29 inline Barrier() : state(CLOSED) { } 44 state = CLOSED; 52 while (state == CLOSED) { 57 enum { OPENED, CLOSED };
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
GeneralRangeTest.java | 17 import static com.google.common.collect.BoundType.CLOSED; 61 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); 70 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); 79 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, CLOSED); 87 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 3, CLOSED, 3, CLOSED); 98 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 111 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 132 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN) [all...] |
TreeMultisetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 266 assertEquals(Integer.MAX_VALUE, ms.headMultiset("c", CLOSED).size()); 267 assertEquals(Integer.MAX_VALUE, ms.headMultiset("b", CLOSED).size()); 268 assertEquals(Integer.MAX_VALUE, ms.headMultiset("a", CLOSED).size()); 270 assertEquals(3, ms.tailMultiset("c", CLOSED).size()); 271 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("b", CLOSED).size()); 272 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("a", CLOSED).size());
|
ContiguousSetTest.java | 19 import static com.google.common.collect.BoundType.CLOSED; 61 ContiguousSet.create(Range.closed(1, 3), integers()), 65 ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS), 73 ContiguousSet.create(Range.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), integers()), 76 ContiguousSet.create(Range.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), integers()), 79 ContiguousSet.create(Range.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), integers()), 109 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); 123 assertThat(ContiguousSet.create(Range.closed(1, 3), integers()).headSet(0)).isEmpty(); 127 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); 139 assertThat(ContiguousSet.create(Range.closed(1, 3), integers()).tailSet(4)).isEmpty() [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
GeneralRangeTest.java | 17 import static com.google.common.collect.BoundType.CLOSED; 63 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); 72 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); 81 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, CLOSED); 89 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 3, CLOSED, 3, CLOSED); 100 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 113 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 134 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN) [all...] |
/external/jmdns/src/javax/jmdns/impl/constants/ |
DNSState.java | 61 CLOSED("closed", StateClass.closed); 64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass 113 return CLOSED; 114 case CLOSED: 115 return CLOSED; 144 case CLOSED: 145 return CLOSED; 209 * @return <code>true</code> if closed state, <code>false</code> otherwis [all...] |
/packages/apps/Camera2/src/com/android/camera/device/ |
SingleDeviceStateMachine.java | 40 * Closed Opened -> Execute onDeviceOpening. 42 * Opening Closed -> Nothing. 43 * Opened Closed -> Execute onDeviceClosing. 45 * Closing Closed -> Nothing. 46 * Closed Closed -> Execute onDeviceClosed. 60 CLOSED 66 CLOSED 96 * state of the device are initially set to "Closed" 110 mTargetState = TargetState.CLOSED; [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetNavigationTester.java | 17 import static com.google.common.collect.BoundType.CLOSED; 149 assertEquals(a, sortedMultiset.headMultiset(samples.e0, CLOSED).lastEntry()); 150 assertEquals(a, sortedMultiset.tailMultiset(samples.e0, CLOSED).firstEntry()); 197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry()); 198 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), CLOSED).lastEntry()); 199 assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry()); 206 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry()); 207 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry()); 208 assertEquals(c, sortedMultiset.tailMultiset(c.getElement(), CLOSED).firstEntry()); 294 expectAddFailure(sortedMultiset.tailMultiset(b.getElement(), CLOSED), a) [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
SortedMultisets.java | 19 import static com.google.common.collect.BoundType.CLOSED; 62 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); 70 return multiset().tailMultiset(fromElement, CLOSED).elementSet();
|
RegularContiguousSet.java | 19 import static com.google.common.collect.BoundType.CLOSED; 127 ? ContiguousSet.create(Range.closed(lowerEndpoint, upperEndpoint), domain) 133 return range(CLOSED, CLOSED);
|
/hardware/qcom/display/msm8084/liboverlay/pipes/ |
overlayGenPipe.cpp | 36 pipeState(CLOSED), mCtrl(new Ctrl(dpy)), mData(new Data(dpy)) { 85 pipeState = ret ? OPEN : CLOSED; 91 OVASSERT(isOpen(), "State is closed, cannot queueBuffer"); 128 return (pipeState == CLOSED); 136 pipeState = CLOSED;
|
overlayGenPipe.h | 66 /* is closed */ 83 /* set Closed pipe */ 90 /* Pipe open or closed */ 92 CLOSED,
|
/hardware/qcom/display/msm8960/liboverlay/pipes/ |
overlayGenPipe.cpp | 37 mRotDownscaleOpt(false), mPreRotated(false), pipeState(CLOSED) { 145 pipeState = CLOSED; 165 pipeState = ret ? OPEN : CLOSED; 171 OVASSERT(isOpen(), "State is closed, cannot queueBuffer"); 227 return (pipeState == CLOSED); 235 pipeState = CLOSED;
|
overlayGenPipe.h | 67 /* is closed */ 79 /* set Closed pipe */ 93 /* Pipe open or closed */ 95 CLOSED,
|
/libcore/ojluni/src/main/java/javax/net/ssl/ |
SSLEngineResult.java | 94 * The operation just closed this side of the 96 * could not be completed because it was already closed. 98 CLOSED;
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
OpenSSLEngineImpl.java | 41 import static javax.net.ssl.SSLEngineResult.Status.CLOSED; 91 new SSLEngineResult(CLOSED, NEED_UNWRAP, 0, 0); 94 new SSLEngineResult(CLOSED, NEED_WRAP, 0, 0); 96 new SSLEngineResult(CLOSED, NOT_HANDSHAKING, 0, 0); 146 CLOSED, 338 case CLOSED: 339 throw new IllegalStateException("Engine has already been closed"); 375 engineState = EngineState.CLOSED; 384 if (engineState == EngineState.CLOSED) { 388 engineState = EngineState.CLOSED; [all...] |
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
WebSocketChannelClient.java | 60 NEW, CONNECTED, REGISTERED, CLOSED, ERROR 146 case CLOSED: 147 Log.e(TAG, "WebSocket send() in error or closed state : " + message); 186 state = WebSocketConnectionState.CLOSED; 264 Log.d(TAG, "WebSocket connection closed. Code: " + code 273 if (state != WebSocketConnectionState.CLOSED) { 274 state = WebSocketConnectionState.CLOSED;
|
/external/ppp/pppd/ |
fsm.c | 103 f->state = CLOSED; 132 case CLOSED: 181 case CLOSED: 231 f->state = nextstate == CLOSING ? CLOSED : STOPPED; 247 * the CLOSED state. 261 f->state = CLOSED; 293 f->state = (f->state == CLOSING)? CLOSED: STOPPED; 422 case CLOSED: 423 /* Go away, we're closed */ 502 case CLOSED [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
DoorAnimationComponent.java | 25 public static final int CLOSED = 0; 111 mSprite.playAnimation(Animation.CLOSED); 161 mSprite.playAnimation(Animation.CLOSED);
|