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

1 2 3 4 5 6 7 8 91011>>

  /external/smali/util/src/main/java/org/jf/util/
BitSetUtils.java 34 import java.util.BitSet;
37 public static BitSet bitSetOfIndexes(int... indexes) {
38 BitSet bitSet = new BitSet();
40 bitSet.set(index);
42 return bitSet;
  /external/icu/icu4c/source/test/perf/usetperf/
bitset.h 18 * A simple, limited clone of the java.util.BitSet.
20 class BitSet {
29 BitSet();
30 ~BitSet();
bitset.cpp 15 #include "bitset.h"
24 BitSet::BitSet() {
30 BitSet::~BitSet() {
34 UBool BitSet::get(int32_t bitIndex) const {
41 void BitSet::set(int32_t bitIndex) {
50 void BitSet::clearAll() {
54 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...]
  /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...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 9 import org.antlr.runtime.BitSet;
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/writer/
FlagSetTest.java 21 import java.util.BitSet;
28 BitSet bs = new BitSet();
39 BitSet bs = new BitSet();
50 BitSet bs = new BitSet();
63 BitSet bs = new BitSet();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWifiConfiguration.java 7 import java.util.BitSet;
19 realObject.allowedKeyManagement = new BitSet();
20 realObject.allowedProtocols = new BitSet();
21 realObject.allowedAuthAlgorithms = new BitSet();
22 realObject.allowedPairwiseCiphers = new BitSet();
23 realObject.allowedGroupCiphers = new BitSet();
42 config.allowedKeyManagement = (BitSet) realObject.allowedKeyManagement.clone();
43 config.allowedProtocols = (BitSet) realObject.allowedProtocols.clone();
44 config.allowedAuthAlgorithms = (BitSet) realObject.allowedAuthAlgorithms.clone();
45 config.allowedPairwiseCiphers = (BitSet) realObject.allowedPairwiseCiphers.clone()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 22 import java.util.BitSet;
28 BitSet bs = new BitSet();
39 // 2^28 bytes for the bits in the BitSet, plus extra bytes for everything else
45 BitSet bitSet = new BitSet();
46 bitSet.set(Integer.MAX_VALUE);
47 assertEquals("{2147483647}", bitSet.toString());
53 private static void assertBitSet(BitSet bs, long[] longs, String s)
    [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) {
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
NormalizerData.java 14 import java.util.BitSet;
84 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) {
132 private BitSet isCompatibility = new BitSet();
139 private BitSet isExcluded = new BitSet();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
NormalizerData.java 13 import java.util.BitSet;
83 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) {
131 private BitSet isCompatibility = new BitSet();
138 private BitSet isExcluded = new BitSet();
  /external/tpm2/
Bits_fp.h 16 // BitSet()
20 void BitSet(unsigned int bitNum, // IN: number of the bit in 'bArray'
  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
BitSetTest.java 20 import java.util.BitSet;
26 BitSet eightbs;
29 BitSet bs = new BitSet();
30 // Default size for a BitSet should be 64 elements;
31 assertEquals("Created BitSet of incorrect size", 64, bs.size());
32 assertEquals("New BitSet had invalid string representation", "{}", bs
37 BitSet bs = new BitSet(128);
38 // Default size for a BitSet should be 64 elements
164 BitSet bitset = new BitSet(); local
396 BitSet bitset = new BitSet(30); local
596 BitSet bitset = new BitSet(30); local
811 BitSet bitset = new BitSet(); 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...]

Completed in 3141 milliseconds

1 2 3 4 5 6 7 8 91011>>