Home | History | Annotate | Download | only in include

Lines Matching refs:ANTLR3_BITSET_struct

87 typedef	struct ANTLR3_BITSET_struct
93 pANTLR3_BITSET (*clone) (struct ANTLR3_BITSET_struct * inSet);
94 pANTLR3_BITSET (*bor) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);
95 void (*borInPlace) (struct ANTLR3_BITSET_struct * bitset, struct ANTLR3_BITSET_struct * bitset2);
96 ANTLR3_UINT32 (*size) (struct ANTLR3_BITSET_struct * bitset);
97 void (*add) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 bit);
98 void (*grow) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 newSize);
99 ANTLR3_BOOLEAN (*equals) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);
100 ANTLR3_BOOLEAN (*isMember) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
101 ANTLR3_UINT32 (*numBits) (struct ANTLR3_BITSET_struct * bitset);
102 void (*remove) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
103 ANTLR3_BOOLEAN (*isNilNode) (struct ANTLR3_BITSET_struct * bitset);
104 pANTLR3_INT32 (*toIntList) (struct ANTLR3_BITSET_struct * bitset);
106 void (*free) (struct ANTLR3_BITSET_struct * bitset);