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

1 2 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 57 IntSet complement(IntSet elements); method in interface:IntSet
IntervalSet.java 205 public IntSet complement(int minElement, int maxElement) { method in class:IntervalSet
206 return this.complement(IntervalSet.of(minElement,maxElement));
215 public IntSet complement(IntSet vocabulary) { method in class:IntervalSet
220 throw new IllegalArgumentException("can't complement with non IntervalSet ("+
261 // assume the whole unicode range here for the complement
267 return this.and(((IntervalSet)other).complement(COMPLETE_SET));
275 * Keep around, but 10-20-2005, I decided to make complement work w/o
  /external/guava/guava-tests/test/com/google/common/collect/
TreeRangeSetTest.java 149 TreeRangeSet<Integer> complement = TreeRangeSet.create(); local
150 complement.add(Range.<Integer>all());
151 complement.remove(range);
153 assertEquals(complement, rangeSet.complement());
154 assertThat(rangeSet.complement().asRanges())
155 .has().exactlyAs(complement.asRanges()).inOrder();
168 testEnclosing(rangeSet.complement());
179 testEnclosing(rangeSet.complement());
234 testViewAgainstExpected(expectedComplement(rangeSet), rangeSet.complement());
    [all...]
AbstractRangeSetTest.java 34 testInvariantsInternal(rangeSet.complement());
ImmutableRangeSetTest.java 147 assertEquals(ImmutableRangeSet.<Integer>all(), rangeSet.complement());
161 assertEquals(ImmutableRangeSet.<Integer>of(), rangeSet.complement());
182 assertEquals(expectedComplement, rangeSet.complement());
199 assertEquals(ImmutableRangeSet.of(Range.atMost(2)), rangeSet.complement());
216 assertEquals(ImmutableRangeSet.of(Range.greaterThan(3)), rangeSet.complement());
237 assertEquals(expectedComplement, rangeSet.complement());
257 assertEquals(expectedComplement, rangeSet.complement());
277 assertEquals(expectedComplement, rangeSet.complement());
374 assertEquals(mutable.complement(), built.complement());
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
rexpr.c 37 * ~ means complement the set in [..]. i.e. all characters not listed
78 static int atomList( char *p, int complement );
252 int complement = 0; local
257 if ( token == '~' ) {complement = 1; next();}
260 if ( atomList( s, complement ) == -1 ) return -1;
328 static int atomList(char *p, int complement)
330 static int atomList(p, complement)
332 int complement;
365 if ( complement )
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestIntervalSet.java 105 String result = (s.complement(vocabulary)).toString();
115 String result = (s.complement(vocabulary)).toString();
123 String result = (s.complement(vocabulary)).toString();
131 String result = (s.complement(vocabulary)).toString();
144 String result = (s.complement(vocabulary)).toString();
296 String result = (s.complement(s2)).toString();
304 String result = (s.complement(s2)).toString();
312 String result = (s.complement(1,Label.MAX_CHAR_VALUE)).toString();
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug012.go 18 var i34 int64 = ^0; // note: 2's complement means ^0 == -1
  /prebuilts/go/linux-x86/test/fixedbugs/
bug012.go 18 var i34 int64 = ^0; // note: 2's complement means ^0 == -1
  /external/guava/guava/src/com/google/common/collect/
RangeSet.java 104 * Returns a view of the complement of this {@code RangeSet}.
109 RangeSet<C> complement(); method in interface:RangeSet
ImmutableRangeSet.java 107 private ImmutableRangeSet(ImmutableList<Range<C>> ranges, ImmutableRangeSet<C> complement) {
109 this.complement = complement;
183 private transient ImmutableRangeSet<C> complement; field in class:ImmutableRangeSet
241 public ImmutableRangeSet<C> complement() { method in class:ImmutableRangeSet
242 ImmutableRangeSet<C> result = complement;
246 return complement = all();
248 return complement = of();
251 result = complement = new ImmutableRangeSet<C>(complementRanges, this);
562 } else if (!rangeSet.complement().encloses(range))
    [all...]
  /external/fec/
peak_sse2_assist.s 28 pxor %xmm1,%xmm0 # complement negatives
peak_sse_assist.s 28 pxor %mm1,%mm0 # complement negatives
peakval_sse2_assist.s 28 pxor %xmm1,%xmm0 # complement negatives
peakval_sse_assist.s 28 pxor %mm1,%mm0 # complement negatives
peak_mmx_assist.s 29 pxor %mm1,%mm0 # complement negatives
peakval_mmx_assist.s 29 pxor %mm1,%mm0 # complement negatives
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
SPVerifier.java 143 mFileSize = complement(fileSize);
144 mXsize = complement(xSize);
145 mYsize = complement(ySize);
219 private static int complement(int value) { method in class:SPVerifier
  /frameworks/base/services/core/java/com/android/server/hdmi/
HotplugDetectionAction.java 155 BitSet removed = complement(currentInfos, polledResult);
178 BitSet added = complement(polledResult, currentInfos);
209 private static BitSet complement(BitSet first, BitSet second) { method in class:HotplugDetectionAction
  /external/clang/utils/
token-delta.py 91 complement = sum(sets[:i] + sets[i+1:],[])
92 if self.getTestResult(complement):
93 return self.delta(complement, sets[:i] + sets[i+1:])
  /external/icu/icu4c/source/common/unicode/
uniset.h 58 * <code>complement</code> taking an argument, and a boolean NOT is
59 * implemented by <code>complement</code> with no argument. In terms
62 * is an asymmetric difference, and <code>complement</code> with no
63 * argument is a set complement with respect to the superset range
131 * specify their union. To complement a set, place a '^' immediately
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips-size-1.s 95 # Test shift instructions to complement 64-bit tests.
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
UnicodeSetClosure.java 116 original.complement();
117 original.complement();
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/jar/UnicodeSetRegression/
UnicodeSet.jar 
  /libcore/ojluni/src/main/java/java/util/
EnumSet.java 189 * @param s the enum set from whose complement to initialize this enum set
190 * @return The complement of the specified set in this set
195 result.complement();
389 abstract void complement(); method in class:EnumSet

Completed in 755 milliseconds

1 2 3 4 5 6 7 8 9