Searched defs:type (Results 276 - 300 of 1595) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxFileStore.java117 public boolean supportsFileAttributeView(Class<? extends FileAttributeView> type) { argument
120 if (type == DosFileAttributeView.class ||
121 type == UserDefinedFileAttributeView.class)
148 return super.supportsFileAttributeView(type);
H A DLinuxFileSystemProvider.java55 Class<V> type,
58 if (type == DosFileAttributeView.class) {
62 if (type == UserDefinedFileAttributeView.class) {
66 return super.getFileAttributeView(obj, type, options);
88 Class<A> type,
92 if (type == DosFileAttributes.class) {
97 return super.readAttributes(file, type, options);
54 getFileAttributeView(Path obj, Class<V> type, LinkOption... options) argument
87 readAttributes(Path file, Class<A> type, LinkOption... options) argument
H A DSolarisFileStore.java76 public boolean supportsFileAttributeView(Class<? extends FileAttributeView> type) { argument
77 if (type == AclFileAttributeView.class) {
85 return (type().equals("zfs"));
88 if (type == UserDefinedFileAttributeView.class) {
100 return super.supportsFileAttributeView(type);
H A DSolarisFileSystemProvider.java56 Class<V> type,
59 if (type == AclFileAttributeView.class) {
63 if (type == UserDefinedFileAttributeView.class) {
67 return super.getFileAttributeView(obj, type, options);
55 getFileAttributeView(Path obj, Class<V> type, LinkOption... options) argument
/openjdk7/langtools/test/tools/javac/processing/model/type/
H A DNoTypes.java39 import javax.lang.model.type.*;
42 import static javax.lang.model.type.TypeKind.*;
59 // The enclosing type of a top-level class is NONE
66 // The type of a package is PACKAGE.
77 // The return type of a constructor or void method is VOID.
95 private void verifyKind(TypeKind kind, TypeMirror type) { argument
110 if (kind != type.getKind() || kind != new Vis().visit(type))
/openjdk7/langtools/test/tools/javac/tree/
H A DMakeLiteralTest.java68 void test(Object value, int tag, Type type, Object constValue) { argument
70 if (l.type.tag != tag)
72 if (!types.isSameType(l.type, type))
73 error("unexpected type: " + l.type + ": expected: " + type);
74 if (l.type.constValue().getClass() != constValue.getClass()
75 || !constValue.equals(l.type.constValue())) {
77 + l.type
[all...]
/openjdk7/langtools/test/tools/javac/types/
H A DCastTest.java27 * @summary Add test library to simplify the task of writing automated type-system tests
146 <T> T[] join(Class<T> type, T[]... args) { argument
151 T[] new_arr = (T[])Array.newInstance(type, totalLength);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DArrayType.java63 * Denotes array type, such as int[][]
72 * Convenience constructor for array type, e.g. int[]
74 * @param type array type, e.g. T_INT
76 public ArrayType(byte type, int dimensions) { argument
77 this(BasicType.getType(type), dimensions);
81 * Convenience constructor for reference array type, e.g. Object[]
90 * Constructor for array of given type
92 * @param type type o
94 ArrayType(Type type, int dimensions) argument
152 equals(Object type) argument
[all...]
H A DObjectType.java70 private String class_name; // Class name of type
88 /** @return true if both type objects refer to the same class.
90 public boolean equals(Object type) { argument
91 return (type instanceof ObjectType)?
92 ((ObjectType)type).class_name.equals(class_name) : false;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DSlotAllocator.java51 public int allocateSlot(Type type) { argument
52 final int size = type.getSize();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMUniOp.java77 public CMUniOp(int type, CMNode childNode) argument
79 super(type);
82 if ((type() != XMLContentSpec.CONTENTSPECNODE_ZERO_OR_ONE)
83 && (type() != XMLContentSpec.CONTENTSPECNODE_ZERO_OR_MORE)
84 && (type() != XMLContentSpec.CONTENTSPECNODE_ONE_OR_MORE))
112 if (type() == XMLContentSpec.CONTENTSPECNODE_ONE_OR_MORE)
H A DMixedContentModel.java97 /** The type of the children to support ANY. */
117 * @param type The list of the types of the children.
122 public MixedContentModel(QName[] children, int[] type, int offset, int length , boolean ordered) { argument
129 fChildrenType[i] = type[offset + i];
177 int type = fChildrenType[inIndex];
178 if (type == XMLContentSpec.CONTENTSPECNODE_LEAF) {
183 else if (type == XMLContentSpec.CONTENTSPECNODE_ANY) {
189 else if (type == XMLContentSpec.CONTENTSPECNODE_ANY_LOCAL) {
194 else if (type == XMLContentSpec.CONTENTSPECNODE_ANY_OTHER) {
220 int type
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMRepeatingLeaf.java37 public XSCMRepeatingLeaf(int type, Object leaf, argument
39 super(type, leaf, id, position);
H A DXSCMUniOp.java40 public XSCMUniOp(int type, CMNode childNode) { argument
41 super(type);
44 if ((type() != XSParticleDecl.PARTICLE_ZERO_OR_ONE)
45 && (type() != XSParticleDecl.PARTICLE_ZERO_OR_MORE)
46 && (type() != XSParticleDecl.PARTICLE_ONE_OR_MORE)) {
71 if (type() == XSParticleDecl.PARTICLE_ONE_OR_MORE)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDefaultErrorHandler.java93 private void printError(String type, XMLParseException ex) { argument
96 fOut.print(type);
H A DStatus.java43 private final short type; field in class:Status
47 Status(short type, boolean isExceptional) { argument
48 this.type = type;
53 return type;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLConfigurationException.java45 /** Exception type. */
56 * Constructs a configuration exception with the specified type
59 * @param type The type of the exception.
62 public XMLConfigurationException(Status type, String identifier) { argument
64 fType = type;
69 * Constructs a configuration exception with the specified type,
72 * @param type The type of the exception.
76 public XMLConfigurationException(Status type, Strin argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java92 private void printError(String type, XMLParseException ex) { argument
95 fOut.print(type);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DMutableAttrListImpl.java75 * @param type The attribute type as a string.
79 String type, String value)
93 this.setAttribute(index, uri, localName, qName, type, value);
95 super.addAttribute(uri, localName, qName, type, value);
78 addAttribute(String uri, String localName, String qName, String type, String value) argument
H A DObjectPool.java33 * Pool of object of a given type to pick from to help memory usage
51 * @param type Type of objects for this pool
53 public ObjectPool(Class type) argument
55 objectType = type;
62 * @param className Fully qualified name of the type of objects for this pool.
82 * @param type Type of objects for this pool
85 public ObjectPool(Class type, int size) argument
87 objectType = type;
164 // Make sure the object is of the correct type.
172 // throw new IllegalArgumentException("argument type invali
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLElementDecl.java50 /** type */
51 public short type = -1; field in class:XMLElementDecl
62 * @param type
66 public void setValues(QName name, int scope, short type, XMLSimpleType simpleType) { argument
69 this.type = type;
78 this.type = -1;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImplHelper.java43 a.type (type ());
45 a.read_value (out.create_input_stream (), type ());
54 synchronized public static org.omg.CORBA.TypeCode type () method in class:AnyImplHelper
H A DTypeCodeImplHelper.java41 a.type (type ());
43 a.read_value (out.create_input_stream (), type ());
52 synchronized public static org.omg.CORBA.TypeCode type () method in class:TypeCodeImplHelper
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DDefaultSocketFactory.java68 public ServerSocket createServerSocket(String type, int port) argument
72 if (! type.equals(ORBSocketFactory.IIOP_CLEAR_TEXT)) {
73 throw wrapper.defaultCreateServerSocketGivenNonIiopClearText( type ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DRepositoryIdStrings.java37 String createForAnyType(Class type); argument

Completed in 84 milliseconds

<<11121314151617181920>>