Searched refs:variable (Results 1 - 25 of 32) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DModelIdentifier.java89 private String variable = null; field in class:ModelIdentifier
101 public ModelIdentifier(String object, String variable) { argument
103 this.variable = variable;
107 public ModelIdentifier(String object, String variable, int instance) { argument
109 this.variable = variable;
131 return variable;
134 public void setVariable(String variable) { argument
135 this.variable
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/isolatedjdk/
H A DIsolatedJDK.sh25 variable='$'$1
27 if [ "${variable}" = "" ]; then
34 for variable in $*
36 checkVariable ${variable}
/openjdk10/langtools/test/jdk/jshell/
H A DVariablesTest.java125 assertVariables(variable("int", "x"), variable("String", "y"), variable("long", "z"));
136 assertVariables(variable("int[]", "a"), variable("int", "len"));
144 assertVariables(variable("int[]", "a"), variable("int", "len"));
151 assertVariables(variable("int", "x"), variable("String", "y"));
156 assertVariables(variable("lon
[all...]
H A DExecutionControlTestBase.java83 assertVariables(variable("int", "x"), variable("String", "y"), variable("long", "z"));
H A DSnippetTest.java115 assertKeys(method("()void", "f"), variable("int", "f"), clazz(KullaTesting.ClassType.INTERFACE, "A"));
127 assertKeys(method("()void", "g"), method("()void", "f"), variable("int", "f"),
134 assertKeys(method("()void", "g"), method("()double", "f"), variable("int", "f"),
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DLocalVariableTable.java98 * Dump local variable table attribute to file stream in binary format.
107 for (final LocalVariable variable : local_variable_table) {
108 variable.dump(file);
123 * @param index the variable slot
132 for (final LocalVariable variable : local_variable_table) {
133 if (variable.getIndex() == index) {
134 return variable;
143 * @param index the variable slot
144 * @param pc the current pc that this variable is alive
149 for (final LocalVariable variable
[all...]
H A DLocalVariableTypeTable.java91 for (final LocalVariable variable : local_variable_type_table) {
92 variable.dump(file);
101 for (final LocalVariable variable : local_variable_type_table) {
102 if (variable.getIndex() == index) {
103 return variable;
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/arrays/
H A DArrayCreation.java36 private final VariableDeclaration variable; field in class:ArrayCreation
42 this.variable = var;
54 TypeArray type = (TypeArray) variable.getVariableInfo().type;
76 return variable;
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java165 * Build the visible variable map.
173 for (LocalVariable variable : allVariables) {
174 String name = variable.name();
175 if (variable.isVisible(this)) {
178 ((LocalVariableImpl)variable).hides(existing)) {
179 map.put(name, variable);
188 * Return the list of visible variable in the frame.
200 * Return a particular variable in the frame.
209 public Value getValue(LocalVariable variable) { argument
211 list.add(variable);
[all...]
H A DConcreteMethodImpl.java225 LocalVariable variable = iter.next();
226 if (variable.name().equals(name)) {
227 retList.add(variable);
239 LocalVariable variable = iter.next();
240 if (variable.isArgument()) {
241 retList.add(variable);
467 LocalVariable variable =
471 // Add to the variable list
472 variables.add(variable);
514 LocalVariable variable
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJForEach.java43 public JForEach(JType vartype, String variable, JExpression collection) { argument
46 this.var = variable;
53 * Returns a reference to the loop variable.
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DStackFrame.java113 * this StackFrame. Each variable has a range of byte code indices in which
116 * matches this variable's method and if the code index of this
117 * StackFrame is within the variable's byte code range, the variable is
120 * A variable's byte code range is at least as large as the scope of
121 * that variable, but can continue beyond the end of the scope under
124 * <li>the compiler/VM does not immediately reuse the variable's slot.
132 * of multiple local variables of the same name, the variable with the
139 * @throws AbsentInformationException if there is no local variable
153 * @param name the variable nam
179 getValue(LocalVariable variable) argument
223 setValue(LocalVariable variable, Value value) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DVariableRefBase.java35 * A reference to the associated variable.
45 public VariableRefBase(VariableBase variable) { argument
46 _variable = variable;
47 variable.addReference(this);
55 * Returns a reference to the associated variable
62 * If this variable reference is in a top-level element like
63 * another variable, param or key, add a dependency between
64 * that top-level element and the referenced variable. For
67 * <xsl:variable name="x" .../>
68 * <xsl:variable nam
[all...]
H A DVariableRef.java41 public VariableRef(Variable variable) { argument
42 super(variable);
H A DSymbolTable.java93 public Variable addVariable(Variable variable) { argument
95 final String name = variable.getName().getStringRep();
96 return (Variable)_variables.put(name, variable);
/openjdk10/hotspot/test/runtime/jni/CallWithJNIWeak/
H A DlibCallWithJNIWeak.c51 #define CHECK(variable, expected) \
53 if ((variable) != (expected)) { \
54 (*env)->ThrowNew(env, exception, #variable" != " #expected); \
/openjdk10/jdk/make/src/classes/build/tools/generatenimbus/
H A DGenerator.java49 /** A map of variables that are used for variable substitution in the template files. */
149 //construct the map which is used to do variable substitution of the template
261 for (Map.Entry<String, String> variable : variables.entrySet()) {
262 input = input.replace("${" + variable.getKey() + "}", variable.getValue());
/openjdk10/nashorn/test/script/nosecurity/
H A Dparservisitor.js64 an.variable.name + " " + an.expression.value);
122 bn.variable.name + " " + bn.expression.value);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java162 assert !operand.equals(var) : "constant usage through variable in frame state " + var;
217 debug.log(DebugContext.VERBOSE_LEVEL, "Removing phi variable: %s", var);
320 // create variable
321 Variable variable = lirGen.newVariable(kind);
323 LIRInstruction move = lirGen.getSpillMoveFactory().createLoad(variable, constant);
329 u.setValue(variable);
/openjdk10/jdk/src/java.base/unix/classes/java/lang/
H A DProcessEnvironment.java115 ("Invalid environment variable name: \"" + name + "\"");
122 ("Invalid environment variable value: \"" + value + "\"");
178 public int compareTo(Variable variable) { argument
179 return arrayCompare(getBytes(), variable.getBytes());
/openjdk10/make/
H A DRunTests.gmk53 $(info Running tests using JTREG control variable '$(JTREG)')
63 $(info Running tests using GTEST control variable '$(GTEST)')
91 # The user has given a test selection in the TEST variable. We must parse it
204 # descriptor, and this is also used as variable prefix, and the targets
205 # generated are listed in a variable by that name.
271 # Helper function for SetupRunJtregTest. Set a JTREG_* variable from, in order:
278 # Arg $2 Base variable, e.g. JTREG_JOBS
351 # Some tests needs to find a boot JDK using the JDK8_HOME variable.
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/
H A DTraceLinearScanPhase.java155 // all TraceIntervals are variable intervals
267 * Gets the number of operands. This value will increase by 1 for new variable.
333 * {@linkplain TraceInterval variable}.
858 Variable variable = createVariable(getKind(source));
862 TraceInterval interval = createInterval(variable);
868 * Creates a new variable for a derived interval. Note that the variable is not
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/
H A DLinearScan.java173 * The {@linkplain #operandNumber(Value) number} of the first variable operand allocated.
256 * Converts an operand (variable or register) to an index in a flat address space covering all
271 * Gets the number of operands. This value will increase by 1 for new variable.
387 Variable variable = new Variable(source.kind(), numVariables++);
389 Interval interval = createInterval(variable);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/compiler/
H A DCompiler.java167 expr = variable(opPos); break;
530 * Compile a variable reference.
538 protected Expression variable(int opPos) throws TransformerException method in class:Compiler
/openjdk10/jdk/make/data/jdwp/
H A Djdwp.spec1395 "Returns variable information for the method. The variable table "
1407 (Group SlotInfo "Information about the variable."
1409 "First code index at which the variable is visible (unsigned). "
1411 "The variable can be get or set only when the current "
1413 (string name "The variable's name.")
1414 (string signature "The variable type's JNI signature.")
1417 "The variable can be get or set only when the current "
1419 (int slot "The local variable's index in its frame")
1428 (Error ABSENT_INFORMATION "there is no variable informatio
[all...]

Completed in 244 milliseconds

12