Searched refs:type (Results 201 - 225 of 4477) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DStandardWatchEventKinds.java85 private final Class<T> type; field in class:StandardWatchEventKinds.StdWatchEventKind
86 StdWatchEventKind(String name, Class<T> type) { argument
88 this.type = type;
91 @Override public Class<T> type() { return type; } method in class:StandardWatchEventKinds.StdWatchEventKind
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DAbstractResourcePoolEntry.java47 private final Type type; field in class:AbstractResourcePoolEntry
54 * @param type The data type.
56 AbstractResourcePoolEntry(String module, String path, Type type) { argument
59 this.type = Objects.requireNonNull(type);
73 public final Type type() { method in class:AbstractResourcePoolEntry
74 return type;
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/event/
H A DNamingEvent.java36 * <li>The event type.
75 * Naming event type for indicating that a new object has been added.
81 * Naming event type for indicating that an object has been removed.
87 * Naming event type for indicating that an object has been renamed.
110 * Naming event type for indicating that an object has been changed.
128 * Contains the type of this event.
135 protected int type; field in class:NamingEvent
155 * For an {@code OBJECT_ADDED} event type, {@code newBd} must not be null.
156 * For an {@code OBJECT_REMOVED} event type, {@code oldBd} must not be null.
157 * For an {@code OBJECT_CHANGED} event type, {
172 NamingEvent(EventContext source, int type, Binding newBd, Binding oldBd, Object changeInfo) argument
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DBinaryBitExpression.java43 super(op, where, left.type, left, right);
47 * Select the type
51 type = Type.tBoolean;
53 type = Type.tLong;
55 type = Type.tInt;
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A DTest4968523.java44 private static void test(Class<?> type, PersistenceDelegate pd) { argument
48 PersistenceDelegate pd1 = encoder1.getPersistenceDelegate(type);
49 PersistenceDelegate pd2 = encoder2.getPersistenceDelegate(type);
51 encoder1.setPersistenceDelegate(type, pd);
53 if (pd1 == encoder1.getPersistenceDelegate(type))
56 if (pd2 != encoder2.getPersistenceDelegate(type))
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/referenceinfos/
H A DResourceVariable.java38 @TADescription(annotation = "TA", type = RESOURCE_VARIABLE,
40 @TADescription(annotation = "TB", type = RESOURCE_VARIABLE,
51 @TADescription(annotation = "RTAs", type = RESOURCE_VARIABLE,
60 @TADescription(annotation = "RTAs", type = RESOURCE_VARIABLE,
69 @TADescription(annotation = "TA", type = RESOURCE_VARIABLE,
71 @TADescription(annotation = "TB", type = RESOURCE_VARIABLE,
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DMapTuple.java33 * @param <T> value type
38 final Type type; field in class:MapTuple
41 MapTuple(final String key, final Symbol symbol, final Type type) { argument
42 this(key, symbol, type, null);
45 MapTuple(final String key, final Symbol symbol, final Type type, final T value) { argument
48 this.type = type;
/openjdk10/nashorn/samples/
H A Dzipfs.js37 var Files = Java.type("java.nio.file.Files")
38 var FileSystems = Java.type("java.nio.file.FileSystems")
39 var Paths = Java.type("java.nio.file.Paths")
H A Dprettyprinter.js38 var File = Java.type("java.io.File");
46 var ArrayAccess = Java.type("jdk.nashorn.api.tree.ArrayAccessTree");
47 var Block = Java.type("jdk.nashorn.api.tree.BlockTree");
48 var FunctionDeclaration = Java.type("jdk.nashorn.api.tree.FunctionDeclarationTree");
49 var FunctionExpression = Java.type("jdk.nashorn.api.tree.FunctionExpressionTree");
50 var Identifier = Java.type("jdk.nashorn.api.tree.IdentifierTree");
51 var Kind = Java.type("jdk.nashorn.api.tree.Tree.Kind");
52 var MemberSelect = Java.type("jdk.nashorn.api.tree.MemberSelectTree");
53 var ObjectLiteral = Java.type("jdk.nashorn.api.tree.ObjectLiteralTree");
54 var Parser = Java.type("jd
[all...]
H A Dnashornastviewer.js50 var StackPane = Java.type("javafx.scene.layout.StackPane");
51 var Scene = Java.type("javafx.scene.Scene");
52 var TreeItem = Java.type("javafx.scene.control.TreeItem");
53 var TreeView = Java.type("javafx.scene.control.TreeView");
56 var Enum = Java.type("java.lang.Enum");
57 var File = Java.type("java.io.File");
58 var List = Java.type("java.util.List");
59 var Parser = Java.type("jdk.nashorn.api.tree.Parser");
60 var Tree = Java.type("jdk.nashorn.api.tree.Tree");
69 var type
[all...]
H A Dcall_bind_java.js37 var Files = Java.type("java.nio.file.Files");
38 var FileSystems = Java.type("java.nio.file.FileSystems");
39 var System = Java.type("java.lang.System");
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotClassInitializationPlugin.java25 import org.graalvm.compiler.core.common.type.ObjectStamp;
26 import org.graalvm.compiler.core.common.type.Stamp;
27 import org.graalvm.compiler.core.common.type.StampFactory;
43 public boolean shouldApply(GraphBuilderContext builder, ResolvedJavaType type) { argument
45 if (!type.isArray()) {
48 // We can elide initialization nodes if type >=: methodHolder.
49 // The type is already initialized by either "new" or "invokestatic".
51 // Emit initialization node if type is an interface since:
54 // initialized and a class or interface type T will be initialized
58 return !type
68 apply(GraphBuilderContext builder, ResolvedJavaType type, FrameState frameState) argument
[all...]
H A DHotSpotStampProvider.java25 import org.graalvm.compiler.core.common.type.ObjectStamp;
26 import org.graalvm.compiler.core.common.type.Stamp;
27 import org.graalvm.compiler.hotspot.nodes.type.KlassPointerStamp;
28 import org.graalvm.compiler.hotspot.nodes.type.MethodPointerStamp;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/
H A DNewMultiArrayNode.java28 import org.graalvm.compiler.core.common.type.StampFactory;
29 import org.graalvm.compiler.core.common.type.TypeReference;
50 protected final ResolvedJavaType type; field in class:NewMultiArrayNode
64 public NewMultiArrayNode(ResolvedJavaType type, ValueNode[] dimensions) { argument
65 this(TYPE, type, dimensions);
68 protected NewMultiArrayNode(NodeClass<? extends NewMultiArrayNode> c, ResolvedJavaType type, ValueNode[] dimensions) { argument
69 super(c, StampFactory.objectNonNull(TypeReference.createExactTrusted(type)));
70 this.type = type;
72 assert dimensions.length > 0 && type
80 public ResolvedJavaType type() { method in class:NewMultiArrayNode
[all...]
/openjdk10/hotspot/src/cpu/arm/vm/
H A Dc1_LIR_arm.cpp63 if (base()->type() == T_INT) {
64 assert(index()->is_single_cpu() && (index()->type() == T_INT), "wrong index operand");
67 (index()->is_single_cpu() && (index()->is_oop_register() || index()->type() == T_INT)), "wrong index operand");
68 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA, "wrong type for addresses");
76 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type()
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMap4Types.java39 // the type of component stored here: complex or simple type
47 * @param type the type of components
49 public XSNamedMap4Types(String namespace, SymbolHash map, short type) { argument
51 fType = type;
60 * @param type the type of components
62 public XSNamedMap4Types(String[] namespaces, SymbolHash[] maps, int num, short type) { argument
64 fType = type;
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DHyperlinkEvent.java58 * @param type the event type
61 public HyperlinkEvent(Object source, EventType type, URL u) { argument
62 this(source, type, u, null);
69 * @param type the event type
77 public HyperlinkEvent(Object source, EventType type, URL u, String desc) { argument
78 this(source, type, u, desc, null);
85 * @param type the event type
96 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement) argument
121 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement, InputEvent inputEvent) argument
188 private EventType type; field in class:HyperlinkEvent
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djmorecfg.h45 * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
57 /* JSAMPLE should be the smallest type that will hold the values 0..255.
84 /* JSAMPLE should be the smallest type that will hold the values 0..4095.
109 * managers, this is also the data type passed to fread/fwrite.
196 #define METHODDEF(type) static type
198 #define LOCAL(type) static type
200 #define GLOBAL(type) type
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/util/
H A DTypeClosure.java31 * Perform a transitive closure operation on a type to determine if it
52 public boolean contains(XSType type) { argument
53 if( typeSet.contains(type) ) {
56 XSType baseType = type.getBaseType();
60 // climb the super type hierarchy
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/visitor/
H A DXSSimpleTypeFunction.java40 T listSimpleType( XSListSimpleType type );
41 T unionSimpleType( XSUnionSimpleType type );
42 T restrictionSimpleType( XSRestrictionSimpleType type );
H A DXSSimpleTypeVisitor.java40 void listSimpleType( XSListSimpleType type );
41 void unionSimpleType( XSUnionSimpleType type );
42 void restrictionSimpleType( XSRestrictionSimpleType type );
/openjdk10/jdk/test/java/beans/Introspector/4520754/
H A DTest4520754.java70 for (Class type : types) {
71 BeanInfo info = getBeanInfo(mark, type);
73 throw new Error("could not find BeanInfo for " + type);
76 throw new Error("could not find marked BeanInfo for " + type);
82 private static BeanInfo getBeanInfo(Boolean mark, Class type) { argument
83 System.out.println("test=" + mark + " for " + type);
86 info = Introspector.getBeanInfo(type);
91 throw new Error("could not find BeanInfo for " + type);
94 throw new Error("could not find marked BeanInfo for " + type);
102 private static void test4168475(Class type) { argument
[all...]
/openjdk10/langtools/test/tools/javac/classfiles/attributes/innerclasses/
H A DInnerClassesInInnerClassTestBase.java43 Map<String, Set<String>> class2Flags, ClassType type, Modifier...flags) {
44 super.getAdditionalFlags(class2Flags, type, flags);
45 class2Flags.put("Inner", getFlags(type, Arrays.asList(flags)));
42 getAdditionalFlags( Map<String, Set<String>> class2Flags, ClassType type, Modifier...flags) argument
/openjdk10/nashorn/test/script/basic/
H A DJDK-8075448.js33 var Parser = Java.type("jdk.nashorn.api.tree.Parser");
34 var ForLoopTree = Java.type("jdk.nashorn.api.tree.ForLoopTree");
35 var VariableTree = Java.type("jdk.nashorn.api.tree.VariableTree");
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DIDLTypeOperations.java53 * The type attribute describes the type defined by an object
57 org.omg.CORBA.TypeCode type (); method in interface:IDLTypeOperations

Completed in 230 milliseconds

1234567891011>>