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

1 2 3 4 5 6

  /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/src/com/google/common/collect/
BoundType.java 21 * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not
22 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
38 CLOSED;
44 return inclusive ? CLOSED : OPEN;
  /external/guava/guava-tests/test/com/google/common/collect/
GeneralRangeTest.java 17 import static com.google.common.collect.BoundType.CLOSED;
64 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN);
73 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED);
82 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, CLOSED);
90 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 3, CLOSED, 3, CLOSED);
101 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i));
114 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i));
135 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN)
    [all...]
RangesTest.java 19 import static com.google.common.collect.BoundType.CLOSED;
37 assertEquals(Ranges.closed(0, 0), Ranges.singleton(0));
38 assertEquals(Ranges.closed(9, 9), Ranges.singleton(9));
42 assertEquals(Ranges.closed(0, 0), Ranges.encloseAll(Arrays.asList(0)));
43 assertEquals(Ranges.closed(-3, 5), Ranges.encloseAll(Arrays.asList(5, -3)));
44 assertEquals(Ranges.closed(-3, 5), Ranges.encloseAll(Arrays.asList(1, 2, 2, 2, 5, -3, 0, -1)));
72 Ranges.downTo(1, CLOSED))
78 Ranges.upTo(7, CLOSED))
87 Ranges.range(1, OPEN, 7, CLOSED))
89 Ranges.closed(1, 7)
    [all...]
BstRangeOpsTest.java 17 import static com.google.common.collect.BoundType.CLOSED;
80 if (type == BoundType.CLOSED) {
104 if (ub == BoundType.CLOSED) {
142 GeneralRange<Character> range1 = GeneralRange.downTo(Ordering.natural(), 'f', CLOSED);
148 GeneralRange<Character> range3 = GeneralRange.downTo(Ordering.natural(), 'a', CLOSED);
157 GeneralRange<Character> range6 = GeneralRange.downTo(Ordering.natural(), 'c', CLOSED);
175 GeneralRange<Character> range1 = GeneralRange.upTo(Ordering.natural(), 'f', CLOSED);
181 GeneralRange<Character> range3 = GeneralRange.upTo(Ordering.natural(), 'a', CLOSED);
190 GeneralRange<Character> range6 = GeneralRange.upTo(Ordering.natural(), 'c', CLOSED);
209 GeneralRange.range(Ordering.natural(), 'c', OPEN, 'f', CLOSED);
    [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...]
  /external/chromium_org/ppapi/shared_impl/
ppb_tcp_socket_shared.cc 33 state_ = success ? CONNECTED : CLOSED;
36 state_ = success ? SSL_CONNECTED : CLOSED;
43 state_ = CLOSED;
85 return state_ != INITIAL && state_ != CLOSED;
ppb_tcp_socket_shared.h 25 // The socket has been closed.
26 CLOSED
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 33 private Status status = Status.CLOSED;
165 * <li>WorkgroupQueue.Status.CLOSED -- the queue is NOT active and NOT accepting new
178 * occur when the workgroup has closed because regular support hours have closed,
186 public static final Status CLOSED = new Status("closed");
190 * that can be converted to a status are: "open", "active", and "closed".
206 else if (CLOSED.toString().equals(type)) {
207 return CLOSED;
  /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/chromium_org/google_apis/gcm/base/
socket_stream.cc 74 DCHECK_NE(GetState(), CLOSED);
80 DCHECK_NE(GetState(), CLOSED);
87 DCHECK_NE(GetState(), CLOSED);
124 DCHECK_NE(GetState(), CLOSED);
148 return CLOSED;
164 if (GetState() == CLOSED)
223 DCHECK_NE(GetState(), CLOSED);
244 DCHECK_NE(GetState(), CLOSED);
277 return CLOSED;
297 if (GetState() == CLOSED)
    [all...]
  /external/chromium_org/components/web_modal/
web_contents_modal_dialog_manager_unittest.cc 25 CLOSED
66 tracker_->SetState(NativeManagerTracker::CLOSED);
263 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker1.state_);
264 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker2.state_);
281 // dialogs are closed.
314 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker1.state_);
323 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker1.state_);
325 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker3.state_);
333 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker1.state_);
334 EXPECT_EQ(NativeManagerTracker::CLOSED, tracker2.state_)
    [all...]
  /external/chromium_org/remoting/protocol/
session.h 47 // Session has been closed.
48 CLOSED,
61 // or CLOSED or FAILED.
87 // connection is closed.
91 // Returned pointer is valid until connection is closed.
107 // destroyed, unless the state is set to FAILED or 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/msm8226/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");
124 return (pipeState == CLOSED);
132 pipeState = CLOSED;
overlayGenPipe.h 66 /* is closed */
81 /* set Closed pipe */
88 /* Pipe open or closed */
90 CLOSED,
  /hardware/qcom/display/msm8974/liboverlay/pipes/
overlayGenPipe.cpp 37 pipeState(CLOSED) {
123 pipeState = ret ? OPEN : CLOSED;
129 OVASSERT(isOpen(), "State is closed, cannot queueBuffer");
163 return (pipeState == CLOSED);
171 pipeState = CLOSED;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.idl 48 const unsigned short CLOSED = 2;
EventSource.cpp 111 ASSERT(m_state == CLOSED);
163 if (m_state != CLOSED)
198 if (m_state == CLOSED) {
203 // Stop trying to reconnect if EventSource was explicitly closed or if ActiveDOMObject::stop() was called.
212 m_state = CLOSED;
295 ASSERT(m_state != CLOSED);
299 m_state = CLOSED;
323 m_state = CLOSED;
327 ASSERT(m_state == CLOSED);
366 if (m_state == CLOSED)
    [all...]
  /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,
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 288 m_state = CLOSED;
293 m_state = CLOSED;
299 m_state = CLOSED;
304 m_state = CLOSED;
316 m_state = CLOSED;
326 m_state = CLOSED;
335 m_state = CLOSED;
347 m_state = CLOSED;
375 logError("WebSocket is already in CLOSING or CLOSED state.");
401 // No exception is raised if the connection was once established but has subsequently been closed
    [all...]

Completed in 666 milliseconds

1 2 3 4 5 6