Searched refs:other (Results 1 - 25 of 885) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/jdk/javadoc/doclet/testGroupOption/other/
H A DC.java24 package other; package
/openjdk10/langtools/test/tools/javac/diags/examples/ModuleNameMismatch/modulesourcepath/m/
H A Dmodule-info.java24 module other {
/openjdk10/langtools/test/tools/javac/diags/examples/NotDefAccessNotExportedToModuleFromUnnamed/modulepath/other/
H A Dmodule-info.java24 module other {
/openjdk10/langtools/test/tools/javac/diags/examples/NotDefAccessNotExportedToModule/modulesourcepath/other/
H A Dmodule-info.java24 module other {
/openjdk10/langtools/test/tools/javac/diags/examples/
H A DStaticNotQualifiedByType.java28 int m(Other other) { argument
29 return other.i;
/openjdk10/jdk/test/java/io/Serializable/oldTests/
H A DPrimitivesTest.java36 public boolean equals(PrimitivesTest other) { argument
37 if (b != other.b ||
38 c != other.c ||
39 f != other.f ||
40 l != other.l ||
41 d != other.d ||
42 i != other.i ||
43 s != other.s ||
44 z != other.z )
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DOptEnvironment.java29 void copy(final OptEnvironment other) { argument
30 mmd.copy(other.mmd);
31 options = other.options;
32 caseFoldFlag = other.caseFoldFlag;
33 scanEnv = other.scanEnv;
H A DNodeOptInfo.java46 public void copy(final NodeOptInfo other) { argument
47 length.copy(other.length);
48 anchor.copy(other.anchor);
49 exb.copy(other.exb);
50 exm.copy(other.exm);
51 expr.copy(other.expr);
52 map.copy(other.map);
55 public void concatLeftNode(final NodeOptInfo other) { argument
57 tanchor.concat(anchor, other.anchor, length.max, other
115 altMerge(final NodeOptInfo other, final OptEnvironment env) argument
[all...]
H A DMinMaxLen.java57 int compareDistanceValue(final MinMaxLen other, final int v1p, final int v2p) { argument
68 v2 *= other.distanceValue();
77 if (other.min < min) {
80 if (other.min > min) {
86 boolean equal(final MinMaxLen other) { argument
87 return min == other.min && max == other.max;
99 void copy(final MinMaxLen other) { argument
100 min = other.min;
101 max = other
104 add(final MinMaxLen other) argument
114 altMerge(final MinMaxLen other) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/function/
H A DDoublePredicate.java55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default DoublePredicate and(DoublePredicate other) { argument
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicat
100 or(DoublePredicate other) argument
[all...]
H A DIntPredicate.java55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default IntPredicate and(IntPredicate other) { argument
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicat
100 or(IntPredicate other) argument
[all...]
H A DLongPredicate.java55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default LongPredicate and(LongPredicate other) { argument
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicat
100 or(LongPredicate other) argument
[all...]
/openjdk10/langtools/test/tools/javac/diags/examples/NotDefAccessNotExportedToModule/modulesourcepath/api/
H A Dmodule-info.java25 exports api to other;
/openjdk10/langtools/test/tools/javac/diags/examples/NotDefAccessNotExportedToModuleFromUnnamed/modulepath/api/
H A Dmodule-info.java25 exports api to other;
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_ValueSet.hpp48 bool set_intersect(ValueSet* other);
49 void set_union(ValueSet* other);
51 void set_from(ValueSet* other);
52 bool equals (ValueSet* other);
H A Dc1_ValueSet.inline.hpp53 inline bool ValueSet::set_intersect(ValueSet* other) { argument
54 return _map.set_intersection_with_result(other->_map);
57 inline void ValueSet::set_union(ValueSet* other) { argument
58 _map.set_union(other->_map);
65 inline void ValueSet::set_from(ValueSet* other) { argument
66 _map.set_from(other->_map);
69 inline bool ValueSet::equals(ValueSet* other) { argument
70 return _map.is_same(other->_map);
/openjdk10/jdk/test/tools/launcher/modules/illegalaccess/patchsrc/java.base/java/lang/
H A DHelper.java32 public static void export(String pn, Module other) { argument
33 Helper.class.getModule().addExports(pn, other);
39 public static void open(String pn, Module other) { argument
40 Helper.class.getModule().addOpens(pn, other);
/openjdk10/langtools/test/tools/javac/generics/
H A DT4784207a.java38 public int compareTo(T4784207a_i other) { argument
H A DExtendedRaw3.java34 int compareTo(T other); argument
37 public int compareTo(E other) { argument
/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DFileSystemException.java43 private final String other; field in class:FileSystemException
56 this.other = null;
66 * @param other
67 * a string identifying the other file or {@code null} if there
72 public FileSystemException(String file, String other, String reason) { argument
75 this.other = other;
88 * Returns the other file used to create this exception.
90 * @return the other file (can be {@code null})
93 return other;
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/
H A DCondition.java120 * the other one. This can be used to keep comparisons in a canonical form.
241 public boolean implies(Condition other) { argument
242 if (other == this) {
247 return other == LE || other == GE || other == BE || other == AE;
251 return other == LE || other == NE;
255 return other
485 join(Condition other) argument
570 meet(Condition other) argument
[all...]
/openjdk10/langtools/test/tools/javac/lambda/lambdaExecution/
H A DTBlock.java26 * external state (other objects).
52 * @param other an additional Block which will be chained after this Block
56 public default TBlock<T> chain(TBlock<? super T> other) { argument
57 return (T t) -> { apply(t); other.apply(t); };
/openjdk10/langtools/test/tools/javac/6402516/
H A DTestClass.java33 public boolean equals(Object other) {
37 return (this == other);
45 public boolean equals(Object other) {
49 return (this == other);
H A DTestMethod.java32 public boolean equals(Object other) {
36 return (this == other);
44 public boolean equals(Object other) {
48 return (this == other);
/openjdk10/langtools/test/tools/javac/enum/forwardRef/
H A DTestEnum1.java12 private final TestEnum other = QUX;

Completed in 117 milliseconds

1234567891011>>