Searched refs:instance (Results 26 - 50 of 375) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaString.java30 * Wraps a java.lang.String instance of the target VM.
33 public JSJavaString(Instance instance, JSJavaFactory fac) { argument
34 super(instance, fac);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DEmptyIterator.java35 public static final EmptyIterator instance = new EmptyIterator(); field in class:EmptyIterator
36 /** Creates a new instance of EmptyIterator */
40 return instance;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSAAJMetaFactory.java51 * Creates a new instance of a concrete <code>SAAJMetaFactory</code> object.
73 SAAJMetaFactory instance =
77 return instance;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLowFrequencyOscillator/
H A DTestProcessControlLogic.java39 private static void testLFO(boolean shared, int instance, float freq, float delay, argument
44 double[] lfo_freq = lfo.get(instance, "freq");
45 double[] lfo_delay = lfo.get(instance, "delay");
46 double[] lfo_delay2 = lfo.get(instance, "delay2");
47 double[] lfo_output = lfo.get(instance, null);
91 for (int instance = 0; instance < 3; instance++)
95 testLFO(true, instance,
99 testLFO(false, instance,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLowFrequencyOscillator.java117 public double[] get(int instance, String name) { argument
118 if (instance >= used_count)
119 used_count = instance + 1;
121 return out[instance];
123 return delay[instance];
125 return delay2[instance];
127 return freq[instance];
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppMenuBarHandler.java45 static final _AppMenuBarHandler instance = new _AppMenuBarHandler(); field in class:_AppMenuBarHandler
47 return instance;
52 synchronized (instance) {
53 instance.aboutMenuItemVisible = aboutMenuItemVisible;
54 instance.aboutMenuItemEnabled = aboutMenuItemEnabled;
55 instance.prefsMenuItemVisible = prefsMenuItemVisible;
56 instance.prefsMenuItemEnabled = prefsMenuItemEnabled;
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLContext.java156 GetInstance.Instance instance = GetInstance.getInstance
158 return new SSLContext((SSLContextSpi)instance.impl, instance.provider,
199 GetInstance.Instance instance = GetInstance.getInstance
201 return new SSLContext((SSLContextSpi)instance.impl, instance.provider,
221 * @param provider an instance of the provider.
236 GetInstance.Instance instance = GetInstance.getInstance
238 return new SSLContext((SSLContextSpi)instance.impl, instance
[all...]
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DTerminalFactory.java65 * {@linkplain #getDefault} returns an instance of a <code>None</code>
203 * Returns the default TerminalFactory instance. See
243 Instance instance = GetInstance.getInstance("TerminalFactory",
245 return new TerminalFactory((TerminalFactorySpi)instance.impl,
246 instance.provider, type);
282 Instance instance = GetInstance.getInstance("TerminalFactory",
284 return new TerminalFactory((TerminalFactorySpi)instance.impl,
285 instance.provider, type);
314 Instance instance = GetInstance.getInstance("TerminalFactory",
316 return new TerminalFactory((TerminalFactorySpi)instance
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStore.java82 * CRL while simultaneously searching for further certificates, for instance.
131 * <code>Certificate</code>s that match the selector. For instance,
161 * <code>CRL</code>s that match the selector. For instance,
228 Instance instance = GetInstance.getInstance("CertStore",
230 return new CertStore((CertStoreSpi)instance.impl,
231 instance.provider, type, params);
298 Instance instance = GetInstance.getInstance("CertStore",
300 return new CertStore((CertStoreSpi)instance.impl,
301 instance.provider, type, params);
352 Instance instance
[all...]
H A DCertificateFactory.java55 * instance of <code>java.security.cert.X509Certificate</code>, and CRLs
56 * that are an instance of <code>java.security.cert.X509CRL</code>.
183 Instance instance = GetInstance.getInstance("CertificateFactory",
185 return new CertificateFactory((CertificateFactorySpi)instance.impl,
186 instance.provider, type);
230 Instance instance = GetInstance.getInstance("CertificateFactory",
232 return new CertificateFactory((CertificateFactorySpi)instance.impl,
233 instance.provider, type);
271 Instance instance = GetInstance.getInstance("CertificateFactory",
273 return new CertificateFactory((CertificateFactorySpi)instance
[all...]
H A DCertPathHelperImpl.java53 if (CertPathHelper.instance == null) {
54 CertPathHelper.instance = new CertPathHelperImpl();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DProcessMonitorThread.java42 private static ProcessMonitorThread instance = null; field in class:ProcessMonitorThread
96 instance = new ProcessMonitorThread( serverTable,
98 instance.setDaemon( true );
99 instance.start();
103 instance.interrupt();
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontManagerFactory.java39 * Factory class used to retrieve a valid FontManager instance for the current
49 /** Our singleton instance. */
50 private static FontManager instance = null; field in class:FontManagerFactory
66 * @return a valid FontManager instance for the current platform
70 if (instance != null) {
71 return instance;
83 instance = (FontManager) fmClass.newInstance();
103 return instance;
/openjdk7/jdk/test/com/sun/jdi/
H A DNativeInstanceFilter.java38 * This test tests instance filters for events generated from a native method
64 ObjectReference instance = null;
73 if (instance == null && name.equals("latch")) {
74 // Grab the instance (return value) and set up as filter
75 System.out.println("Setting up instance filter");
76 instance = (ObjectReference)event.returnValue();
79 request.addInstanceFilter(instance);
81 } else if (instance != null && name.equals("intern")) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocClassReader.java41 ClassReader instance = context.get(classReaderKey);
42 if (instance == null)
43 instance = new JavadocClassReader(context);
44 return (JavadocClassReader)instance;
64 docenv = DocEnv.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DOptions.java43 public static Options instance(Context context) { method in class:Options
44 Options instance = context.get(Options.class);
45 if (instance == null)
46 instance = new Options(context);
47 return instance;
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/config/
H A DXmlConfigUtilsTest.java86 XmlConfigUtils instance = new XmlConfigUtils(file.getPath());
88 instance.writeToFile(bean);
106 XmlConfigUtils instance = new XmlConfigUtils(file.getPath());
108 instance.writeToFile(bean);
111 ScanManagerConfig result = instance.readFromFile();
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java54 * <p>Each instance of <code>KeyInfoFactory</code> supports a specific
86 * instance to create the <code>XMLStructure</code>s of a particular
98 * need to access a single <code>KeyInfoFactory</code> instance concurrently
101 * instance need not synchronize.
148 Instance instance;
150 instance = GetInstance.getInstance
155 KeyInfoFactory factory = (KeyInfoFactory) instance.impl;
157 factory.provider = instance.provider;
190 Instance instance;
192 instance
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DExpression.java125 * If the value property of this instance is not already set,
172 /*pp*/ String instanceName(Object instance) { argument
173 return instance == unbound ? "<unbound>" : super.instanceName(instance);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java39 return instance;
44 return instance;
62 private final static DescriptorCache instance = new DescriptorCache(); field in class:DescriptorCache
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCertPathHelper.java51 protected static CertPathHelper instance; field in class:CertPathHelper
64 instance.implSetPathToNames(sel, names);
68 instance.implSetDateAndTime(sel, date, skew);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DKeywords.java47 public static Keywords instance(Context context) { method in class:Keywords
48 Keywords instance = context.get(keywordsKey);
49 if (instance == null)
50 instance = new Keywords(context);
51 return instance;
58 names = Names.instance(context);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DServiceName.java51 public ServiceName (String service, String instance, String realm) argument
54 super(service, instance, realm, PrincipalName.KRB_NT_SRV_INST);
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyPairGenerator.java161 private static KeyPairGenerator getInstance(Instance instance, argument
164 if (instance.impl instanceof KeyPairGenerator) {
165 kpg = (KeyPairGenerator)instance.impl;
167 KeyPairGeneratorSpi spi = (KeyPairGeneratorSpi)instance.impl;
170 kpg.provider = instance.provider;
215 Instance instance =
217 if (instance.impl instanceof KeyPairGenerator) {
218 return getInstance(instance, algorithm);
220 return new Delegate(instance, t, algorithm);
268 Instance instance
554 Delegate(Instance instance, Iterator<Service> serviceIterator, String algorithm) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DExceptionRequest.java138 * which the currently executing instance ("this") is the object
145 * @param instance the object which must be the current instance
154 void addInstanceFilter(ObjectReference instance); argument

Completed in 210 milliseconds

1234567891011>>