Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching defs:Of

13  * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
18 * 3. The name of the author may not be used to endorse or promote products
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 * A stripped-down version of org.antlr.misc.BitSet that is just
52 private const int BITS = 64; // number of bits / long
57 * turns out that, for powers of two, this mod operation is
67 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
73 /** <summary>Construction from a static array of longs</summary> */
80 /** <summary>Construction from a list of integers</summary> */
89 * <param name="nbits">The size of the bitset in bits</param>
96 public static BitSet Of( int el )
103 public static BitSet Of( int a, int b )
111 public static BitSet Of( int a, int b, int c )
120 public static BitSet Of( int a, int b, int c, int d )
153 /** <summary>Grows the set to a larger number of bits.</summary>
180 /** <summary>Sets the size of a set.</summary>