Home | History | Annotate | Download | only in java_cup

Lines Matching full:itms

58    * @param itms the set of items that makes up this state.
60 public lalr_state(lalr_item_set itms) throws internal_error
63 if (itms == null)
67 if (find_state(itms) != null)
75 _items = itms;
111 * @param itms the kernel set of the state we are looking for.
113 public static lalr_state find_state(lalr_item_set itms)
115 if (itms == null)
118 return (lalr_state)_all.get(itms);
161 lalr_item_set itms;
172 itms = st.items();
173 for (Enumeration e = itms.all(); e.hasMoreElements(); )
558 for (Enumeration itms = items().all(); itms.hasMoreElements(); )
560 itm = (lalr_item)itms.nextElement();
674 for (Enumeration itms = items().all(); itms.hasMoreElements(); )
676 itm = (lalr_item)itms.nextElement();