Searched refs:factory (Results 101 - 125 of 371) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DNamingManager.java76 // --------- object factory stuff
96 * @param builder The factory builder to install. If null, no builder
102 * @exception IllegalStateException If a factory has already been installed.
121 * Used for accessing object factory builder.
130 * using the reference's factory class name and factory codebase
131 * to load in the factory's class.
133 * @param factoryName The non-null class name of the factory.
134 * @return The object factory for the object identified by ref; null
135 * if unable to load the factory
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticCommand.cpp76 DCmdFactory* factory = DCmdFactory::factory(cmd_list->at(i), local
78 if (!factory->is_hidden()) {
79 output()->print_cr("%s%s", factory->name(),
80 factory->is_enabled() ? "" : " [disabled]");
81 output()->print_cr("\t%s", factory->description());
84 factory = factory->next();
88 DCmdFactory* factory = DCmdFactory::factory(_cm local
108 DCmdFactory* factory = DCmdFactory::factory(cmd_list->at(i), local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DTubelineAssemblerFactory.java58 * @return null if this factory doesn't recognize the given binding ID.
93 for (TubelineAssemblerFactory factory : ServiceFinder.find(TubelineAssemblerFactory.class, classLoader)) {
94 TubelineAssembler assembler = factory.doCreate(bindingId);
96 TubelineAssemblerFactory.logger.fine(factory.getClass() + " successfully created " + assembler);
102 for (PipelineAssemblerFactory factory : ServiceFinder.find(PipelineAssemblerFactory.class,classLoader)) {
103 PipelineAssembler assembler = factory.doCreate(bindingId);
105 logger.fine(factory.getClass()+" successfully created "+assembler);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DJAXPParser.java54 private final SAXParserFactory factory; field in class:JAXPParser
56 public JAXPParser( SAXParserFactory factory ) {
57 factory.setNamespaceAware(true); // just in case
58 this.factory = factory;
71 XMLReader reader = factory.newSAXParser().getXMLReader();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAManagerImpl.java60 private final POAFactory factory ; // factory which contains global state field in class:POAManagerImpl
96 return factory ;
142 POAManagerImpl( POAFactory factory, PIHandler pihandler ) argument
144 this.factory = factory ;
145 factory.addPoaManager(this);
147 myId = factory.newPOAManagerId() ;
149 debug = factory.getORB().poaDebugFlag ;
161 POASystemException wrapper = factory
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DBranchDecoder.java59 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
67 return factory.newBranchInstruction(conditionName, addr, isAnnuled, conditionCode);
H A DFPArithmeticDecoder.java42 SPARCInstructionFactory factory) {
45 return factory.newFPArithmeticInstruction(name, opf, rtlOperation,
39 decodeFloatInstruction(int instruction, SPARCRegister rs1, SPARCRegister rs2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DShiftDecoder.java53 SPARCInstructionFactory factory) {
57 return factory.newShiftInstruction(name, op3, rtlOperation, rs1, operand2, rd);
52 decode(int instruction, SPARCInstructionFactory factory) argument
H A DV9FMOVrDecoder.java40 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
41 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9MOVrDecoder.java38 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
39 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9ReadDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9ShiftDecoder.java46 SPARCInstructionFactory factory) {
60 return factory.newShiftInstruction(xBit? name + "x" : name, op3, rtlOperation, rs1, operand2, rd);
45 decode(int instruction, SPARCInstructionFactory factory) argument
H A DV9WriteDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DBranchDecoder.java38 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
44 return factory.newBranchInstruction(name, (X86PCRelativeAddress)addr, size, prefixes);
H A DFPArithmeticDecoder.java41 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
45 return factory.newFPArithmeticInstruction(name, rtlOperation, op1, op2, size, prefixes);
H A DLogicalDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
44 return factory.newLogicInstruction(name, rtlOperation, op1, op2, size, prefixes);
H A DRotateDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 return factory.newRotateInstruction(name, op1, (ImmediateOrRegister)op2, size, prefixes);
H A DSSEArithmeticDecoder.java42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
46 return factory.newArithmeticInstruction(name, rtlOperation, op1, op2, size, prefixes);
H A DSSELogicalDecoder.java39 boolean addrSize, X86InstructionFactory factory) {
43 return factory.newLogicInstruction(name, rtlOperation, op1, op2, size, prefixes);
38 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument
H A DSSEShiftDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 return factory.newShiftInstruction(name, rtlOperation, op1, (ImmediateOrRegister)op2, size, 0);
H A DShiftDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
44 return factory.newShiftInstruction(name, rtlOperation, op1, (ImmediateOrRegister)op2, size, prefixes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaObjArrayKlass.java50 buf.append(factory.newJSJavaKlass(botKls).getName());
59 return factory.newJSJavaObject(obj);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLContextSpi.java82 * Applications using this factory method are providing no hints
88 * information, in which case this factory method should not be used.
104 * Applications using this factory method are providing hints
143 SSLSocketFactory factory = engineGetSocketFactory();
144 return (SSLSocket)factory.createSocket();
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlReader.java95 SAXParserFactory factory = SAXParserFactory.newInstance();
96 factory.setNamespaceAware(true);
97 factory.setValidating(true);
98 SAXParser parser = factory.newSAXParser() ;
168 SAXParserFactory factory = SAXParserFactory.newInstance();
169 factory.setNamespaceAware(true);
170 factory.setValidating(true);
172 SAXParser parser = factory.newSAXParser() ;
/openjdk7/hotspot/test/compiler/6837094/
H A DTest.java58 Factory<I> factory, Set<Interface> s) {
59 for (I i : factory.getArray()) {
57 collectIs( Factory<I> factory, Set<Interface> s) argument

Completed in 97 milliseconds

1234567891011>>