HomeSort by relevance Sort by last modified time
    Searched refs:BitSet (Results 1 - 25 of 280) 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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...]
  /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...]
  /external/robolectric/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...]
  /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...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HotplugDetectionAction.java 24 import java.util.BitSet;
144 BitSet currentInfos = infoListToBitSet(tv().getDeviceInfoList(false), audioOnly);
145 BitSet polledResult = addressListToBitSet(ackedAddress);
148 BitSet removed = complement(currentInfos, polledResult);
156 BitSet added = complement(polledResult, currentInfos);
164 private static BitSet infoListToBitSet(List<HdmiDeviceInfo> infoList, boolean audioOnly) {
165 BitSet set = new BitSet(NUM_OF_ADDRESS);
178 private static BitSet addressListToBitSet(List<Integer> list) {
179 BitSet set = new BitSet(NUM_OF_ADDRESS)
    [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...]
  /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...]
  /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...]

Completed in 1488 milliseconds

1 2 3 4 5 6 7 8 91011>>