Searched refs:other (Results 201 - 225 of 885) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/time/chrono/
H A DChronoLocalDateTime.java44 * and/or other materials provided with the distribution.
114 * This interface must be implemented with care to ensure other classes operate correctly.
188 * The era and other fields in {@link ChronoField} are defined by the chronology.
502 * @param other the other date-time to compare to, not null
506 default int compareTo(ChronoLocalDateTime<?> other) { argument
507 int cmp = toLocalDate().compareTo(other.toLocalDate());
509 cmp = toLocalTime().compareTo(other.toLocalTime());
511 cmp = getChronology().compareTo(other.getChronology());
528 * @param other th
531 isAfter(ChronoLocalDateTime<?> other) argument
552 isBefore(ChronoLocalDateTime<?> other) argument
573 isEqual(ChronoLocalDateTime<?> other) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DRightShiftNode.java84 ShiftNode<?> other = (ShiftNode<?>) forX;
85 if (other.getY().isConstant()) {
86 int otherAmount = other.getY().asJavaConstant().asInt() & mask;
87 if (other instanceof RightShiftNode) {
90 assert other.getX().stamp() instanceof IntegerStamp;
91 IntegerStamp istamp = (IntegerStamp) other.getX().stamp();
105 return new RightShiftNode(other.getX(), ConstantNode.forInt(mask));
107 return new RightShiftNode(other.getX(), ConstantNode.forInt(total));
H A DSignExtendNode.java89 SignExtendNode other = (SignExtendNode) forValue;
90 return SignExtendNode.create(other.getValue(), other.getInputBits(), resultBits);
92 ZeroExtendNode other = (ZeroExtendNode) forValue;
93 if (other.getResultBits() > other.getInputBits()) {
96 return ZeroExtendNode.create(other.getValue(), other.getInputBits(), resultBits);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DVirtualStackSlot.java70 VirtualStackSlot other = (VirtualStackSlot) obj;
71 if (id != other.id) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DPrimitiveStamp.java84 PrimitiveStamp other = (PrimitiveStamp) obj;
85 if (bits != other.bits) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DJsrScope.java54 public boolean isPrefixOf(JsrScope other) { argument
55 return (scope & other.scope) == scope;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/
H A DObjectIdImpl.java41 ObjectIdImpl other = (ObjectIdImpl)obj ;
43 return Arrays.equals( this.id, other.id ) ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DAlternateIIOPAddressComponentImpl.java50 AlternateIIOPAddressComponentImpl other =
53 return addr.equals( other.addr ) ;
H A DJavaCodebaseComponentImpl.java49 JavaCodebaseComponentImpl other = (JavaCodebaseComponentImpl)obj ;
51 return URLs.equals( other.getURLs() ) ;
H A DORBTypeComponentImpl.java49 ORBTypeComponentImpl other = (ORBTypeComponentImpl)obj ;
51 return ORBType == other.ORBType ;
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1RemSetSummary.hpp67 void set(G1RemSetSummary* other);
68 // subtract all counters from the other summary, and set them in the current
69 void subtract_from(G1RemSetSummary* other);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/
H A DValidatedInfo.java210 ValidatedInfo other = (ValidatedInfo)o;
211 normalizedValue = other.normalizedValue;
212 actualValue = other.actualValue;
213 actualValueType = other.actualValueType;
214 actualType = other.actualType;
215 memberType = other.memberType;
216 memberTypes = other.memberTypes;
217 itemValueTypes = other.itemValueTypes;
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DUnicodeSet.java140 * their delimiters; "[:^foo]" and "\P{foo}". In any other location,
347 private UnicodeSet(UnicodeSet other) { argument
348 set(other);
378 * Make this object represent the same set as <code>other</code>.
379 * @param other a <code>UnicodeSet</code> whose value will be
383 public UnicodeSet set(UnicodeSet other) { argument
385 list = other.list.clone();
386 len = other.len;
387 strings = new TreeSet<String>(other.strings);
662 * specified set. In other word
803 xor(int[] other, int otherLen, int polarity) argument
848 add(int[] other, int otherLen, int polarity) argument
945 retain(int[] other, int otherLen, int polarity) argument
[all...]
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaButtonRadioUI.java66 public RadioButtonBorder(final RadioButtonBorder other) { argument
67 super(other);
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DStateTableProcessor2.h80 StateTableProcessor2(const StateTableProcessor2 &other); // forbid copying of this class
81 StateTableProcessor2 &operator=(const StateTableProcessor2 &other); // forbid copying of this class
H A DStateTableProcessor.h79 StateTableProcessor(const StateTableProcessor &other); // forbid copying of this class
80 StateTableProcessor &operator=(const StateTableProcessor &other); // forbid copying of this class
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/binary/
H A DTextPattern.java56 boolean samePattern(Pattern other) { argument
57 return other instanceof TextPattern;
/openjdk10/jdk/src/java.base/share/classes/java/security/cert/
H A DURICertStoreParameters.java135 URICertStoreParameters other = (URICertStoreParameters)p;
136 return uri.equals(other.getURI());
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DRuleBasedCollationKey.java80 RuleBasedCollationKey other = (RuleBasedCollationKey)target;
81 return key.equals(other.key);
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DLocalVariableImpl.java70 LocalVariableImpl other = (LocalVariableImpl)obj;
71 return ((slot() == other.slot()) &&
73 (scopeStart.equals(other.scopeStart)) &&
88 LocalVariableImpl other = (LocalVariableImpl)object;
90 int rc = scopeStart.compareTo(other.scopeStart);
92 rc = slot() - other.slot();
173 boolean hides(LocalVariable other) { argument
174 LocalVariableImpl otherImpl = (LocalVariableImpl)other;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DSymbolMetadata.java143 public void setAttributes(SymbolMetadata other) { argument
144 if (other == null) {
147 setDeclarationAttributes(other.getDeclarationAttributes());
149 Assert.check(other.sym.kind == Kind.MTH);
151 for (TypeCompound tc : other.getTypeAttributes()) {
158 setTypeAttributes(other.getTypeAttributes());
161 setInitTypeAttributes(other.getInitTypeAttributes());
162 setClassInitTypeAttributes(other.getClassInitTypeAttributes());
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java70 public int compareTo(RelativePath other) { argument
71 return path.compareTo(other.path);
75 public boolean equals(Object other) { argument
76 if (!(other instanceof RelativePath))
78 return path.equals(((RelativePath) other).path);
142 * Return true if this subdirectory "contains" the other path.
145 boolean contains(RelativePath other) { argument
146 return other.path.length() > path.length() && other.path.startsWith(path);
/openjdk10/nashorn/test/script/basic/
H A DJDK-8013874.js36 var other = {
62 NameBuilder2.prototype = other;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/
H A DIntList.java64 * @param other the list from which a range of values is to be copied into the new list
65 * @param startIndex the index in {@code other} at which to start copying
66 * @param length the number of values to copy from {@code other}
69 public static IntList copy(IntList other, int startIndex, int length) { argument
70 return copy(other, startIndex, length, length);
76 * @param other the list from which a range of values is to be copied into the new list
77 * @param startIndex the index in {@code other} at which to start copying
78 * @param length the number of values to copy from {@code other}
83 public static IntList copy(IntList other, int startIndex, int length, int initialCapacity) { argument
89 System.arraycopy(other
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DLIRSuites.java49 public LIRSuites(LIRSuites other) { argument
50 this(other.getPreAllocationOptimizationStage().copy(), other.getAllocationStage().copy(), other.getPostAllocationOptimizationStage().copy());

Completed in 299 milliseconds

1234567891011>>