/external/guava/guava/src/com/google/common/collect/ |
BoundType.java | 21 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the 31 OPEN { 43 return OPEN; 51 return inclusive ? CLOSED : OPEN;
|
GeneralRange.java | 20 import static com.google.common.collect.BoundType.OPEN; 47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN; 51 BoundType upperBoundType = range.hasUpperBound() ? range.upperBoundType() : OPEN; 60 return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN); 69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); 78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType); 123 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN); 151 return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN); [all...] |
SortedMultisets.java | 20 import static com.google.common.collect.BoundType.OPEN; 65 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); 69 return multiset().headMultiset(toElement, OPEN).elementSet(); 96 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry()); 111 return getElementOrNull(multiset().tailMultiset(e, OPEN).firstEntry());
|
Cut.java | 250 return BoundType.OPEN; 256 case OPEN: 268 case OPEN: 308 return BoundType.OPEN; 315 case OPEN: 326 case OPEN:
|
Range.java | 43 * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the 47 * it is either open or unbounded. The construct {@code {x | statement}} is read "the set of all 52 * <tr><td>{@code (a..b)} <td>{@code {x | a < x < b}} <td>{@link Range#open open} 164 public static <C extends Comparable<?>> Range<C> open(C lower, C upper) { method in class:Range 209 * (open). 220 Cut<C> lowerBound = (lowerType == BoundType.OPEN) 223 Cut<C> upperBound = (upperType == BoundType.OPEN) 251 * either inclusive (closed) or exclusive (open). 258 case OPEN [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
GeneralRangeTest.java | 18 import static com.google.common.collect.BoundType.OPEN; 53 GeneralRange.range(ORDERING, i, OPEN, i, OPEN); 61 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); 70 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); 100 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooLow(i)); 113 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i)); 132 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); 133 assertEquals(GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN), [all...] |
ContiguousSetTest.java | 20 import static com.google.common.collect.BoundType.OPEN; 64 ContiguousSet.create(Range.open(0, 4), integers()), 68 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS), 177 assertEquals(1, ContiguousSet.create(Range.open(0, 4), integers()).first().intValue()); 184 assertEquals(3, ContiguousSet.create(Range.open(0, 4), integers()).last().intValue()); 196 set = ContiguousSet.create(Range.open(0, 4), integers()); 221 assertEquals(Range.closed(1, 3), ContiguousSet.create(Range.open(0, 4), integers()).range()); 226 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); 228 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); 230 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
GeneralRangeTest.java | 18 import static com.google.common.collect.BoundType.OPEN; 55 GeneralRange.range(ORDERING, i, OPEN, i, OPEN); 63 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, CLOSED, i, OPEN); 72 GeneralRange<Integer> range = GeneralRange.range(ORDERING, i, OPEN, i, CLOSED); 102 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooLow(i)); 115 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i)); 134 GeneralRange<Integer> range = GeneralRange.range(ORDERING, 2, CLOSED, 4, OPEN); 135 assertEquals(GeneralRange.range(ORDERING, 2, OPEN, 4, OPEN), [all...] |
ContiguousSetTest.java | 20 import static com.google.common.collect.BoundType.OPEN; 81 ContiguousSet.create(Range.open(0, 4), integers()), 85 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS), 215 assertEquals(1, ContiguousSet.create(Range.open(0, 4), integers()).first().intValue()); 222 assertEquals(3, ContiguousSet.create(Range.open(0, 4), integers()).last().intValue()); 234 set = ContiguousSet.create(Range.open(0, 4), integers()); 259 assertEquals(Range.closed(1, 3), ContiguousSet.create(Range.open(0, 4), integers()).range()); 264 ContiguousSet.create(Range.closed(1, 3), integers()).range(OPEN, CLOSED)); 266 ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(OPEN, CLOSED)); 268 ContiguousSet.create(Range.open(0, 4), integers()).range(OPEN, CLOSED)) [all...] |
RangeTest.java | 20 import static com.google.common.collect.BoundType.OPEN; 45 Range<Integer> range = Range.open(4, 8); 49 assertEquals(OPEN, range.lowerBoundType()); 52 assertEquals(OPEN, range.upperBoundType()); 60 Range.open(4, 3); 65 Range.open(3, 3); 98 assertEquals(OPEN, range.lowerBoundType()); 115 assertEquals(OPEN, range.upperBoundType()); 122 assertTrue(Range.closed(3, 5).isConnected(Range.open(5, 6))); 124 assertTrue(Range.open(3, 5).isConnected(Range.closed(5, 6))) [all...] |
ForwardingSortedMultisetTest.java | 18 import static com.google.common.collect.BoundType.OPEN; 259 forward().subMultiset("abcd", CLOSED, "dcba", OPEN); 264 forward().tailMultiset("last", OPEN);
|
ImmutableRangeMapTest.java | 17 import static com.google.common.collect.BoundType.OPEN; 55 if (i == j & lowerType == OPEN & upperType == OPEN) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetNavigationTester.java | 18 import static com.google.common.collect.BoundType.OPEN; 146 assertNull(sortedMultiset.headMultiset(samples.e0, OPEN).lastEntry()); 147 assertNull(sortedMultiset.tailMultiset(samples.e0, OPEN).lastEntry()); 189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry()); 190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry()); 191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry()); 214 assertEquals(c, sortedMultiset.tailMultiset(a.getElement(), OPEN).firstEntry()); 215 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), OPEN).firstEntry()); 216 assertEquals(null, sortedMultiset.tailMultiset(c.getElement(), OPEN).firstEntry()); 287 expectAddFailure(sortedMultiset.tailMultiset(a.getElement(), OPEN), a) [all...] |
/external/harfbuzz_ng/src/ |
dev-run.sh | 13 # If you want to open the result rendering using a GUI app, 14 # $ src/dev-run.sh open [FONT-FILE] [TEXT] 29 [ $1 = "open" ] && openimg=1 && shift 30 OPEN=xdg-open 31 [ "$(uname)" == "Darwin" ] && OPEN=open 53 $OPEN $tmp 66 $OPEN $tmp
|
/external/elfutils/tests/ |
run-readelf-n.sh | 80 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 [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
SortedMultisets.java | 20 import static com.google.common.collect.BoundType.OPEN; 62 return multiset().subMultiset(fromElement, CLOSED, toElement, OPEN).elementSet(); 66 return multiset().headMultiset(toElement, OPEN).elementSet();
|
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/ |
ImageFactory.java | 29 OPEN = getImage("folder24.png"); 72 public ImageIcon OPEN ;
|
/external/icu/icu4c/source/i18n/ |
funcrepl.cpp | 22 static const UChar OPEN[] = {40,32,0}; // "( " 105 rule.append(OPEN, 2);
|
name2uni.cpp | 32 static const UChar OPEN[] = {92,78,126,123,126,0}; // "\N~{~" 33 static const UChar OPEN_DELIM = 92; // '\\' first char of OPEN 130 UnicodeString openPat(TRUE, OPEN, -1); 137 // 0 - looking for open delimiter 138 // 1 - after open delimiter 140 int32_t openPos = -1; // open delim candidate pos 147 case 0: // looking for open delimiter 161 case 1: // after open delimiter 250 // open delimiter candidate.
|
/external/replicaisland/src/com/replica/replicaisland/ |
DoorAnimationComponent.java | 2 * Copyright (C) 2010 The Android Open Source Project 26 public static final int OPEN = 1; 64 private void open(float timeSinceTriggered, GameObject parentObject) { method in class:DoorAnimationComponent 71 // snap open. 72 mSprite.playAnimation(Animation.OPEN); 110 // snap open. 146 open(delta, (GameObject)parent); method 158 mSprite.playAnimation(Animation.OPEN);
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
BasicMarker.java | 156 private static String OPEN = "[ "; 183 sb.append(' ').append(OPEN);
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
DataChannel.java | 93 public enum State { CONNECTING, OPEN, CLOSING, CLOSED };
|
/device/google/wahoo/wifi_offload/ |
offload_utils.cpp | 2 * Copyright (C) 2016, The Android Open Source Project 79 if (hidlSecurityMode & android::hardware::wifi::offload::V1_0::SecurityMode::OPEN) { 80 chreSecurityMode |= wifi_offload::SecurityMode::OPEN; 96 if (chreSecurityMode & wifi_offload::SecurityMode::OPEN) { 97 hidlSecurityMode |= android::hardware::wifi::offload::V1_0::SecurityMode::OPEN;
|
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
GeneratedJavaParserConstants.java | 166 int OPEN = 67; 394 "\"open\"",
|
/external/ltp/testcases/kernel/syscalls/symlink/ |
symlink01.c | 116 * TEST IDENTIFIER : open01 (open) 117 * TEST TITLE : Create/Open a File For Reading Or Writing 192 * For open 194 * 2. Open an object file through a symbolic link file 210 #include <fcntl.h> /* open(2) system call */ 268 #define OPEN "open01" 303 "open(2) with (O_CREAT | O_RDWR) to create object file through symbolic link file and all writes, reads, and lseeks are ok", 304 "open(2) with O_RDWR of existing object file through symbolic link file and all writes, reads, and lseeks are ok", 305 "open(2) with (O_CREAT | O_EXCL) error is caught when creating object file through symbolic link file", 306 "open(2) error with O_RDWR is caught when processing symbolic link file which points at no object file" [all...] |