Home
last modified time | relevance | path

Searched refs:OPEN (Results 1 – 25 of 214) sorted by relevance

123456789

/external/guava/android/guava-tests/test/com/google/common/collect/
DGeneralRangeTest.java18 import static com.google.common.collect.BoundType.OPEN;
54 GeneralRange.range(ORDERING, i, OPEN, i, OPEN); in testCreateEmptyRangeOpenOpenFails()
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()
103 ORDERING.compare(i, 3) < 0 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), in testLowerRange()
118 ORDERING.compare(i, 3) > 0 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN),
138 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
140 GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN),
141 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 4, CLOSED)));
145 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
[all …]
DContiguousSetTest.java20 import static com.google.common.collect.BoundType.OPEN;
309 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); in testRange()
312 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); in testRange()
315 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)); in testRange()
318 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, CLOSED)); in testRange()
321 Range.open(0, 4), ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, OPEN)); in testRange()
324 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, OPEN)); in testRange()
326 Range.open(0, 4), ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, OPEN)); in testRange()
329 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, OPEN)); in testRange()
333 ContiguousSet.create(Range.closed(1, 3), integers()).range(CLOSED, OPEN)); in testRange()
[all …]
DRangeTest.java20 import static com.google.common.collect.BoundType.OPEN;
48 assertEquals(OPEN, range.lowerBoundType()); in testOpen()
51 assertEquals(OPEN, range.upperBoundType()); in testOpen()
97 assertEquals(OPEN, range.lowerBoundType()); in testOpenClosed()
114 assertEquals(OPEN, range.upperBoundType()); in testClosedOpen()
165 assertEquals(OPEN, range.upperBoundType()); in testEmpty1()
178 assertEquals(OPEN, range.lowerBoundType()); in testEmpty2()
195 assertEquals(OPEN, range.upperBoundType()); in testLessThan()
208 assertEquals(OPEN, range.lowerBoundType()); in testGreaterThan()
595 .addEqualityGroup(Range.open(1, 5), Range.range(1, OPEN, 5, OPEN)) in testEquals()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DGeneralRangeTest.java18 import static com.google.common.collect.BoundType.OPEN;
54 GeneralRange.range(ORDERING, i, OPEN, i, OPEN); in testCreateEmptyRangeOpenOpenFails()
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()
103 ORDERING.compare(i, 3) < 0 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), in testLowerRange()
118 ORDERING.compare(i, 3) > 0 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN),
138 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
140 GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN),
141 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 4, CLOSED)));
145 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN);
[all …]
DContiguousSetTest.java20 import static com.google.common.collect.BoundType.OPEN;
309 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); in testRange()
312 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); in testRange()
315 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)); in testRange()
318 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, CLOSED)); in testRange()
321 Range.open(0, 4), ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, OPEN)); in testRange()
324 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, OPEN)); in testRange()
326 Range.open(0, 4), ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, OPEN)); in testRange()
329 ContiguousSet.create(Range.openClosed(0, 3), integers()).range(OPEN, OPEN)); in testRange()
333 ContiguousSet.create(Range.closed(1, 3), integers()).range(CLOSED, OPEN)); in testRange()
[all …]
DRangeTest.java20 import static com.google.common.collect.BoundType.OPEN;
48 assertEquals(OPEN, range.lowerBoundType()); in testOpen()
51 assertEquals(OPEN, range.upperBoundType()); in testOpen()
97 assertEquals(OPEN, range.lowerBoundType()); in testOpenClosed()
114 assertEquals(OPEN, range.upperBoundType()); in testClosedOpen()
165 assertEquals(OPEN, range.upperBoundType()); in testEmpty1()
178 assertEquals(OPEN, range.lowerBoundType()); in testEmpty2()
195 assertEquals(OPEN, range.upperBoundType()); in testLessThan()
208 assertEquals(OPEN, range.lowerBoundType()); in testGreaterThan()
595 .addEqualityGroup(Range.open(1, 5), Range.range(1, OPEN, 5, OPEN)) in testEquals()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetNavigationTester.java18 import static com.google.common.collect.BoundType.OPEN;
146 assertNull(sortedMultiset.headMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
147 assertNull(sortedMultiset.tailMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
190 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry()); in testLower()
191 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry()); in testLower()
192 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry()); in testLower()
215 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry()); in testHigher()
216 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry()); in testHigher()
217 assertEquals(null, sortedMultiset.tailMultiset(c.getElement(), OPEN).firstEntry()); in testHigher()
294 expectAddFailure(sortedMultiset.tailMultiset(a.getElement(), OPEN), a); in testAddOutOfTailBoundsOne() local
[all …]
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetNavigationTester.java18 import static com.google.common.collect.BoundType.OPEN;
146 assertNull(sortedMultiset.headMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
147 assertNull(sortedMultiset.tailMultiset(e0(), OPEN).lastEntry()); in testSingletonMultisetNearby()
190 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry()); in testLower()
191 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry()); in testLower()
192 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry()); in testLower()
215 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry()); in testHigher()
216 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry()); in testHigher()
217 assertEquals(null, sortedMultiset.tailMultiset(c.getElement(), OPEN).firstEntry()); in testHigher()
294 expectAddFailure(sortedMultiset.tailMultiset(a.getElement(), OPEN), a); in testAddOutOfTailBoundsOne() local
[all …]
/external/guava/guava/src/com/google/common/collect/
DGeneralRange.java20 import static com.google.common.collect.BoundType.OPEN;
42 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN; in from()
45 BoundType upperBoundType = range.hasUpperBound() ? range.upperBoundType() : OPEN; in from()
58 return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN); in all()
67 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); in downTo()
76 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType); in upTo()
128 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN); in GeneralRange()
156 return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN); in tooLow()
165 return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN); in tooHigh()
188 if (cmp < 0 || (cmp == 0 && other.getLowerBoundType() == OPEN)) { in intersect()
[all …]
DSortedMultisets.java20 import static com.google.common.collect.BoundType.OPEN;
67 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); in subSet()
72 return multiset().headMultiset(toElement, OPEN).elementSet(); in headSet()
100 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry()); in lower()
115 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry()); in higher()
DBoundType.java29 OPEN(false), enumConstant
40 return inclusive ? CLOSED : OPEN; in forBoolean()
DCut.java320 return BoundType.OPEN; in typeAsUpperBound()
328 case OPEN: in withLowerBoundType()
342 case OPEN: in withUpperBoundType()
398 return BoundType.OPEN; in typeAsLowerBound()
409 case OPEN: in withLowerBoundType()
422 case OPEN: in withUpperBoundType()
/external/guava/android/guava/src/com/google/common/collect/
DGeneralRange.java20 import static com.google.common.collect.BoundType.OPEN;
42 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN; in from()
45 BoundType upperBoundType = range.hasUpperBound() ? range.upperBoundType() : OPEN; in from()
58 return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN); in all()
67 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); in downTo()
76 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType); in upTo()
128 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN); in GeneralRange()
156 return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN); in tooLow()
165 return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN); in tooHigh()
188 if (cmp < 0 || (cmp == 0 && other.getLowerBoundType() == OPEN)) { in intersect()
[all …]
DSortedMultisets.java20 import static com.google.common.collect.BoundType.OPEN;
67 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); in subSet()
72 return multiset().headMultiset(toElement, OPEN).elementSet(); in headSet()
100 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry()); in lower()
115 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry()); in higher()
DBoundType.java29 OPEN(false), enumConstant
40 return inclusive ? CLOSED : OPEN; in forBoolean()
DCut.java320 return BoundType.OPEN; in typeAsUpperBound()
328 case OPEN: in withLowerBoundType()
342 case OPEN: in withUpperBoundType()
398 return BoundType.OPEN; in typeAsLowerBound()
409 case OPEN: in withLowerBoundType()
422 case OPEN: in withUpperBoundType()
/external/elfutils/tests/
Drun-readelf-n.sh80 GA 16 GNU Build Attribute OPEN
83 GA 0 GNU Build Attribute OPEN
85 GA 0 GNU Build Attribute OPEN
87 GA 0 GNU Build Attribute OPEN
89 GA 0 GNU Build Attribute OPEN
91 GA 0 GNU Build Attribute OPEN
93 GA 0 GNU Build Attribute OPEN
95 GA 0 GNU Build Attribute OPEN
97 GA 0 GNU Build Attribute OPEN
99 GA 0 GNU Build Attribute OPEN
/external/mksh/src/
Dtree.c1012 #define OPEN(x) case x: name = #x; shf_puts(" {" #x ":", shf); /*}*/ in dumptree() macro
1014 OPEN(TCOM) in dumptree()
1042 OPEN(TEXEC) in dumptree()
1049 OPEN(TPAREN) in dumptree()
1051 OPEN(TPIPE) in dumptree()
1060 OPEN(TLIST) in dumptree()
1062 OPEN(TOR) in dumptree()
1064 OPEN(TAND) in dumptree()
1066 OPEN(TBANG) in dumptree()
1068 OPEN(TDBRACKET) in dumptree()
[all …]
/external/webrtc/p2p/base/
Dp2p_transport_channel_unittest.cc245 OPEN, // Open to the Internet enumerator
1066 case OPEN: in ConfigureEndpoint()
1225 P2P_TEST(x, OPEN) \
1238 P2P_TEST_SET(OPEN)
1260 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags, in TEST_F()
1280 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags, in TEST_F()
1318 ConfigureEndpoints(OPEN, OPEN, kOnlyLocalPorts, kOnlyLocalPorts); in TEST_F()
1351 ConfigureEndpoints(OPEN, OPEN, kOnlyLocalPorts, kOnlyLocalPorts); in TEST_F()
1378 ConfigureEndpoints(OPEN, OPEN, kOnlyLocalPorts, kOnlyLocalPorts); in TEST_F()
1405 ConfigureEndpoints(OPEN, OPEN, kOnlyLocalPorts, kOnlyLocalPorts); in TEST_F()
[all …]
/external/bcc/tools/
Dvfsstat_example.txt8 TIME READ/s WRITE/s CREATE/s OPEN/s FSYNC/s
27 TIME READ/s WRITE/s CREATE/s OPEN/s FSYNC/s
/external/curl/tests/data/
Dtest58618 [OPEN] counter: 1
19 [OPEN] counter: 2
Dtest59517 [OPEN] counter: 1
18 [OPEN] counter: 2
Dtest59617 [OPEN] counter: 1
18 [OPEN] counter: 2
/external/arm-trusted-firmware/docs/components/
Darm-sip-service.rst148 OPEN 2
184 OPEN section in DebugFS interface
196 uint32_t ``OPEN`` argument
231 previous call to OPEN. argument
239 uint32_t File descriptor id returned by OPEN
257 a previous call to OPEN.
265 uint32_t File descriptor id returned by OPEN
298 uint32_t File descriptor id returned by OPEN
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/src/
DRxObservable.kt53 private const val OPEN = 0 // open channel, still working constant
66 private val _signal = atomic(OPEN)
176 …if (!_signal.compareAndSet(OPEN, CLOSED)) return // abort, other thread invoked doLockedSignalComp… in signalCompleted()

123456789