Searched defs:that (Results 101 - 125 of 216) sorted by relevance

123456789

/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DIDLTypeHelper.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
46 //public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.IDLType that)
47 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.IDLType that) argument
51 write (out, that);
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/
H A DFullValueDescriptionHelper.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
43 public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription that) argument
47 write (out, that);
/openjdk7/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseHelper.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
43 public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.SendingContext.CodeBase that) argument
47 write (out, that);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DForwardEntry.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 ForwardEntry (ForwardEntry that) argument
57 super (that);
60 protected ForwardEntry (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 DSequenceEntry.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
57 protected SequenceEntry (SequenceEntry that) argument
59 super (that);
60 _maxSize = that._maxSize;
63 protected SequenceEntry (SymtabEntry that, IDLID clone) argument
65 super (that, clone);
66 if (!(that instanceof SequenceEntry))
67 // If that i
[all...]
H A DStructEntry.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 StructEntry (StructEntry that) argument
57 super (that);
63 _members = (Vector)that._members.clone ();
64 _contained = (Vector)that._contained.clone ();
67 protected StructEntry (SymtabEntry that, IDLID clone) argument
69 super (that, clone);
H A DUnionEntry.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
57 protected UnionEntry (UnionEntry that) argument
59 super (that);
65 _branches = (Vector)that._branches.clone ();
66 _defaultBranch = that._defaultBranch;
67 _contained = that._contained;
70 protected UnionEntry (SymtabEntry that, IDLID clone) argument
72 super (that, clon
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DStringValueHelper.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
62 public static void insert (org.omg.CORBA.Any a, String that) argument
66 write (out, that);
H A DWStringValueHelper.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
66 public static void insert (org.omg.CORBA.Any a, String that) argument
70 write (out, that);
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIServerSocketFactory.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
90 * that are enabled by default
95 * that are enabled by default
135 * that are enabled by default
140 * that are enabled by default
211 * that are enabled by default.</p>
226 * that are enabled by default.</p>
252 * <p>Creates a server socket that accept
299 checkParameters(SslRMIServerSocketFactory that) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAccessControlContext.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
42 * that is equivalent to the <code>checkPermission</code> method
46 * rather than that of the current execution thread.
49 * a security check that should be made within a given context
337 * Stop at the first one that doesn't allow the
367 db.println("domain that failed "+pd);
398 // in that case, ignore the stack context
402 // in that cas
555 containsAllPDs(AccessControlContext that) argument
[all...]
H A DCodeSource.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
42 * that were used to verify signed code originating from that location.
129 * chains are of identical value. It is not required that
211 * create an array of CodeSigner objects. Note that only X.509 certificates
260 * equal to -1 (that is, if a port is specified), it must equal
292 * Note that if this CodeSource has a null location and a null
311 * CodeSource are also in <i>that</
317 matchCerts(CodeSource that, boolean strict) argument
372 matchLocation(CodeSource that) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedCollator.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
47 * <code>Collator</code> that provides a simple, data-driven, table
73 * characters, excluding special characters (that is, common
77 * (e.g. ampersand => '&'). Note that unquoted white space characters
79 * <LI><strong>Modifier</strong>: There are currently two modifiers that
92 * <p>'@' : Indicates that accents are sorted backwards, as in French.
103 * <p>'&' : Indicates that the next rule follows the position to where
117 * Notice that th
306 RuleBasedCollator(RuleBasedCollator that) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciKlass.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
68 bool ciKlass::is_subtype_of(ciKlass* that) { argument
69 assert(is_loaded() && that->is_loaded(), "must be loaded");
70 assert(is_java_klass() && that->is_java_klass(), "must be java klasses");
72 if (this == that) {
78 klassOop that_klass = that->get_klassOop();
86 bool ciKlass::is_subclass_of(ciKlass* that) { argument
87 assert(is_loaded() && that->is_loaded(), "must be loaded");
88 assert(is_java_klass() && that
157 least_common_ancestor(ciKlass* that) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DAttributeProperty.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 * Implements {@link Comparable} so that it can be sorted lexicographically.
116 public int compareTo(AttributeProperty that) { argument
117 return this.attName.compareTo(that.attName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DW3CWsaClientTube.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
43 public W3CWsaClientTube(WsaClientTube that, TubeCloner cloner) { argument
44 super(that, cloner);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DMemberSubmissionWsaClientTube.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
50 public MemberSubmissionWsaClientTube(MemberSubmissionWsaClientTube that, TubeCloner cloner) { argument
51 super(that, cloner);
52 this.validation = that.validation;
H A DMemberSubmissionWsaServerTube.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
51 public MemberSubmissionWsaServerTube(MemberSubmissionWsaServerTube that, TubeCloner cloner) { argument
52 super(that, cloner);
53 this.validation = that.validation;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractTubeImpl.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 AbstractTubeImpl(AbstractTubeImpl that, TubeCloner cloner) { argument
57 cloner.add(that,this);
H A DPipeAdapter.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
38 * {@link Tube} that invokes {@link Pipe}.
68 private TubeAdapter(TubeAdapter that, PipeCloner cloner) {
69 super(that, cloner);
70 this.t = cloner.copy(that.t);
94 private PipeAdapter(PipeAdapter that, TubeCloner cloner) { argument
95 super(that,cloner);
96 this.next = ((PipeCloner)cloner).copy(that
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DClientSchemaValidationTube.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
48 * {@link Tube} that does the schema validation on the client side.
99 protected ClientSchemaValidationTube(ClientSchemaValidationTube that, TubeCloner cloner) { argument
100 super(that,cloner);
101 this.port = that.port;
102 this.schema = that.schema;
104 this.noValidation = that.noValidation;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMimeCodec.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
47 * {@link Codec}s that uses the MIME multipart as the underlying format.
51 * when there are more than one {@link Codec}s that use MIME multipart,
110 // TODO: preencode String literals to byte[] so that they don't have to
171 protected MimeCodec(MimeCodec that) { argument
172 this.version = that.version;
173 this.binding = that.binding;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientLogicalHandlerTube.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
64 * first and then a LogicalHandlerTube is created with a handler to that
79 private ClientLogicalHandlerTube(ClientLogicalHandlerTube that, TubeCloner cloner) { argument
80 super(that, cloner);
81 this.binding = that.binding;
82 this.seiModel = that.seiModel;
H A DClientMessageHandlerTube.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 private ClientMessageHandlerTube(ClientMessageHandlerTube that, TubeCloner cloner) { argument
70 super(that, cloner);
71 this.seiModel = that.seiModel;
72 this.binding = that.binding;

Completed in 181 milliseconds

123456789