Searched refs:factory (Results 26 - 50 of 371) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/dt/builtin/
H A DCompatibilityDatatypeLibrary.java56 private final DatatypeLibraryFactory factory; field in class:CompatibilityDatatypeLibrary
59 CompatibilityDatatypeLibrary(DatatypeLibraryFactory factory) { argument
60 this.factory = factory;
70 factory.createDatatypeLibrary(
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/
H A DMain.java75 /** Programmatic interface. If <tt>factory</tt> or <tt>args</tt>
77 * The &quot;<tt>-factory</tt>&quot; and &quot;<tt>-factorypath</tt>&quot;
81 * @param factory The annotation processor factory to use
84 public static int process(AnnotationProcessorFactory factory, String... args) { argument
85 return process(factory, new PrintWriter(System.err, true), args);
90 * The &quot;<tt>-factory</tt>&quot; and &quot;<tt>-factorypath</tt>&quot;
93 * @param factory The annotation processor factory to use
97 public static int process(AnnotationProcessorFactory factory, PrintWrite argument
106 processing(AnnotationProcessorFactory factory, PrintWriter out, String... args) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DReadDecoder.java34 Instruction decodeReadWrite(int instruction, SPARCInstructionFactory factory, argument
41 instr = factory.newStbarInstruction();
43 instr = factory.newReadInstruction(specialReg, rs1Num,
H A DReadWriteDecoder.java33 SPARCInstructionFactory factory,
40 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
44 return decodeReadWrite(instruction, factory, rs1Num, rdNum);
32 decodeReadWrite(int instruction, SPARCInstructionFactory factory, int rs1Num, int rdNum) argument
H A DSethiDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
36 instr = factory.newNoopInstruction();
38 instr = factory.newSethiInstruction(imm22, rd);
H A DSpecialLoadStoreDecoder.java39 SPARCRegister rd, SPARCInstructionFactory factory) {
41 return decodeSpecialLoadStoreInstruction(cregNum, addr, factory);
46 SPARCInstructionFactory factory);
37 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
44 decodeSpecialLoadStoreInstruction(int cregNum, SPARCRegisterIndirectAddress addr, SPARCInstructionFactory factory) argument
H A DAlternateSpaceLdstubDecoder.java37 SPARCInstructionFactory factory) {
39 return factory.newLdstubInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceLoadDecoder.java37 SPARCInstructionFactory factory) {
39 return factory.newLoadInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceStoreDecoder.java37 SPARCInstructionFactory factory) {
39 return factory.newStoreInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceSwapDecoder.java37 SPARCInstructionFactory factory) {
39 return factory.newSwapInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DArithmeticDecoder.java38 SPARCInstructionFactory factory) {
39 return factory.newArithmeticInstruction(name, op3, rtlOperation, rs1, operand2, rd);
34 decodeFormat3AInstruction(int instruction, SPARCRegister rs1, ImmediateOrRegister operand2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DCoprocessorDecoder.java35 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
40 return factory.newCoprocessorInstruction(instruction, op3,
H A DLdstubDecoder.java37 SPARCInstructionFactory factory) {
38 return factory.newLdstubInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DLoadDecoder.java37 SPARCInstructionFactory factory) {
38 return factory.newLoadInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DStoreDecoder.java37 SPARCInstructionFactory factory) {
38 return factory.newStoreInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DSwapDecoder.java37 SPARCInstructionFactory factory) {
38 return factory.newSwapInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DV9AlternateSpaceLdstubDecoder.java37 SPARCV9InstructionFactory factory) {
38 return factory.newLdstubInstruction(name, addr, rd);
34 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMessageFactory.java33 * A factory for creating <code>SOAPMessage</code> objects.
102 MessageFactory factory = (MessageFactory) FactoryFinder.find(
107 if (factory != null) {
108 return factory;
114 "Unable to create message factory for SOAP: "
122 * of the specified implementation. May be a dynamic message factory,
123 * a SOAP 1.1 message factory, or a SOAP 1.2 message factory. A dynamic
124 * message factory creates messages based on the MIME headers specified
133 * specified message factory implementatio
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventAllocatorBase.java56 XMLEventFactory factory; field in class:StAXEventAllocatorBase
62 "com.sun.xml.internal.fastinfoset.stax.factory.StAXEventFactory");
64 factory = XMLEventFactory.newInstance();
109 factory.setLocation(reader.getLocation());
114 StartElementEvent startElement = (StartElementEvent)factory.createStartElement(reader.getPrefix(),
126 EndElementEvent endElement = (EndElementEvent)factory.createEndElement(
134 event = factory.createProcessingInstruction(reader.getPITarget(),reader.getPIData());
140 event = factory.createSpace(reader.getText());
142 event = factory.createCharacters(reader.getText());
148 event = factory
[all...]
/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/com/sun/corba/se/spi/ior/
H A DIdentifiableFactoryFinder.java32 * must be implemented to handle the case of no registered factory
38 /** If there is a registered factory for id, use it to
46 /** Register a factory for the given id.
48 void registerFactory( IdentifiableFactory factory ) ;
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMISocketFactory.java35 * request that the RMI runtime use its socket factory instance
38 * The default socket factory implementation used goes through a
54 /** Client/server socket factory to be used by RMI runtime */
55 private static RMISocketFactory factory = null; field in class:RMISocketFactory
56 /** default socket factory used by this RMI implementation */
93 * Set the global socket factory from which RMI gets sockets (if the
95 * socket factory). The RMI socket factory can only be set once. Note: The
97 * setting a socket factory; if disallowed, a SecurityException will be
99 * @param fac the socket factory
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DControlFactoryTest.java26 * @summary Test the ResourceBundle.Control factory methods.
67 private static void testControlFactory(Factory factory, Locale loc) { argument
68 testGetControl(factory, loc, FORMAT_DEFAULT, "java.class", "java.properties");
69 testGetControl(factory, loc, FORMAT_CLASS, "java.class");
70 testGetControl(factory, loc, FORMAT_PROPERTIES, "java.properties");
84 ResourceBundle.Control control = factory.getControl(fmt);
92 ResourceBundle.Control control = factory.getControl(null);
93 error("%s: doesn't throw NPE.%n", factory.name());
98 private static void testGetControl(Factory factory, argument
102 final ResourceBundle.Control CONTROL = factory
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetProvider.java35 * A factory API that enables applications to obtain a
110 * it can use the factory to obtain RowSet instances.</p>
114 * @throws SQLException if the default factory class cannot be loaded,
123 RowSetFactory factory = null;
130 factory = (RowSetFactory) getFactoryClass(factoryClassName, null, true).newInstance();
142 if (factory == null) {
146 factory = loadViaServiceLoader();
147 factory =
148 factory == null ? newFactory(ROWSET_FACTORY_IMPL, null) : factory;
[all...]
/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

Completed in 583 milliseconds

1234567891011>>