Searched refs:type (Results 1 - 25 of 4477) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSNIMatcher.java39 * a particular type, such as host names.
53 // the type of the server name that this matcher performs on
54 private final int type; field in class:SNIMatcher
57 * Creates an {@code SNIMatcher} using the specified server name type.
59 * @param type
60 * the type of the server name that this matcher performs on
62 * @throws IllegalArgumentException if {@code type} is not in the range
65 protected SNIMatcher(int type) { argument
66 if (type < 0) {
68 "Server name type canno
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017768.js31 print(Java.type("java.awt.geom.Arc2D.Float") === Java.type("java.awt.geom.Arc2D$Float"))
32 var iisc = Java.type("jdk.nashorn.test.models.OuterClass$InnerStaticClass$InnerInnerStaticClass")
33 print(Java.type("jdk.nashorn.test.models.OuterClass.InnerStaticClass.InnerInnerStaticClass") === iisc)
34 print(Java.type("jdk.nashorn.test.models.OuterClass$InnerStaticClass.InnerInnerStaticClass") === iisc)
35 print(Java.type("jdk.nashorn.test.models.OuterClass.InnerStaticClass$InnerInnerStaticClass") === iisc)
H A DJDK-8026161.js31 print(Java.type("jdk.nashorn.test.models.IntFloatOverloadSelection").overloadedMethod(1))
32 print(Java.type("jdk.nashorn.test.models.IntFloatOverloadSelection").overloadedMethod(1.0))
H A DJDK-8049242.js32 print(new (Java.type("java.lang.String")["(char[],int,int)"])(['a', 'b', 'c'],0, 3));
34 print(Java.type("java.lang.String")["(char[],int,int)"]);
37 var Color = Java.type("java.lang.String")["(char[],int,int)"];
42 var obj = new (Java.type("java.lang.Object")["()"])();
43 if (obj.class != Java.type("java.lang.Object").class) {
61 checkIt(function() new (Java.type("java.lang.Object")["()xxxxx"])());
62 checkIt(function() new (Java.type("java.lang.Object")["("])());
63 checkIt(function() new (Java.type("java.lang.Object")[")"])());
69 checkIt(function() new (Java.type("java.lang.Runnable"))["()"]);
70 checkIt(function() new (Java.type("jav
[all...]
H A DJDK-8026125.js25 * JDK-8026125: Array.prototype.slice.call(Java.type("java.util.HashMap")) throws ClassCastException: jdk.dynalink.beans.StaticClass cannot be cast to jdk.nashorn.internal.runtime.ScriptObject
31 Array.prototype.splice.call(Java.type("java.util.HashMap"))
32 Array.prototype.slice.call(Java.type("java.util.HashMap"))
/openjdk10/nashorn/docs/source/
H A Djavatypes.js34 var arrayListType = Java.type("java.util.ArrayList")
35 var intType = Java.type("int")
36 var stringArrayType = Java.type("java.lang.String[]")
37 var int2DArrayType = Java.type("int[][]")
40 var ArrayList = Java.type("java.util.ArrayList")
45 var ftype = Java.type("java.awt.geom.Arc2D$Float")
48 var arctype = Java.type("java.awt.geom.Arc2D")
/openjdk10/jdk/src/java.base/share/classes/java/security/cert/
H A DCRL.java48 // the CRL type
49 private String type; field in class:CRL
52 * Creates a CRL of the specified type.
54 * @param type the standard name of the CRL type.
60 protected CRL(String type) { argument
61 this.type = type;
65 * Returns the type of this CRL.
67 * @return the type o
[all...]
/openjdk10/hotspot/src/share/vm/metaprogramming/
H A Ddecay.hpp32 // This trait trims the type from CV qualifiers and references.
38 typedef typename RemoveCV<typename RemoveReference<T>::type>::type type; typedef in struct:Decay
H A DremovePointer.hpp30 // This metafunction returns for a type T either the underlying type behind
31 // the pointer iff T is a pointer type (irrespective of CV qualifiers),
32 // or the same type T if T is not a pointer type.
34 template <typename T> struct RemovePointer: AllStatic { typedef T type; }; typedef in struct:RemovePointer
36 template <typename T> struct RemovePointer<T*>: AllStatic { typedef T type; }; typedef in struct:RemovePointer
37 template <typename T> struct RemovePointer<T* const>: AllStatic { typedef T type; }; typedef in struct:RemovePointer
38 template <typename T> struct RemovePointer<T* volatile>: AllStatic { typedef T type; }; typedef in struct:RemovePointer
39 template <typename T> struct RemovePointer<T* const volatile>: AllStatic { typedef T type; }; typedef in struct:RemovePointer
[all...]
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-8184241.js32 var type = Java.type("jdk.nashorn.test.models.JDK_8184241Test"); variable
33 var extendedtype = Java.extend(type);
/openjdk10/jdk/src/java.base/share/classes/sun/security/jca/
H A DServiceId.java29 * Simple class encapsulating a service type and algorithm for lookup.
37 public final String type; field in class:ServiceId
40 public ServiceId(String type, String algorithm) { argument
41 this.type = type;
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DArrayData.java37 Type type; field in class:ArrayData
40 public ArrayData(Type type, int nargs) { argument
41 this.type = type;
H A DCatchData.java38 Object type; field in class:CatchData
44 CatchData(Object type) { argument
45 this.type = type;
60 return type;
/openjdk10/langtools/src/java.compiler/share/classes/javax/lang/model/type/
H A Dpackage-info.java41 package javax.lang.model.type;
H A DMirroredTypeException.java26 package javax.lang.model.type;
48 private transient TypeMirror type; // cannot be serialized field in class:MirroredTypeException
51 * Constructs a new MirroredTypeException for the specified type.
53 * @param type the type being accessed
55 public MirroredTypeException(TypeMirror type) { argument
56 super("Attempt to access Class object for TypeMirror " + type.toString(), type);
57 this.type = type;
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DUSLPort.java30 private String type; field in class:USLPort
33 public USLPort (String type, int port) argument
35 this.type = type;
39 public String getType () { return type; }
41 public String toString () { return type + ":" + port; }
/openjdk10/jdk/src/jdk.security.jgss/share/classes/com/sun/security/jgss/
H A DAuthorizationDataEntry.java33 private final int type; field in class:AuthorizationDataEntry
38 * @param type the ad-type
42 public AuthorizationDataEntry(int type, byte[] data) { argument
43 this.type = type;
48 * Get the ad-type field.
49 * @return ad-type
52 return type;
64 return "AuthorizationDataEntry: type
[all...]
/openjdk10/jdk/test/sun/security/krb5/name/
H A DConstructors.java37 int type;
43 type = PrincipalName.KRB_NT_UNKNOWN;
44 checkName("a", type, "R", "R", false, "a");
45 checkName("a@R2", type, "R", "R", false, "a");
46 checkName("a/b", type, "R", "R", false, "a", "b");
47 checkName("a/b@R2", type, "R", "R", false, "a", "b");
48 checkName("a/b/c", type, "R", "R", false, "a", "b", "c");
49 checkName("a/b/c@R2", type, "R", "R", false, "a", "b", "c");
51 checkName("a\\/b", type, "R", "R", false, "a/b");
52 checkName("a\\/b\\/c", type, "
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DTypeReference.java23 package org.graalvm.compiler.core.common.type;
29 * This class represents a reference to a Java type and whether this reference is referring only to
30 * the represented type or also to its sub types in the class hierarchy. When creating a type
34 * <li>The reference should always only refer to the given concrete type. Use
37 * reference is exact only when the type is a leaf type (i.e., it cannot have subclasses). Depending
38 * on whether interface types can be trusted for this type reference use
41 * reference is also exact, when there is only a single concrete sub type for the given type
52 private final ResolvedJavaType type; field in class:TypeReference
55 TypeReference(ResolvedJavaType type, boolean exactReference) argument
63 createExactTrusted(ResolvedJavaType type) argument
74 createWithoutAssumptions(ResolvedJavaType type) argument
82 createTrustedWithoutAssumptions(ResolvedJavaType type) argument
90 create(Assumptions assumptions, ResolvedJavaType type) argument
97 createTrusted(Assumptions assumptions, ResolvedJavaType type) argument
140 filterInterfaceTypesOut(ResolvedJavaType type) argument
[all...]
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DSearchFor.java28 private final String type; field in class:SearchFor
34 public SearchFor(String name, String type) { argument
36 this.type = type;
40 return "".equals(type);
44 return this.type;
53 return type + ": " + name;
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBTypeAndAnnotation.java38 JType type; field in class:JAXBTypeAndAnnotation
42 this.type = typeAnn.getTypeClass();
45 public JAXBTypeAndAnnotation(JType type) { argument
46 this.type = type;
49 public JAXBTypeAndAnnotation(TypeAndAnnotation typeAnn, JType type) { argument
51 this.type = type;
60 return type;
64 return type
75 setType(JType type) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DVMFlag.java36 * The C++ type of the flag.
38 public final String type; field in class:VMFlag
45 VMFlag(String name, String type, Object value) { argument
47 this.type = type;
53 return String.format("Flag[type=%s, name=%s, value=%s]", type, name, value);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DStatus.java37 private final short type; field in class:Status
41 Status(short type, boolean isExceptional) { argument
42 this.type = type;
47 return type;
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DDLSSampleLoop.java37 long type; field in class:DLSSampleLoop
58 return type;
61 public void setType(long type) { argument
62 this.type = type;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJCast.java37 private final JType type; field in class:JCast
47 * @param type
54 JCast(JType type, JExpression object) { argument
55 this.type = type;
60 f.p("((").g(type).p(')').g(object).p(')');

Completed in 366 milliseconds

1234567891011>>