Searched defs:variable (Results 1 - 10 of 10) sorted by relevance
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | VariableRef.java | 43 public VariableRef(Variable variable) { argument 44 super(variable);
|
H A D | VariableRefBase.java | 37 * A reference to the associated variable. 47 public VariableRefBase(VariableBase variable) { argument 48 _variable = variable; 49 variable.addReference(this); 57 * Returns a reference to the associated variable 64 * If this variable reference is in a top-level element like 65 * another variable, param or key, add a dependency between 66 * that top-level element and the referenced variable. For 69 * <xsl:variable name="x" .../> 70 * <xsl:variable nam [all...] |
H A D | SymbolTable.java | 93 public Variable addVariable(Variable variable) { argument 95 final String name = variable.getName().getStringRep(); 96 return (Variable)_variables.put(name, variable);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JForEach.java | 43 public JForEach(JType vartype, String variable, JExpression collection) { argument 46 this.var = variable; 53 * Returns a reference to the loop variable.
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | StackFrame.java | 110 * this StackFrame. Each variable has a range of byte code indices in which 113 * matches this variable's method and if the code index of this 114 * StackFrame is within the variable's byte code range, the variable is 117 * A variable's byte code range is at least as large as the scope of 118 * that variable, but can continue beyond the end of the scope under 121 * <li>the compiler/VM does not immediately reuse the variable's slot. 129 * of multiple local variables of the same name, the variable with the 136 * @throws AbsentInformationException if there is no local variable 150 * @param name the variable nam 176 getValue(LocalVariable variable) argument 220 setValue(LocalVariable variable, Value value) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | ModelIdentifier.java | 88 private String variable = null; field in class:ModelIdentifier 100 public ModelIdentifier(String object, String variable) { argument 102 this.variable = variable; 106 public ModelIdentifier(String object, String variable, int instance) { argument 108 this.variable = variable; 130 return variable; 133 public void setVariable(String variable) { argument 134 this.variable [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ |
H A D | StackFrameImpl.java | 137 * Build the visible variable map. 147 LocalVariableImpl variable = (LocalVariableImpl)iter.next(); 148 String name = variable.name(); 149 if (variable.isVisible(this)) { 152 variable.hides(existing)) { 153 map.put(name, variable); 162 * Return the list of visible variable in the frame. 174 * Return a particular variable in the frame. 183 public Value getValue(LocalVariable variable) { argument 185 list.add(variable); [all...] |
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | StackFrameImpl.java | 154 * Build the visible variable map. 162 for (LocalVariable variable : allVariables) { 163 String name = variable.name(); 164 if (variable.isVisible(this)) { 167 ((LocalVariableImpl)variable).hides(existing)) { 168 map.put(name, variable); 177 * Return the list of visible variable in the frame. 189 * Return a particular variable in the frame. 198 public Value getValue(LocalVariable variable) { argument 200 list.add(variable); [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/ |
H A D | Compiler.java | 168 expr = variable(opPos); break; 531 * Compile a variable reference. 539 protected Expression variable(int opPos) throws TransformerException method in class:Compiler
|
/openjdk7/jdk/src/solaris/classes/java/lang/ |
H A D | ProcessEnvironment.java | 114 ("Invalid environment variable name: \"" + name + "\""); 121 ("Invalid environment variable value: \"" + value + "\""); 177 public int compareTo(Variable variable) { argument 178 return arrayCompare(getBytes(), variable.getBytes());
|
Completed in 109 milliseconds