Searched refs:isImmutable (Results 1 - 25 of 27) sorted by relevance

12

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/
H A DLocationIdentity.java41 public boolean isImmutable() { method in class:LocationIdentity.AnyLocationIdentity
61 public abstract boolean isImmutable(); method in class:LocationIdentity
64 return !isImmutable();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DFieldLocationIdentity.java39 public boolean isImmutable() { method in class:FieldLocationIdentity
67 return inner.format("%h.%n") + (isImmutable() ? ":immutable" : "");
H A DNamedLocationIdentity.java107 public boolean isImmutable() { method in class:NamedLocationIdentity
113 return name + (isImmutable() ? ":final" : "");
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPolicyNodeImpl.java69 private boolean isImmutable = false; field in class:PolicyNodeImpl
191 boolean isImmutable() { method in class:PolicyNodeImpl
192 return isImmutable;
200 if (isImmutable)
205 isImmutable = true;
215 if (isImmutable) {
230 if (isImmutable) {
246 if (isImmutable)
270 if (isImmutable) {
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/
H A DJaxBeanInfo.java86 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, QName[] typeNames, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
87 this(grammar,rti,jaxbType,(Object)typeNames,isElement,isImmutable,hasLifecycleEvents);
93 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, QName typeName, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
94 this(grammar,rti,jaxbType,(Object)typeName,isElement,isImmutable,hasLifecycleEvents);
100 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
101 this(grammar,rti,jaxbType,(Object)null,isElement,isImmutable,hasLifecycleEvents);
104 private JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, Object typeName, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
110 |(isImmutable?FLAG_IS_IMMUTABLE:0)
189 public final boolean isImmutable() { method in class:JaxBeanInfo
300 * This operation is only supported when {@link #isImmutable} i
[all...]
/openjdk9/jdk/test/jdk/internal/math/FloatingDecimal/
H A DTestFDBigInteger.java135 private static void testLeftShift(FDBigInteger t, int shift, boolean isImmutable) throws Exception { argument
138 if ((bt.signum() == 0 || shift == 0 || !isImmutable) && r != t) {
141 if (isImmutable) {
305 private static void testMultBy10(FDBigInteger t, boolean isImmutable) throws Exception { argument
308 if ((bt.signum() == 0 || !isImmutable) && r != t) {
311 if (isImmutable) {
348 private static void testLeftInplaceSub(FDBigInteger left, FDBigInteger right, boolean isImmutable) throws Exception { argument
352 if (!isImmutable && diff != left) {
355 if (isImmutable) {
382 private static void testRightInplaceSub(FDBigInteger left, FDBigInteger right, boolean isImmutable) throw argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/
H A DSuites.java61 public boolean isImmutable() { method in class:Suites
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java82 public boolean isImmutable() method in class:FreezableList
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DLIRPhaseSuite.java99 public boolean isImmutable() { method in class:LIRPhaseSuite
H A DLIRSuites.java88 public boolean isImmutable() { method in class:LIRSuites
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DReadAfterCheckCastTest.java104 Assert.assertTrue(node.getLocationIdentity().isImmutable());
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/
H A DPhaseSuite.java49 public boolean isImmutable() { method in class:PhaseSuite
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/
H A DLocationSet.java66 } else if (location.isImmutable()) {
H A DBlock.java208 if (location.isImmutable()) {
240 if (location.isImmutable()) {
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/math/
H A DFDBigInteger.java157 private boolean isImmutable = false; field in class:FDBigInteger
446 @ requires this.value() > 0 && shift > 0 && this.isImmutable;
452 @ requires this.value() > 0 && shift > 0 && this.isImmutable;
463 if (this.isImmutable) {
555 @ requires !this.isImmutable;
564 assert !this.isImmutable : "cannot modify immutable value";
642 @ requires this.value() > 0 && this.isImmutable;
648 @ requires this.value() > 0 && !this.isImmutable;
657 if (isImmutable) {
697 @ requires this.value() > 0 && (p5 > 0 && p2 >= 0 || p5 == 0 && p2 > 0 && this.isImmutable);
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/
H A DFloatingReadNode.java117 assert lla != null || getLocationIdentity().isImmutable() : "lastLocationAccess of " + this + " shouldn't be null for mutable location identity " + getLocationIdentity();
H A DMemoryMapNode.java86 if (locationIdentity.isImmutable()) {
H A DReadNode.java148 if (locationIdentity.isImmutable() || stableDimension > 0) {
150 boolean isDefaultStable = locationIdentity.isImmutable() || ((ConstantNode) object).isDefaultStable();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/
H A DMemoryScheduleVerification.java118 if (location.isImmutable()) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/
H A DFloatingReadPhase.java104 if (locationIdentity.isImmutable()) {
278 assert !t.isImmutable();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java326 boolean numeric, boolean isImmutable, short builtInKind) {
327 fIsImmutable = isImmutable;
355 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
357 this(base, name, uri, finalSet, isImmutable, annotations);
363 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
420 fIsImmutable = isImmutable;
427 protected XSSimpleTypeDecl(String name, String uri, short finalSet, XSSimpleTypeDecl itemType, boolean isImmutable, argument
444 fIsImmutable = isImmutable;
324 XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, short validateDV, short ordered, boolean bounded, boolean finite, boolean numeric, boolean isImmutable, short builtInKind) argument
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStructureLoader.java161 assert !beanInfo.isImmutable();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDLoader.java466 if (activeGrammar != null && !activeGrammar.isImmutable()) {
H A DXMLDTDProcessor.java638 if( !fGrammarBucket.getActiveGrammar().isImmutable()) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java1684 public void setImmutable(boolean isImmutable) { argument
1685 fIsImmutable = isImmutable;
1688 public boolean isImmutable() { method in class:SchemaGrammar

Completed in 224 milliseconds

12