Home | History | Annotate | Download | only in transformer

Lines Matching refs:counters

34  * This is a table of counters, keyed by ElemNumber objects, each
50 * Get the list of counters that corresponds to
55 * @return the list of counters that corresponds to
61 Vector counters = (Vector) this.get(numberElem);
63 return (null == counters) ? putElemNumber(numberElem) : counters;
78 Vector counters = new Vector();
80 this.put(numberElem, counters);
82 return counters;
86 * Place to collect new counters.
111 /** Number of counters created so far */
131 Vector counters = getCounters(numberElem);
132 int nCounters = counters.size();
142 Counter counter = (Counter) counters.elementAt(i);
171 Counter counter = (Counter) counters.elementAt(i);
203 counters.addElement(counter);