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

1 2 3 4 5 6 7 8 910

  /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/Java/src/main/java/org/antlr/runtime/
MismatchedSetException.java 31 public BitSet expecting;
36 public MismatchedSetException(BitSet expecting, IntStream input) {
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...]
MismatchedNotSetException.java 34 public MismatchedNotSetException(BitSet expecting, IntStream input) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 807 public static final BitSet FOLLOW_declaration_in_program43 = new BitSet(new long[]{0x0000000000000192L});
808 public static final BitSet FOLLOW_variable_in_declaration63 = new BitSet(new long[]{0x0000000000000002L});
809 public static final BitSet FOLLOW_FUNC_DECL_in_declaration74 = new BitSet(new long[]{0x0000000000000004L});
810 public static final BitSet FOLLOW_functionHeader_in_declaration76 = new BitSet(new long[]{0x0000000000000008L});
811 public static final BitSet FOLLOW_FUNC_DEF_in_declaration88 = new BitSet(new long[]{0x0000000000000004L})
    [all...]
SimpleCParser.java     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 807 public static final BitSet FOLLOW_declaration_in_program43 = new BitSet(new long[]{0x0000000000000192L});
808 public static final BitSet FOLLOW_variable_in_declaration63 = new BitSet(new long[]{0x0000000000000002L});
809 public static final BitSet FOLLOW_FUNC_DECL_in_declaration74 = new BitSet(new long[]{0x0000000000000004L});
810 public static final BitSet FOLLOW_functionHeader_in_declaration76 = new BitSet(new long[]{0x0000000000000008L});
811 public static final BitSet FOLLOW_FUNC_DEF_in_declaration88 = new BitSet(new long[]{0x0000000000000004L})
    [all...]
SimpleCParser.java     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedNotSetException.as 32 public function MismatchedNotSetException(expecting:BitSet, input:IntStream) {
MismatchedSetException.as 31 public var expecting:BitSet;
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
  /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/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedSetException.cs 41 private readonly BitSet _expecting;
54 public MismatchedSetException(BitSet expecting, IIntStream input)
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
74 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
77 public BitSet Expecting {
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/
MismatchedSetException.cs 43 private readonly BitSet _expecting;
59 public MismatchedSetException( BitSet expecting, IIntStream input )
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
86 public BitSet Expecting
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/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
BitSetTest.java 20 import java.util.BitSet;
26 BitSet eightbs;
29 * @tests java.util.BitSet#BitSet()
32 // Test for method java.util.BitSet()
33 BitSet bs = new BitSet();
34 // Default size for a BitSet should be 64 elements;
36 assertEquals("Created BitSet of incorrect size", 64, bs.size());
37 assertEquals("New BitSet had invalid string representation", "{}", b
206 BitSet bitset = new BitSet(); local
449 BitSet bitset = new BitSet(30); local
660 BitSet bitset = new BitSet(); local
868 BitSet bitset = new BitSet(30); local
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 20 import org.antlr.runtime.BitSet;
    [all...]
  /cts/tools/dasm/src/java_cup/
terminal_set.java 4 import java.util.BitSet;
6 /** A set of terminals implemented as a bitset.
19 /* allocate the bitset at what is probably the right size */
20 _elements = new BitSet(terminal.number());
32 _elements = (BitSet)other._elements.clone();
46 /** Bitset to implement the actual set. */
47 protected BitSet _elements;
104 BitSet copy_other = (BitSet)other._elements.clone();
172 BitSet copy = (BitSet)_elements.clone()
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
BitSetTest.java 20 import java.util.BitSet;
24 BitSet eightbs;
27 BitSet bs = new BitSet();
28 // Default size for a BitSet should be 64 elements;
29 assertEquals("Created BitSet of incorrect size", 64, bs.size());
30 assertEquals("New BitSet had invalid string representation", "{}", bs.toString());
34 BitSet bs = new BitSet(128);
35 // Default size for a BitSet should be 64 elements
149 BitSet bitset = new BitSet(); local
356 BitSet bitset = new BitSet(30); local
555 BitSet bitset = new BitSet(30); local
764 BitSet bitset = new BitSet(); local
    [all...]
  /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/apache-http/src/org/apache/commons/codec/net/
QCodec.java 20 import java.util.BitSet;
54 * BitSet of printable characters as defined in RFC 1522.
56 private static final BitSet PRINTABLE_CHARS = new BitSet(256);
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11x.java 25 import java.util.BitSet;
74 public BitSet compatibleRegs(DalvInsn insn) {
76 BitSet bits = new BitSet(1);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11x.java 25 import java.util.BitSet;
74 public BitSet compatibleRegs(DalvInsn insn) {
76 BitSet bits = new BitSet(1);

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 910