Searched defs:_variables (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSymbolTable.java45 private Hashtable _variables = null; field in class:SymbolTable
94 if (_variables == null) _variables = new Hashtable();
96 return (Variable)_variables.put(name, variable);
100 if (_variables == null) _variables = new Hashtable();
102 return (Param)_variables.put(name, parameter);
106 if (_variables == null) return null;
108 final Object obj = _variables.get(name);
113 if (_variables
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java279 * corresponding entry of <code>_variables</code> contains the
285 protected ArrayList _variables = new ArrayList(); field in class:MethodGenerator.LocalVariableRegistry
307 int registrySize = _variables.size();
310 // encountered, expand the _variables, padding with intervening null
314 _variables.add(null);
316 _variables.add(lvg);
319 // in _variables contains an ArrayList and add the newly
321 // _variables just contains null padding, store the
323 Object localsInSlot = _variables.get(slot);
329 _variables
[all...]

Completed in 42 milliseconds