Searched defs:BitArray (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBitArray.java38 public class BitArray { class
54 * Creates a BitArray of the specified size, initialized to zeros.
56 public BitArray(int length) throws IllegalArgumentException { method in class:BitArray
58 throw new IllegalArgumentException("Negative length for BitArray");
68 * Creates a BitArray of the specified size, initialized from the
70 * index zero in the BitArray. The array a must be large enough
71 * to specify a value for every bit in the BitArray. In other words,
74 public BitArray(int length, byte[] a) throws IllegalArgumentException { method in class:BitArray
77 throw new IllegalArgumentException("Negative length for BitArray");
103 * Create a BitArray whos
106 public BitArray(boolean[] bits) { method in class:BitArray
119 private BitArray(BitArray ba) { method in class:BitArray
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DBitArray.java21 * $Id: BitArray.java,v 1.2.4.1 2005/09/06 05:56:52 pvedula Exp $
37 public class BitArray implements Externalizable { class in inherits:Externalizable
62 public BitArray() { method in class:BitArray
66 public BitArray(int size) { method in class:BitArray
73 public BitArray(int size, int[] bits) { method in class:BitArray
109 "Programmer's assertion in BitArray.getBit");
191 "Programmer's assertion in BitArray.getBit");
206 public final BitArray merge(BitArray other) {
246 public BitArray cloneArra
[all...]

Completed in 31 milliseconds