Searched defs:BitSet (Results 1 - 21 of 21) sorted by relevance

/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/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...]
/external/chromium_org/tools/android/memdump/
H A Dmemdump.cc36 class BitSet { class in namespace:__anon16423
103 BitSet committed_pages_bits;
210 BitSet* committed_pages_bits) {
460 BitSet* const pages_bits = &it->committed_pages_bits;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBitSet.as30 /**A stripped-down version of org.antlr.misc.BitSet that is just
34 public class BitSet {
49 public function BitSet(bits:Array = null) { function
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)
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DBitSet.pm1 package Test::ANTLR::Runtime::BitSet;
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
H A Dbitset.cpp84 class BitSet : public UObject, public UnicodeContainable { class in inherits:UObject,UnicodeContainable
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { function in class:BitSet
172 ~BitSet() {
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dbitset.cpp84 class BitSet : public UObject, public UnicodeContainable { class in inherits:UObject,UnicodeContainable
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { function in class:BitSet
172 ~BitSet() {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm1 package ANTLR::Runtime::BitSet;
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
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc40 typedef std::vector<bool> BitSet; typedef in namespace:sfntly
67 BitSet* GenerateCMapEntries(int32_t start, int32_t count);
70 BitSet* bit_set);
89 BitSet* CMapIteratorTests::GenerateCMapEntries(int32_t start, int32_t count) {
90 BitSet* entries = new BitSet(count);
102 BitSet* bit_set) {
104 BitSet::iterator end = bit_set->end(),
131 BitSet* bit_set = GenerateCMapEntries(0, 0x10ffff);
/external/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc40 typedef std::vector<bool> BitSet; typedef in namespace:sfntly
67 BitSet* GenerateCMapEntries(int32_t start, int32_t count);
70 BitSet* bit_set);
89 BitSet* CMapIteratorTests::GenerateCMapEntries(int32_t start, int32_t count) {
90 BitSet* entries = new BitSet(count);
102 BitSet* bit_set) {
104 BitSet::iterator end = bit_set->end(),
131 BitSet* bit_set = GenerateCMapEntries(0, 0x10ffff);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
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...]
/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/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 3866 milliseconds