Searched defs:factory (Results 1 - 25 of 222) sorted by relevance

123456789

/openjdk7/jdk/test/java/lang/Class/asSubclass/
H A DBasicUnit.java45 static <T extends Int> T factory(Class<T> c) throws Throwable { method in class:BasicUnit
49 factory(Class.forName("MyInt").asSubclass(Int.class)).main();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DCallDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 return factory.newCallInstruction(new PCRelativeAddress(offset));
H A DCoprocessorDecoder.java35 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
40 return factory.newCoprocessorInstruction(instruction, op3,
H A DIllegalInstructionDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 return factory.newIllegalInstruction(instruction);
H A DSethiDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
36 instr = factory.newNoopInstruction();
38 instr = factory.newSethiInstruction(imm22, rd);
H A DUnimpDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 return factory.newUnimpInstruction(instruction & DISP_22_MASK);
H A DV9CCBranchDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9DoneRetryDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9FlushwDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9PopcDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9RdprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9ReadDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9SavedRestoredDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9WriteDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9WrprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DPrivateMLet.java82 * factory argument will be used as the stream handler factory to
87 * @param factory The URLStreamHandlerFactory to use when creating URLs.
95 URLStreamHandlerFactory factory,
97 super(urls, parent, factory, delegateToCLR);
93 PrivateMLet(URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory, boolean delegateToCLR) argument
/openjdk7/jdk/test/java/nio/channels/etc/
H A DNetworkChannelTests.java47 static void bindTests(ChannelFactory factory) throws IOException { argument
51 ch = factory.open().bind(new InetSocketAddress(0));
60 ch = factory.open().bind(null);
66 ch = factory.open();
85 static void localAddressTests(ChannelFactory factory) throws IOException { argument
89 ch = factory.open();
145 ChannelFactory factory;
149 factory = new ChannelFactory() {
155 bindTests(factory);
156 localAddressTests(factory);
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DClientThread.java32 private SSLSocketFactory factory; field in class:ClientThread
43 factory = ctx.getSocketFactory();
60 factory = ctx.getSocketFactory();
78 s = (SSLSocket) factory.createSocket(server, port);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSurfaceManagerFactory.java32 * This factory creates platform specific VolatileSurfaceManager
48 * Returns the surface manager factory instance. This returns a factory
51 * @return the surface manager factory
62 * Sets the surface manager factory. This may only be called once, and it
63 * may not be set back to {@code null} when the factory is already
66 * @param factory the factory to set
68 public synchronized static void setInstance(SurfaceManagerFactory factory) { argument
70 if (factory
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DLazyReflectiveObjectGenerator.java28 import sun.reflect.generics.factory.GenericsFactory;
37 * The visitor needs to be initialized with a factory, which will be
39 * The factory should be cached.
43 private GenericsFactory factory; // cached factory field in class:LazyReflectiveObjectGenerator
46 factory = f;
49 // accessor for factory
51 return factory;
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DReadCertificates.java45 private static CertificateFactory factory; field in class:ReadCertificates
52 Collection<X509Certificate> certs = (Collection<X509Certificate>)factory.generateCertificates(in);
69 factory = CertificateFactory.getInstance("X.509");
73 factory.generateCertificate(null);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DHashtree2Node.java64 * @param factory Document providing createElement, etc. services
67 Node container, Document factory)
70 if ((null == container) || (null == factory) || (null == hash))
84 Element hashNode = factory.createElement(elemName);
109 Element node = factory.createElement("item");
111 node.appendChild(factory.createTextNode((String)item));
116 Element node = factory.createElement("item");
118 node.appendChild(factory.createTextNode("ERROR: Reading " + key + " threw: " + e.toString()));
132 appendHashToNode(h, n, hashNode, factory);
66 appendHashToNode(Hashtable hash, String name, Node container, Document factory) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DCopierManagerImpl.java69 public void registerObjectCopierFactory( ObjectCopierFactory factory, int id ) argument
71 map.set( id, factory ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/copyobject/
H A DCopierManager.java51 void registerObjectCopierFactory( ObjectCopierFactory factory, int id ) ; argument
/openjdk7/corba/src/share/classes/org/omg/CORBA_2_3/
H A DORB.java44 org.omg.CORBA.portable.ValueFactory factory)
43 register_value_factory(String id, org.omg.CORBA.portable.ValueFactory factory) argument

Completed in 121 milliseconds

123456789