Searched refs:factory (Results 51 - 75 of 371) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DV9AlternateSpaceLoadDecoder.java37 SPARCV9InstructionFactory factory) {
38 return factory.newLoadInstruction(name, op3, addr, rd, dataType);
34 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
H A DV9AlternateSpacePrefetchDecoder.java38 SPARCV9InstructionFactory factory) {
39 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
35 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
H A DV9AlternateSpaceStoreDecoder.java37 SPARCV9InstructionFactory factory) {
38 return factory.newStoreInstruction(name, op3, addr, rd, dataType);
34 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
H A DV9AlternateSpaceSwapDecoder.java37 SPARCV9InstructionFactory factory) {
38 return factory.newSwapInstruction(name, addr, rd);
34 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
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 DV9PrefetchDecoder.java38 SPARCRegister rd, SPARCInstructionFactory factory) {
39 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
36 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DV9SavedRestoredDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9SpecialLoadDecoder.java37 SPARCRegister rd, SPARCInstructionFactory factory) {
38 return factory.newSpecialLoadInstruction(rd == SPARCRegisters.G0? "ld" : "ldx",
35 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DV9SpecialStoreDecoder.java37 SPARCRegister rd, SPARCInstructionFactory factory) {
38 return factory.newSpecialStoreInstruction(rd == SPARCRegisters.G0? "st" : "stx",
35 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DWriteDecoder.java34 Instruction decodeReadWrite(int instruction, SPARCInstructionFactory factory, argument
40 return factory.newWriteInstruction(specialReg, rdNum,
H A DFloatDecoder.java57 SPARCInstructionFactory factory);
59 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
68 return factory.newIllegalInstruction(instruction);
75 return factory.newIllegalInstruction(instruction);
78 return decodeFloatInstruction(instruction, rs1, rs2, rd, factory);
55 decodeFloatInstruction(int instruction, SPARCRegister rs1, SPARCRegister rs2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DFormat3ADecoder.java41 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
45 return decodeFormat3AInstruction(instruction, rs1, operand2, rd, factory);
52 SPARCInstructionFactory factory);
48 decodeFormat3AInstruction(int instruction, SPARCRegister rs1, ImmediateOrRegister operand2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DLogicDecoder.java38 SPARCInstructionFactory factory) {
41 instr = factory.newMoveInstruction(name, op3, operand2, rd);
43 instr = factory.newLogicInstruction(name, op3, rtlOperation, rs1, operand2, rd);
34 decodeFormat3AInstruction(int instruction, SPARCRegister rs1, ImmediateOrRegister operand2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DV9AlternateSpaceDecoder.java46 SPARCV9InstructionFactory factory);
50 SPARCRegister rd, SPARCInstructionFactory factory) {
61 (SPARCV9InstructionFactory) factory);
43 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
48 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFPLoadDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
37 return factory.newFPLoadInstruction(name, op, size, prefixes);
H A DFPStoreDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
37 return factory.newFPStoreInstruction(name, op, size, prefixes);
H A DMoveDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
40 return factory.newMoveInstruction(name, (X86Register)op1, (ImmediateOrRegister)op2, size, prefixes);
43 return factory.newGeneralInstruction(name, op1, op2, size, prefixes);
46 return factory.newMoveStoreInstruction(name, (Address)op1, (X86Register)op2, 0, size, prefixes);
49 return factory.newMoveLoadInstruction(name, (X86Register)op1, (Address)op2, 0, size, prefixes);
H A DSSEMoveDecoder.java35 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 return factory.newMoveInstruction(name, (X86Register)op1, (ImmediateOrRegister)op2, size, 0);
44 return factory.newGeneralInstruction(name, op1, op2, size, 0);
47 return factory.newMoveStoreInstruction(name, (Address)op1, (X86Register)op2, 0, size, 0);
50 return factory.newMoveLoadInstruction(name, (X86Register)op1, (Address)op2, 0, size, 0);
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaKlass.java40 public JSJavaKlass(Klass klass, JSJavaFactory factory) { argument
41 this.factory = factory;
50 return (JSJavaClass) factory.newJSJavaObject(getKlass().getJavaMirror());
57 JSJavaKlass jk = factory.newJSJavaKlass(getKlass().getSuper());
102 protected final JSJavaFactory factory; field in class:JSJavaKlass
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/oa/
H A DOAInvocationInfo.java59 private ObjectCopierFactory factory ; field in class:OAInvocationInfo
75 this.factory = info.factory ;
96 public ObjectCopierFactory getCopierFactory() { return factory; }
100 public void setCopierFactory( ObjectCopierFactory factory ) { this.factory = factory ; }
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java50 * A factory for creating {@link KeyInfo} objects from scratch or for
60 * KeyInfoFactory factory = KeyInfoFactory.getInstance("DOM");
63 * <p>The objects that this factory produces will be based
79 * <p>Also, the <code>XMLStructure</code>s that are created by this factory
155 KeyInfoFactory factory = (KeyInfoFactory) instance.impl;
156 factory.mechanismType = mechanismType;
157 factory.provider = instance.provider;
158 return factory;
197 KeyInfoFactory factory = (KeyInfoFactory) instance.impl;
198 factory
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DControlFactory.java38 * This abstract class represents a factory for creating LDAPv3 controls.
55 * Creates a new instance of a control factory.
61 * Creates a control using this control factory.
63 * The factory is used by the service provider to return controls
69 * BER encoded data. The factory is used to create a specialized
74 * For example, a factory might use the BER encoded data in
77 * If this factory cannot create a control using the argument supplied,
79 * A factory should only throw an exception if it is sure that
80 * it is the only intended factory and that no other control factories
91 * from being used to create a control. A factory shoul
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DPipelineAssemblerFactory.java67 * null if this factory doesn't recognize the given binding ID.
82 for (PipelineAssemblerFactory factory : ServiceFinder.find(PipelineAssemblerFactory.class,classLoader)) {
83 PipelineAssembler assembler = factory.doCreate(bindingId);
85 logger.fine(factory.getClass()+" successfully created "+assembler);

Completed in 92 milliseconds

1234567891011>>