HomeSort by relevance Sort by last modified time
    Searched defs:BitSet (Results 1 - 25 of 28) sorted by null

1 2

  /external/icu4c/test/perf/usetperf/
bitset.h 14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet {
25 BitSet();
26 ~BitSet();
bitset.cpp 11 #include "bitset.h"
20 BitSet::BitSet() {
26 BitSet::~BitSet() {
30 UBool BitSet::get(int32_t bitIndex) const {
37 void BitSet::set(int32_t bitIndex) {
46 void BitSet::clearAll() {
50 void BitSet::ensureCapacity(uint32_t minLen) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 2 * A BitSet similar to java.util.BitSet.
11 * representing the bitset. These are typically
14 org.antlr.runtime.BitSet = function(bits) {
16 bits = org.antlr.runtime.BitSet.BITS;
21 * An array of Numbers representing the BitSet.
30 org.antlr.lang.augmentObject(org.antlr.runtime.BitSet, {
34 * @memberOf org.antlr.runtime.BitSet
41 * @memberOf org.antlr.runtime.BitSet
51 * @memberOf org.antlr.runtime.BitSet
    [all...]
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 6 * file name: bitset.cpp
84 class BitSet : public UObject, public UnicodeContainable {
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
172 ~BitSet() {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 30 /**A stripped-down version of org.antlr.misc.BitSet that is just
34 public class BitSet {
49 public function BitSet(bits:Array = null) {
61 public static function of(... args):BitSet {
62 var s:BitSet = new BitSet();
70 public function or(a:BitSet):BitSet {
74 var s:BitSet = this.clone();
97 public function orInPlace(a:BitSet):void
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
BitSet.pm 1 package Test::ANTLR::Runtime::BitSet;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 43 * A stripped-down version of org.antlr.misc.BitSet that is just
49 public sealed class BitSet : ICloneable {
65 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
66 public BitSet()
71 public BitSet(ulong[] bits) {
76 public BitSet(IEnumerable<int> items)
82 /** <summary>Construct a bitset given the size</summary>
83 * <param name="nbits">The size of the bitset in bits</param>
85 public BitSet(int nbits) {
89 public static BitSet Of(int el)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 44 * A stripped-down version of org.antlr.misc.BitSet that is just
50 public sealed class BitSet : ICloneable
67 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
68 public BitSet()
75 public BitSet( ulong[] bits )
81 public BitSet( IEnumerable<int> items )
88 /** <summary>Construct a bitset given the size</summary>
89 * <param name="nbits">The size of the bitset in bits</param>
91 public BitSet( int nbits )
96 public static BitSet Of( int el
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 1 package ANTLR::Runtime::BitSet;
48 # Construct a bitset of size one word (64 bits)
75 # Construct a bitset given the size
89 my $bs = ANTLR::Runtime::BitSet->new({ size => $el + 1 });
146 return ANTLR::Runtime::BitSet->new(bits => $self->bits);
252 ANTLR::Runtime::BitSet - A bit set
266 A stripped-down version of org.antlr.misc.BitSet that is just good enough to
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 22 import java.util.BitSet;
27 BitSet bs = new BitSet();
36 private static void assertBitSet(BitSet bs, long[] longs, String s) {
55 // Test BitSet.valueOf(long[]).
56 assertBitSet(BitSet.valueOf(longs), longs, s);
57 // Test BitSet.valueOf(LongBuffer).
58 assertBitSet(BitSet.valueOf(LongBuffer.wrap(longs)), longs, s);
63 assertBitSet(BitSet.valueOf(LongBuffer.wrap(paddedLongs, 1, longs.length)), longs, s);
67 BitSet original = BitSet.valueOf(longs)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 38 /**A BitSet to replace java.util.BitSet.
42 * operations were added. I cannot contain a BitSet because there
53 public class BitSet implements IntSet, Cloneable {
67 /** Construct a bitset of size one word (64 bits) */
68 public BitSet() {
73 public BitSet(long[] bits_) {
77 /** Construct a bitset given the size
78 * @param nbits The size of the bitset in bits
80 public BitSet(int nbits)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 32 /**A stripped-down version of org.antlr.misc.BitSet that is just
36 public class BitSet implements Cloneable {
50 /** Construct a bitset of size one word (64 bits) */
51 public BitSet() {
56 public BitSet(long[] bits_) {
61 public BitSet(List items) {
69 /** Construct a bitset given the size
70 * @param nbits The size of the bitset in bits
72 public BitSet(int nbits) {
76 public static BitSet of(int el)
    [all...]
  /libcore/luni/src/main/java/java/util/
BitSet.java 29 * The {@code BitSet} class implements a
31 * Each element is either true or false. A {@code BitSet} is created with a given size and grows
34 public class BitSet implements Serializable, Cloneable {
74 * Creates a new {@code BitSet} with size equal to 64 bits.
76 public BitSet() {
81 * Creates a new {@code BitSet} with size equal to {@code bitCount}, rounded up to
86 public BitSet(int bitCount) {
94 private BitSet(long[] bits) {
106 BitSet clone = (BitSet) super.clone()
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 31 import java.util.BitSet;
129 private BitSet callerBlocks;
131 private BitSet retBlocks;
142 retBlocks = new BitSet(maxLabel);
143 callerBlocks = new BitSet(maxLabel);
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 427 milliseconds

1 2