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

1 2 3 4 5 6 7 8 91011

  /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/brotli/java/org/brotli/dec/
RunningState.java 24 static final int CLOSED = 11;
State.java 10 import static org.brotli.dec.RunningState.CLOSED;
114 if (state.runningState == CLOSED) {
117 state.runningState = 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());
  /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/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);

Completed in 1140 milliseconds

1 2 3 4 5 6 7 8 91011