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

1234567891011>>

/openjdk7/langtools/test/com/sun/javadoc/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.
/openjdk7/corba/src/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 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 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 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 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);
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 DMethodEntry.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 MethodEntry (MethodEntry that) argument
58 super (that);
59 _exceptionNames = (Vector)that._exceptionNames.clone ();
60 _exceptions = (Vector)that._exceptions.clone ();
61 _contexts = (Vector)that._contexts.clone ();
62 _parameters = (Vector)that._parameters.clone ();
63 _oneway = that
66 MethodEntry(InterfaceEntry that, IDLID clone) argument
[all...]
H A DSymtabEntry.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 SymtabEntry (SymtabEntry that, IDLID clone) argument
73 _module = that._module;
74 _name = that._name;
75 _type = that._type;
76 _typeName = that._typeName;
77 _sourceFile = that._sourceFile;
78 _info = that
90 SymtabEntry(SymtabEntry that) argument
[all...]
/openjdk7/hotspot/agent/src/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"); }
/openjdk7/corba/src/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...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGetLoadedClasses.cpp9 * 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
53 static void set_this(JvmtiGetLoadedClassesClosure* that) { argument
55 thread->set_jvmti_get_loaded_classes_closure(that);
61 JvmtiGetLoadedClassesClosure* that = get_this(); local
62 assert(that == NULL, "JvmtiGetLoadedClassesClosure in use");
71 JvmtiGetLoadedClassesClosure* that = get_this(); local
72 assert(that == NULL, "JvmtiGetLoadedClassesClosure in use");
81 JvmtiGetLoadedClassesClosure* that = get_this(); local
82 assert(that !
170 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
182 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
191 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
198 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
216 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
232 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
241 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this(); local
[all...]
/openjdk7/hotspot/agent/src/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
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DServiceDetailHelper.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
37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceDetail that) { argument
38 out.write_ulong(that.service_detail_type);
40 out.write_long(that.service_detail.length);
41 out.write_octet_array(that.service_detail, 0, that.service_detail.length);
45 org.omg.CORBA.ServiceDetail that = new org.omg.CORBA.ServiceDetail();
46 that
58 insert(org.omg.CORBA.Any a, org.omg.CORBA.ServiceDetail that) argument
[all...]
H A DServiceInformationHelper.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
37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceInformation that) argument
39 out.write_long(that.service_options.length);
40 out.write_ulong_array(that.service_options, 0, that.service_options.length);
41 out.write_long(that.service_details.length);
42 for (int i = 0 ; i < that.service_details.length ; i += 1) {
43 org.omg.CORBA.ServiceDetailHelper.write(out, that
67 insert(org.omg.CORBA.Any a, org.omg.CORBA.ServiceInformation that) argument
[all...]
/openjdk7/langtools/test/tools/javac/6199662/
H A DTree.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
60 public void visitTree(Tree that) throws E { assert false; } argument
/openjdk7/jdk/test/javax/management/remote/mandatory/serverError/
H A DJMXServerErrorTest.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
27 * @summary Tests that JMXServiceErrorException is correctly emitted.
97 public void setThis(String that) throws IOException; argument
98 public String doThis(String that) throws IOException; argument
102 String that = ""; field in class:JMXServerErrorTest.Kaeffer
103 public Kaeffer(String that) { argument
104 setThis(that);
106 public String getThis() {return that;}
107 public void setThis(String that) { thi argument
108 doThis(String that) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractPipeImpl.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 AbstractPipeImpl(Pipe that, PipeCloner cloner) { argument
57 cloner.add(that,this);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DNamespaceSupport.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
77 * <p>Note that this class is optimized for the use case where most
98 * <p>This is the Namespace URI that is automatically mapped
121 public NamespaceSupport(NamespaceSupport that) { argument
122 contexts = new Context[that.contexts.length];
124 contextPos = that.contextPos;
128 for (int i = 0; i < that.contexts.length; i++) {
129 Context thatContext = that
472 Context(Context that, Context newParent) argument
[all...]
/openjdk7/jdk/test/java/net/InetAddress/
H A DMyPrincipal.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
52 MyPrincipal that = (MyPrincipal)o;
54 if (this.getName().equals(that.getName()))

Completed in 88 milliseconds

1234567891011>>