Searched refs:BitSet (Results 1 - 25 of 177) sorted by relevance

12345678

/external/smali/util/src/main/java/org/jf/util/
H A DBitSetUtils.java34 import java.util.BitSet;
37 public static BitSet bitSetOfIndexes(int... indexes) {
38 BitSet bitSet = new BitSet();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedSetException.java31 public BitSet expecting;
36 public MismatchedSetException(BitSet expecting, IntStream input) {
H A DBitSet.java32 /**A stripped-down version of org.antlr.misc.BitSet that is just
36 public class BitSet implements Cloneable { class in inherits:Cloneable
51 public BitSet() { method in class:BitSet
56 public BitSet(long[] bits_) { method in class:BitSet
61 public BitSet(List items) { method in class:BitSet
72 public BitSet(int nbits) { method in class:BitSet
76 public static BitSet of(int el) {
77 BitSet s = new BitSet(el + 1);
82 public static BitSet o
[all...]
H A DMismatchedNotSetException.java34 public MismatchedNotSetException(BitSet expecting, IntStream input) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java807 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(ne
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java807 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(ne
[all...]
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dbitset.h14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet { class
25 BitSet();
26 ~BitSet();
H A Dbitset.cpp20 BitSet::BitSet() { function in class: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/
H A Dbitset.h14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet { class
25 BitSet();
26 ~BitSet();
H A Dbitset.cpp20 BitSet::BitSet() { function in class: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/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java9 import org.antlr.runtime.BitSet;
6981 public static final BitSet FOLLOW_I_CLASS_DEF_in_smali_file52 = new BitSet(new long[]{0x0000000000000004L});
6982 public static final BitSet FOLLOW_header_in_smali_file54 = new BitSet(new long[]{0x0000000000000000L,0x0000000000000000L,0x0000000000000004L});
6983 public static final BitSet FOLLOW_methods_in_smali_file56 = new BitSet(new long[]{0x0000000000000000L,0x0200000000000000L});
6984 public static final BitSet FOLLOW_fields_in_smali_file58 = new BitSet(new long[]{0x0000000000000000L,0x0000040000000000L});
6985 public static final BitSet FOLLOW_annotations_in_smali_file6
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWifiConfiguration.java7 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) realObjec
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedNotSetException.as32 public function MismatchedNotSetException(expecting:BitSet, input:IntStream) {
H A DMismatchedSetException.as31 public var expecting:BitSet;
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedSetException.cs41 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 {
H A DBitSet.cs43 * A stripped-down version of org.antlr.misc.BitSet that is just
49 public sealed class BitSet : ICloneable { class in namespace:Antlr.Runtime
66 public BitSet() method in class:Antlr.Runtime.BitSet
71 public BitSet(ulong[] bits) { method in class:Antlr.Runtime.BitSet
76 public BitSet(IEnumerable<int> items) method in class:Antlr.Runtime.BitSet
85 public BitSet(int nbits) { method in class:Antlr.Runtime.BitSet
89 public static BitSet Of(int el) {
90 BitSet s = new BitSet(el + 1);
95 public static BitSet O
[all...]
H A DMismatchedNotSetException.cs51 public MismatchedNotSetException(BitSet expecting, IIntStream input)
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input)
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedSetException.cs43 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
H A DBitSet.cs44 * A stripped-down version of org.antlr.misc.BitSet that is just
50 public sealed class BitSet : ICloneable class in namespace:Antlr.Runtime
68 public BitSet() method in class:Antlr.Runtime.BitSet
75 public BitSet( ulong[] bits ) method in class:Antlr.Runtime.BitSet
81 public BitSet( IEnumerable<int> items ) method in class:Antlr.Runtime.BitSet
91 public BitSet( int nbits ) method in class:Antlr.Runtime.BitSet
96 public static BitSet Of( int el )
98 BitSet s = new BitSet( el + 1 );
103 public static BitSet O
[all...]
H A DMismatchedNotSetException.cs56 public MismatchedNotSetException(BitSet expecting, IIntStream input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBitSet.java38 /**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 { class in inherits:IntSet,Cloneable
68 public BitSet() { method in class:BitSet
73 public BitSet(long[] bits_) { method in class:BitSet
80 public BitSet(int nbits) { method in class:BitSet
97 if ( set instanceof BitSet ) {
98 this.orInPlace((BitSet)set);
105 this.orInPlace(BitSet
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaParser.java20 import org.antlr.runtime.BitSet;
19987 public static final BitSet FOLLOW_annotations_in_compilationUnit64 = new BitSet(new long[]{0x0800000000000000L});
19988 public static final BitSet FOLLOW_packageDeclaration_in_compilationUnit93 = new BitSet(new long[]{0x7290281010000002L,0x0004000000101226L});
19989 public static final BitSet FOLLOW_importDeclaration_in_compilationUnit115 = new BitSet(new long[]{0x7290281010000002L,0x0004000000101226L});
19990 public static final BitSet FOLLOW_typeDeclaration_in_compilationUnit137 = new BitSet(new long[]{0x7280281010000002L,0x0004000000101226L});
19991 public static final BitSet FOLLOW_PACKAGE_in_packageDeclaration16
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.cs815 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL});
816 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL});
817 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL});
818 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL});
819 public static readonly BitSet _expr_in_stat102 = new BitSet(ne
[all...]
H A DProfileTreeGrammar.cs820 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL});
821 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL});
822 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL});
823 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL});
824 public static readonly BitSet _expr_in_stat102 = new BitSet(ne
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBitSet.js2 * A BitSet similar to java.util.BitSet.
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
62 * @memberOf org.antlr.runtime.BitSet
[all...]

Completed in 871 milliseconds

12345678