Searched refs:type (Results 151 - 175 of 4477) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/referenceinfos/
H A DInitializers.java37 @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE)
38 @TADescription(annotation = "TB", type = NEW,
44 @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE)
45 @TADescription(annotation = "TB", type = NEW,
47 @TADescription(annotation = "TC", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE)
48 @TADescription(annotation = "TD", type = NEW,
55 @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE)
56 @TADescription(annotation = "TB", type = NEW,
62 @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE)
63 @TADescription(annotation = "TB", type
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDelegate.java47 protected final XSSimpleType type; field in class:XSSimpleTypeDelegate
49 public XSSimpleTypeDelegate(XSSimpleType type) { argument
50 if (type == null) {
53 this.type = type;
57 return type;
61 return type.getAnnotations();
65 return type.getBounded();
69 return type.getBuiltInKind();
73 return type
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DStackMapType.java31 * This class represents the type of a local variable or item on stack
41 private byte type; field in class:StackMapType
61 * @param type type tag as defined in the Constants interface
64 public StackMapType(final byte type, final int index, final ConstantPool constant_pool) { argument
65 if ((type < Const.ITEM_Bogus) || (type > Const.ITEM_NewObject)) {
66 throw new RuntimeException("Illegal type for StackMapType: " + type);
68 this.type
[all...]
/openjdk10/jdk/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/
H A DResultContainer.java43 private int type; field in class:ResultContainer
45 int type() { method in class:ResultContainer
46 return type;
50 return type() != NOTHING;
54 return type() != MESSAGE && type() != NOTHING ? true : false;
58 type = NOTHING;
63 assert type() != MESSAGE && type() != NOTHING;
69 assert type()
[all...]
/openjdk10/langtools/test/tools/javac/processing/model/util/types/
H A DTestPseudoTypeHandling.java40 import javax.lang.model.type.*;
44 * Test basic handling of module type.
56 for (TypeMirror type : typeMirrorsToTest) {
57 expectException(t -> typeUtils.isSubtype(t, objectType), type);
58 expectException(t -> typeUtils.isSubtype(objectType, t), type);
60 expectException(t -> typeUtils.isAssignable(t, objectType), type);
61 expectException(t -> typeUtils.isAssignable(objectType, t), type);
63 expectException(t -> typeUtils.contains(t, objectType), type);
64 expectException(t -> typeUtils.contains(objectType, t), type);
66 expectException(t -> typeUtils.capture(t), type);
77 expectException(Consumer<TypeMirror> argument, TypeMirror type) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathResultImpl.java48 Class<T> type; field in class:XPathResultImpl
63 * @param type class type
67 public XPathResultImpl(XObject resultObject, Class<T> type) argument
71 this.type = type;
76 * Return the result type as an enum specified by {@code XPathResultType}
77 * @return the result type
80 public XPathResultType type() { method in class:XPathResultImpl
85 * Returns the value of the result as the type
143 getValue(XObject resultObject, Class<T> type) argument
187 classToInternalType(Class<T> type) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DAbstractObjectStamp.java23 package org.graalvm.compiler.core.common.type;
40 private final ResolvedJavaType type; field in class:AbstractObjectStamp
43 protected AbstractObjectStamp(ResolvedJavaType type, boolean exactType, boolean nonNull, boolean alwaysNull) { argument
45 this.type = type;
53 return copyWith(type, exactType, newNonNull, newAlwaysNull);
75 return !exactType || (type != null && (isConcreteType(type)));
85 if (type != null) {
86 return type;
91 public ResolvedJavaType type() { method in class:AbstractObjectStamp
250 isConcreteType(ResolvedJavaType type) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DRequestProcessingPolicyImpl.java60 String type = null ;
63 type = "USE_ACTIVE_OBJECT_MAP_ONLY" ;
66 type = "USE_DEFAULT_SERVANT" ;
69 type = "USE_SERVANT_MANAGER" ;
73 return "RequestProcessingPolicy[" + type + "]" ;
/openjdk10/hotspot/test/compiler/compilercontrol/share/scenario/
H A DCompileCommand.java35 public final Scenario.Type type; field in class:CompileCommand
40 Scenario.Type type) {
44 this.type = type;
63 System.out.printf("%s (type: %s): %s (valid: %b)%n", command.name(),
64 type.name(), methodDescriptor.getString(), isValid());
37 CompileCommand(Command command, MethodDescriptor methodDescriptor, Scenario.Compiler compiler, Scenario.Type type) argument
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLElementDecl.java51 /** type */
52 public short type = -1; field in class:XMLElementDecl
63 * @param type
67 public void setValues(QName name, int scope, short type, XMLSimpleType simpleType) { argument
70 this.type = type;
79 this.type = -1;
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DTransformerUtilFactory.java46 public static TransformerUtil getUtil(String type) throws Exception { argument
47 if (type.equals(DOM)) {
49 } else if (type.equals(STREAM))
51 else if (type.equals(SAX))
53 else if (type.equals(StAX))
/openjdk10/jdk/src/java.base/share/classes/java/security/cert/
H A DCertificateFactory.java94 * following standard {@code CertificateFactory} type:
103 * The type and encodings are described in the <a href=
127 // The certificate type
128 private String type; field in class:CertificateFactory
137 * Creates a CertificateFactory object of the given type, and encapsulates
142 * @param type the certificate type.
145 Provider provider, String type)
149 this.type = type;
144 CertificateFactory(CertificateFactorySpi certFacSpi, Provider provider, String type) argument
189 getInstance(String type) argument
238 getInstance(String type, String provider) argument
283 getInstance(String type, Provider provider) argument
[all...]
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/inspector/
H A DXNodeInfo.java31 * <p>It encapsulates the node's info, i.e. the type of the node, the label to
33 * and arbitrary data which varies depending on the type of the node: an XMBean
46 public XNodeInfo(Type type, Object data, String label, String tooltip) { argument
47 this.type = type;
54 return type;
73 private Type type; field in class:XNodeInfo
/openjdk10/jdk/test/javax/sql/testng/util/
H A DStubStruct.java32 private final String type; field in class:StubStruct
35 public StubStruct(String type, Object[] o) { argument
36 this.type = type;
42 return type;
/openjdk10/nashorn/samples/
H A Dshell.js42 var Arrays = Java.type("java.util.Arrays");
43 var BufferedReader = Java.type("java.io.BufferedReader");
44 var InputStreamReader = Java.type("java.io.InputStreamReader");
45 var ProcessBuilder = Java.type("java.lang.ProcessBuilder");
46 var System = Java.type("java.lang.System");
/openjdk10/nashorn/test/script/trusted/
H A DJDK-8008305.js30 var URLReader = Java.type("jdk.nashorn.api.scripting.URLReader");
31 var File = Java.type("java.io.File");
32 var FileReader = Java.type("java.io.FileReader");
33 var ScriptEngineManager = Java.type("javax.script.ScriptEngineManager");
34 var SecurityException = Java.type("java.lang.SecurityException");
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicFunctionSym.java31 private Type type; field in class:BasicFunctionSym
35 Type type, boolean isModuleLocal) {
37 this.type = type;
43 public Type getType() { return type; }
48 type = db.resolveType(this, type, listener, "resolving type of function symbol");
59 FunctionType type = (FunctionType) getType();
60 if (type !
34 BasicFunctionSym(BlockSym parent, long length, Address addr, String name, Type type, boolean isModuleLocal) argument
[all...]
H A DBasicGlobalSym.java31 private Type type; field in class:BasicGlobalSym
35 public BasicGlobalSym(String name, Type type, Address addr, boolean isModuleLocal) { argument
37 this.type = type;
44 public Type getType() { return type; }
49 type = db.resolveType(this, type, listener, "resolving type of global");
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DEndPointInfoImpl.java37 protected String type; field in class:EndPointInfoImpl
43 public EndPointInfoImpl(String type, int port, String hostname) { argument
44 this.type = type;
52 return type;
83 return type.hashCode() ^ hostname.hashCode() ^ port;
91 if (type == null) {
92 if (other.type != null) {
95 } else if (!type.equals(other.type)) {
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DNEWARRAY.java31 * NEWARRAY - Create new array of basic type (int, short, ...)
33 * type must be one of T_INT, T_SHORT, ...
40 private byte type; field in class:NEWARRAY
51 public NEWARRAY(final byte type) { argument
53 this.type = type;
57 public NEWARRAY(final BasicType type) { argument
58 this(type.getType());
69 out.writeByte(type);
74 * @return numeric code for basic element type
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ci/
H A DciField.java43 Type type = db.lookupType("ciField");
44 constantValueField = type.getAddressField("_constant_value");
45 isConstantField = type.getAddressField("_is_constant");
46 offsetField = new CIntField(type.getCIntegerField("_offset"), 0);
47 signatureField = type.getAddressField("_signature");
48 nameField = type.getAddressField("_name");
49 holderField = type.getAddressField("_holder");
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotUnresolvedField.java35 private final JavaType type; field in class:HotSpotUnresolvedField
37 HotSpotUnresolvedField(JavaType holder, String name, JavaType type) { argument
39 this.type = type;
48 return type;
69 return this.holder.equals(that.holder) && this.name.equals(that.name) && this.type.equals(that.type);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/impl/
H A DLeafInfoImpl.java38 private final TypeT type; field in class:LeafInfoImpl
44 protected LeafInfoImpl(TypeT type,QName typeName) { argument
45 assert type!=null;
47 this.type = type;
52 * A reference to the representation of the type.
55 return type;
59 * Leaf-type cannot be referenced from IDREF.
88 return type.toString();
/openjdk10/jdk/src/java.base/macosx/classes/apple/security/
H A DAppleProvider.java46 ProviderService(Provider p, String type, String algo, String cn) { argument
47 super(p, type, algo, cn, null, null);
53 String type = getType();
56 ("constructorParameter not used with " + type + " engines");
61 if (type.equals("KeyStore")) {
68 type + " for " + algo + " using Apple", ex);
71 " " + type);
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DBinaryArithmeticExpression.java41 super(op, where, left.type, left, right);
45 * Select the type
49 type = Type.tDouble;
51 type = Type.tFloat;
53 type = Type.tLong;
55 type = Type.tInt;
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);

Completed in 115 milliseconds

1234567891011>>