Searched refs:CLOSED (Results 1 - 25 of 44) sorted by relevance

12

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DChannelCondition.java23 * something like <code>((cond & ChannelCondition.CLOSED) != 0)</code>.
33 public static final int CLOSED = 2; field in interface:ChannelCondition
/external/guava/guava/src/com/google/common/collect/
H A DBoundType.java38 CLOSED; enum constant in enum:BoundType
44 return inclusive ? CLOSED : OPEN;
H A DCut.java241 return BoundType.CLOSED;
248 case CLOSED:
259 case CLOSED:
302 return BoundType.CLOSED;
308 case CLOSED:
320 case CLOSED:
H A DRanges.java172 case CLOSED:
204 case CLOSED:
218 * the given value. The returned range is {@linkplain BoundType#CLOSED closed}
228 * The returned range is {@linkplain BoundType#CLOSED closed} on both ends.
H A DSortedMultisets.java51 return multiset().subMultiset(fromElement, BoundType.CLOSED, toElement,
60 return multiset().tailMultiset(fromElement, BoundType.CLOSED)
/external/guava/guava-tests/test/com/google/common/collect/
H A DGeneralRangeTest.java17 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,
[all...]
H A DRangesTest.java19 import static com.google.common.collect.BoundType.CLOSED;
72 Ranges.downTo(1, CLOSED))
78 Ranges.upTo(7, CLOSED))
87 Ranges.range(1, OPEN, 7, CLOSED))
90 Ranges.range(1, CLOSED, 7, CLOSED))
93 Ranges.range(1, CLOSED, 7, OPEN))
H A DBstRangeOpsTest.java17 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...]
H A DContiguousSetTest.java19 import static com.google.common.collect.BoundType.CLOSED;
233 Ranges.closed(1, 3).asSet(integers()).range(OPEN, CLOSED));
235 Ranges.closedOpen(1, 4).asSet(integers()).range(OPEN, CLOSED));
236 assertEquals(Ranges.openClosed(0, 3), Ranges.open(0, 4).asSet(integers()).range(OPEN, CLOSED));
238 Ranges.openClosed(0, 3).asSet(integers()).range(OPEN, CLOSED));
246 Ranges.closed(1, 3).asSet(integers()).range(CLOSED, OPEN));
248 Ranges.closedOpen(1, 4).asSet(integers()).range(CLOSED, OPEN));
249 assertEquals(Ranges.closedOpen(1, 4), Ranges.open(0, 4).asSet(integers()).range(CLOSED, OPEN));
251 Ranges.openClosed(0, 3).asSet(integers()).range(CLOSED, OPEN));
258 Ranges.<Integer>all().asSet(integers()).range(CLOSED, OPE
[all...]
H A DTreeMultisetTest.java19 import static com.google.common.collect.BoundType.CLOSED;
322 assertEquals(Integer.MAX_VALUE, ms.headMultiset("c", CLOSED).size());
323 assertEquals(Integer.MAX_VALUE, ms.headMultiset("b", CLOSED).size());
324 assertEquals(Integer.MAX_VALUE, ms.headMultiset("a", CLOSED).size());
326 assertEquals(3, ms.tailMultiset("c", CLOSED).size());
327 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("b", CLOSED).size());
328 assertEquals(Integer.MAX_VALUE, ms.tailMultiset("a", CLOSED).size());
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSState.java61 CLOSED("closed", StateClass.closed); enum constant in enum:DNSState
113 return CLOSED;
114 case CLOSED:
115 return CLOSED;
144 case CLOSED:
145 return CLOSED;
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetNavigationTester.java17 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),
[all...]
/external/webkit/Source/WebCore/websockets/
H A DWebSocket.cpp121 m_state = CLOSED;
128 m_state = CLOSED;
134 m_state = CLOSED;
140 m_state = CLOSED;
146 m_state = CLOSED;
164 if (m_state == CLOSED) {
176 if (m_state == CLOSED)
178 m_state = CLOSED;
212 ASSERT(m_state == CLOSED);
239 m_state = CLOSED;
[all...]
H A DWebSocket.idl48 const unsigned short CLOSED = 2;
/external/webkit/Source/WebCore/page/
H A DEventSource.idl49 const unsigned short CLOSED = 2;
H A DEventSource.cpp133 if (m_state != CLOSED)
162 if (m_state == CLOSED)
170 m_state = CLOSED;
215 m_state = CLOSED;
240 m_state = CLOSED;
246 m_state = CLOSED;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java19 import static com.google.common.collect.BoundType.CLOSED;
143 return range(CLOSED, CLOSED);
/external/ppp/pppd/
H A Dfsm.c103 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:
502 case CLOSED:
574 case CLOSED
[all...]
H A Dfsm.h125 #define CLOSED 2 /* Up, hasn't been opened */ macro
/external/replicaisland/src/com/replica/replicaisland/
H A DDoorAnimationComponent.java25 public static final int CLOSED = 0; field in class:DoorAnimationComponent.Animation
111 mSprite.playAnimation(Animation.CLOSED);
161 mSprite.playAnimation(Animation.CLOSED);
/external/chromium/net/websockets/
H A Dwebsocket.cc68 if (ready_state_ == CLOSING || ready_state_ == CLOSED) {
93 ready_state_ = CLOSED;
97 // If the readyState attribute is in the CLOSING or CLOSED state, do nothing
98 if (ready_state_ == CLOSING || ready_state_ == CLOSED)
136 ready_state_ = CLOSED;
139 if (ready_state_ != CLOSED) {
214 DCHECK_EQ(CLOSED, ready_state_);
286 case CLOSED:
468 ready_state_ = CLOSED;
H A Dwebsocket_job.cc76 DCHECK_EQ(CLOSED, state_);
122 case CLOSED:
134 state_ = CLOSED;
146 state_ = CLOSED;
178 if (state_ == CLOSED)
187 if (state_ == CLOSED)
216 if (state_ == CLOSED)
239 state_ = CLOSED;
H A Dwebsocket_job.h40 CLOSED = 3, enumerator in enum:net::WebSocketJob::State
/external/chromium/chrome/browser/chromeos/notifications/
H A Dnotification_browsertest.cc169 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
176 // [CLOSED] -add->[STICKY_AND_NEW] -mouse-> [KEEP_SIZE] -remove/add->
177 // [KEEP_SIZE] -remove-> [CLOSED] -add-> [STICKY_AND_NEW] -remove-> [CLOSED]
183 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
215 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
223 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
261 // [CLOSED] -add,add->[STICKY_AND_NEW] -stale-> [MINIMIZED] -remove->
262 // [MINIMIZED] -remove-> [CLOSED]
269 EXPECT_EQ(NotificationPanel::CLOSED, teste
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Ddirectory_manager.h34 CLOSED, enumerator in enum:syncable::DirectoryManagerEvent::__anon1945

Completed in 377 milliseconds

12