Searched refs:that (Results 1 - 25 of 587) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/
H A DT7120463.java9 void test() { that(i < len, "oopmap"); }
10 void that(int i, String s) { }; method in class:T7120463
H A DT7120266.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
32 void test(int i, int len) { that(i < len, "oopmap"); }
33 void that(boolean b, String s) { }; method in class:T7120266
/openjdk10/nashorn/test/script/nosecurity/parsertests/
H A DtryCatchStat.js9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
34 try { that() } catch (e) { handle() } finally { clean() }
35 try { that() } catch (e if e instanceof TypeError) { handle() } catch (e) { rest() }
/openjdk10/langtools/test/jdk/javadoc/doclet/testUnnamedPackage/
H A DBadSource.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
24 Just a dummy file that should not cause an error.
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DAttributeEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
55 protected AttributeEntry (AttributeEntry that) argument
57 super (that);
58 _readOnly = that._readOnly;
61 protected AttributeEntry (InterfaceEntry that, IDLID clone) argument
63 super (that, clone);
H A DForwardValueEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
55 protected ForwardValueEntry (ForwardValueEntry that) argument
57 super (that);
60 protected ForwardValueEntry (SymtabEntry that, IDLID clone) argument
62 super (that, clone);
H A DExceptionEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
56 protected ExceptionEntry (ExceptionEntry that) argument
58 super (that);
61 protected ExceptionEntry (SymtabEntry that, IDLID clone) argument
63 super (that, clone);
H A DNativeEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
44 protected NativeEntry (SymtabEntry that, IDLID clone) argument
46 super (that, clone);
53 protected NativeEntry (NativeEntry that) argument
55 super (that);
H A DValueBoxEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
53 protected ValueBoxEntry (ValueBoxEntry that) argument
55 super (that);
58 protected ValueBoxEntry (SymtabEntry that, IDLID clone) argument
60 super (that, clone);
H A DEnumEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
54 protected EnumEntry (EnumEntry that) argument
56 super (that);
57 _elements = (Vector)that._elements.clone ();
60 protected EnumEntry (SymtabEntry that, IDLID clone) argument
62 super (that, clone);
H A DModuleEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
54 protected ModuleEntry (ModuleEntry that) argument
56 super (that);
57 _contained = (Vector)that._contained.clone ();
60 protected ModuleEntry (SymtabEntry that, IDLID clone) argument
62 super (that, clone);
H A DParameterEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
59 protected ParameterEntry (ParameterEntry that) argument
61 super (that);
62 _passType = that._passType;
65 protected ParameterEntry (SymtabEntry that, IDLID clone) argument
67 super (that, clone);
H A DPragmaEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
54 protected PragmaEntry (SymtabEntry that) argument
56 super (that, new IDLID ());
57 module (that.name ());
61 protected PragmaEntry (PragmaEntry that) argument
63 super (that);
H A DIncludeEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
55 protected IncludeEntry (SymtabEntry that) argument
57 super (that, new IDLID ());
58 module (that.name ());
62 protected IncludeEntry (IncludeEntry that) argument
64 super (that);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DStub.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
33 /** A port of the VM's Stub mechanism. Note that the separation of
35 currently necessary in these APIs and has been flattened so that
52 public long getSize() { Assert.that(false, "should not call this"); return 0; }
62 public Address codeBegin() { Assert.that(false, "should not call this"); return null; }
64 public Address codeEnd() { Assert.that(false, "should not call this"); return null; }
71 public void verify() { Assert.that(false, "should not call this"); }
73 public void printOn(PrintStream tty) { Assert.that(false, "should not call this"); }
/openjdk10/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/internal/
H A DRow.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
71 public boolean equals( Object that ) {
72 if ( that == this )
74 if ( that == null || !getClass().equals( that.getClass() ) )
77 Row other = (Row) that;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DInternalBindingKey.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
69 InternalBindingKey that = (InternalBindingKey)o;
70 if( this.id != null && that.id != null )
72 if (this.id.length() != that.id.length() )
77 if (this.id.length() > 0 && this.id.equals(that.id) == false)
86 if( ( this.id == null && that.id != null )
87 || ( this.id !=null && that.id == null ) )
92 if( this.kind != null && that
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.meta/src/jdk/vm/ci/meta/
H A DLocal.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
69 Local that = (Local) obj;
70 return this.name.equals(that.name) && this.startBci == that.startBci && this.endBci == that.endBci && this.slot == that.slot && this.type.equals(that.type);
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DExceptionHandler.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
49 ExceptionHandler that = (ExceptionHandler) obj;
50 if (this.pcOffset == that.pcOffset && this.handlerPos == that.handlerPos) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DAssert.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
30 public static void that(boolean test, String message) { method in class:Assert
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/
H A DPolicyMapKey.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
71 PolicyMapKey(final PolicyMapKey that) { argument
72 this.service = that.service;
73 this.port = that.port;
74 this.operation = that.operation;
75 this.faultMessage = that.faultMessage;
76 this.handler = that.handler;
104 public boolean equals(final Object that) { argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DTargetDescription.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
63 * "It is important to ensure that the stack frame is aligned to a
100 TargetDescription that = (TargetDescription) obj;
102 if (this.implicitNullCheckLimit == that.implicitNullCheckLimit &&
103 this.inlineObjects == that.inlineObjects &&
104 this.isMP == that.isMP &&
105 this.stackAlignment == that.stackAlignment &&
106 this.wordJavaKind.equals(that.wordJavaKind) &&
107 this.wordSize == that
[all...]
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DLoadedClass.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
56 LoadedClass that = (LoadedClass) o;
58 if (name != null ? !name.equals(that.name) : that.name != null) {
61 return clz != null ? clz.equals(that.clz) : that.clz == null;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotReferenceMap.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
67 HotSpotReferenceMap that = (HotSpotReferenceMap) obj;
68 if (sizeInBytes == that.sizeInBytes && maxRegisterSize == that.maxRegisterSize && Arrays.equals(objects, that.objects) && Arrays.equals(derivedBase, that.derivedBase)) {
H A DVMIntrinsicMethod.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
67 VMIntrinsicMethod that = (VMIntrinsicMethod) obj;
68 if (that.id == this.id) {
69 assert that.name.equals(this.name) &&
70 that.declaringClass.equals(this.declaringClass) &&
71 that.descriptor.equals(this.descriptor);

Completed in 209 milliseconds

1234567891011>>