Searched refs:getValue (Results 226 - 250 of 2055) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DGetDoubleVMOption.java60 if (!option.getValue().equalsIgnoreCase(EXPECTED_VALUE)) {
62 option.getValue() + " expected: " + EXPECTED_VALUE);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DRegExpLiteralTreeImpl.java37 assert node.getValue() instanceof Lexer.RegexToken : "regexp expected";
38 final Lexer.RegexToken regex = (Lexer.RegexToken) node.getValue();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/tree/
H A DFloatTreeNodeAdapter.java59 public String getValue() { method in class:FloatTreeNodeAdapter
H A DDoubleTreeNodeAdapter.java59 public String getValue() { method in class:DoubleTreeNodeAdapter
H A DBooleanTreeNodeAdapter.java59 public String getValue() { method in class:BooleanTreeNodeAdapter
H A DCharTreeNodeAdapter.java59 public String getValue() { method in class:CharTreeNodeAdapter
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DConstantOopReadValue.java46 public OopHandle getValue() { method in class:ConstantOopReadValue
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DNarrowKlassField.java35 public Metadata getValue(Address addr) { method in class:NarrowKlassField
/openjdk9/jdk/src/java.base/share/classes/java/time/chrono/
H A DEra.java122 int getValue(); method in interface:Era
210 return getValue();
240 return getValue();
301 return temporal.with(ERA, getValue());
312 * If no textual mapping is found then the {@link #getValue() numeric value} is returned.
/openjdk9/jdk/src/java.base/share/classes/javax/crypto/spec/
H A DPSource.java104 public byte[] getValue() { method in class:PSource.PSpecified
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/
H A DFreeChunk.java56 return (FreeChunk) VMObjectFactory.newObject(FreeChunk.class, nextField.getValue(addr));
60 Address prev = prevField.getValue(addr).andWithMask(~0x3);
69 Address size = sizeField.getValue(addr);
89 Address prev = prevField.getValue(addr);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DPreAllocationOptimizationStage.java31 if (ConstantLoadOptimization.Options.LIROptConstantLoadOptimization.getValue()) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DNoDeadCodeVerifyHandler.java65 if (Options.NDCV.getValue() != OFF && object instanceof StructuredGraph) {
76 if (Options.NDCV.getValue() == INFO) {
78 } else if (Options.NDCV.getValue() == VERBOSE) {
81 assert Options.NDCV.getValue() == FATAL;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/
H A DUniquePathUtilities.java63 * Generate a {@link Path} using the format "%s-%d_%d%s" with the {@link OptionValue#getValue()
74 * Generate a {@link Path} using the format "%s-%d_%s" with the {@link OptionValue#getValue()
85 if (option.getValue() == null) {
89 ? String.format("%s-%d_%d%s", option.getValue(), getGlobalTimeStamp(), getThreadDumpId(), formatExtension(extension))
90 : String.format("%s-%d%s", option.getValue(), getGlobalTimeStamp(), formatExtension(extension));
95 return Paths.get(defaultDirectory.getValue(), name);
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DLiteral.java46 public Object getValue() { method in class:Literal
/openjdk9/hotspot/test/gc/stress/gcbasher/
H A DConstantPoolEntry.java39 public String getValue() throws IllegalStateException { method in class:ConstantPoolEntry
/openjdk9/hotspot/test/compiler/gcbarriers/
H A DPreserveFPRegistersTest.java94 final float FINAL = getValue();
102 if (FINAL != getValue()) {
103 throw new AssertionError("Final value has changed: " + FINAL + " != " + getValue());
111 public float getValue() { method in class:PreserveFPRegistersTest
/openjdk9/hotspot/test/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/
H A DTestJavaField.java58 String actual = e.getValue().getName();
67 ResolvedJavaField rf = e.getValue();
78 JavaKind actual = e.getValue().getJavaKind();
87 ResolvedJavaType actual = e.getValue().getDeclaringClass();
/openjdk9/hotspot/test/gc/metaspace/
H A DPerfCounter.java48 Object value = monitor.getValue();
/openjdk9/jaxp/src/java.xml/share/classes/org/xml/sax/helpers/
H A DAttributeListImpl.java145 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i));
283 * @see org.xml.sax.AttributeList#getValue(int)
285 public String getValue (int i) method in class:AttributeListImpl
317 * @see org.xml.sax.AttributeList#getValue(java.lang.String)
319 public String getValue (String name) method in class:AttributeListImpl
321 return getValue(names.indexOf(name));
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/
H A DTXWContentHandler.java68 txw._namespace(atts.getValue(i), "");
70 txw._namespace(atts.getValue(i),atts.getLocalName(i));
73 && "".equals(atts.getValue(i)))
75 txw._attribute(auri, atts.getLocalName(i), atts.getValue(i));
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/
H A DXSFacet.java40 XmlString getValue(); method in interface:XSFacet
/openjdk9/jdk/src/java.base/share/classes/sun/util/locale/
H A DExtension.java57 public String getValue() { method in class:Extension
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DCharElementHandler.java86 public Object getValue(String argument) { method in class:CharElementHandler
H A DValueObjectImpl.java75 public Object getValue() { method in class:ValueObjectImpl

Completed in 140 milliseconds

1234567891011>>