Uses of Class
org.opencores.JLex.SparseBitSet

Packages that use SparseBitSet
org.opencores.JLex   
 

Uses of SparseBitSet in org.opencores.JLex
 

Fields in org.opencores.JLex declared as SparseBitSet
(package private)  SparseBitSet CBunch.m_nfa_bit
           
(package private)  SparseBitSet CDfa.m_nfa_bit
           
private  SparseBitSet CSet.m_set
          Member Variables
(package private)  SparseBitSet CNfa.m_states
           
private  SparseBitSet CLexGen.all_states
          Function: getStates Description: Parses the state area of a rule, from the beginning of a line.
 

Methods in org.opencores.JLex that return SparseBitSet
(package private)  SparseBitSet CLexGen.getStates()
           
 

Methods in org.opencores.JLex with parameters of type SparseBitSet
private  void CMakeNfa.processStates(SparseBitSet states, CNfa current)
          Function: processStates Description:
(package private)  void CNfa2Dfa.move(java.util.Vector nfa_set, SparseBitSet nfa_bit, int b, CBunch bunch)
          Function: move Description: Returns null if resulting NFA set is empty.
 void SparseBitSet.and(SparseBitSet set)
          Logically ANDs this bit set with the specified set of bits.
 void SparseBitSet.or(SparseBitSet set)
          Logically ORs this bit set with the specified set of bits.
 void SparseBitSet.xor(SparseBitSet set)
          Logically XORs this bit set with the specified set of bits.
private static void SparseBitSet.binop(SparseBitSet a, SparseBitSet b, SparseBitSet.BinOp op)
           
static boolean SparseBitSet.equals(SparseBitSet a, SparseBitSet b)
          Compares two SparseBitSets for equality.
 

Constructors in org.opencores.JLex with parameters of type SparseBitSet
SparseBitSet.SparseBitSet(SparseBitSet set)
          Creates an empty set with the same size as the given set.