Searched refs:instance (Results 51 - 75 of 375) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DMethodEntryRequest.java99 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMethodExitRequest.java102 * which the currently executing instance ("this") is the object
109 * @param instance the object which must be the current instance
118 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorContendedEnterRequest.java100 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorContendedEnteredRequest.java100 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorWaitRequest.java99 * which the currently executing instance ("this") is the object
105 * @param instance the object which must be the current instance
114 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorWaitedRequest.java99 * which the currently executing instance ("this") is the object
105 * @param instance the object which must be the current instance
114 void addInstanceFilter(ObjectReference instance); argument
H A DStepRequest.java118 * which the currently executing instance ("this") is the object
125 * @param instance the object which must be the current instance
134 void addInstanceFilter(ObjectReference instance); argument
H A DWatchpointRequest.java103 * which the currently executing instance ("this") is the object
110 * @param instance the object which must be the current instance
119 void addInstanceFilter(ObjectReference instance); argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftEnvelopeGenerator.java88 public double[] get(int instance, String name) { argument
89 if (instance >= used_count)
90 used_count = instance + 1;
92 return out[instance];
94 return on[instance];
96 return active[instance];
98 return delay[instance];
100 return attack[instance];
102 return hold[instance];
104 return decay[instance];
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFStreamMetadataFormat.java35 private static IIOMetadataFormat instance = null; field in class:GIFStreamMetadataFormat
101 if (instance == null) {
102 instance = new GIFStreamMetadataFormat();
104 return instance;
/openjdk7/jdk/src/share/instrument/
H A DUtilities.h61 jobject instance,
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/util/
H A DBark.java59 return Bark.instance(c);
64 /** Get the Bark instance for this context. */
65 public static Bark instance(Context context) { method in class:Bark
66 Bark instance = context.get(barkKey);
67 if (instance == null)
68 instance = new Bark(context);
69 return instance;
90 JavacMessages aptMessages = JavacMessages.instance(context);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/jar/
H A DJarFileFactory.java51 private static final JarFileFactory instance = new JarFileFactory(); field in class:JarFileFactory
56 return instance;
61 synchronized (instance) {
80 synchronized (instance) {
85 synchronized (instance) {
113 synchronized (instance) {
121 assert Thread.holdsLock(instance);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DDeferredLintHandler.java47 public static DeferredLintHandler instance(Context context) { method in class:DeferredLintHandler
48 DeferredLintHandler instance = context.get(deferredLintHandlerKey);
49 if (instance == null)
50 instance = new DeferredLintHandler(context);
51 return instance;
H A DSource.java73 public static Source instance(Context context) { method in class:Source
74 Source instance = context.get(sourceKey);
75 if (instance == null) {
76 Options options = Options.instance(context);
78 if (sourceString != null) instance = lookup(sourceString);
79 if (instance == null) instance = DEFAULT;
80 context.put(sourceKey, instance);
82 return instance;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DFSInfo.java27 /** Get the FSInfo instance for this context.
29 * @return the Paths instance for this context
31 public static FSInfo instance(Context context) { method in class:FSInfo
32 FSInfo instance = context.get(FSInfo.class);
33 if (instance == null)
34 instance = new FSInfo();
35 return instance;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAbstractHeapGraphWriter.java75 Instance instance = (Instance) oop;
76 Klass klass = instance.getKlass();
79 writeString(instance);
81 writeClass(instance);
83 writeThread(instance);
89 writeThread(instance);
94 writeInstance(instance);
189 protected void writeInstance(Instance instance) throws IOException { argument
190 writeObject(instance);
193 protected void writeString(Instance instance) throw argument
197 writeClass(Instance instance) argument
201 writeThread(Instance instance) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFactoryImpl.java149 private JSJavaObject newJavaInstance(Instance instance) { argument
151 Symbol className = instance.getKlass().getName();
157 res = new JSJavaString(instance, this);
159 res = new JSJavaThread(instance, this);
161 Klass reflectedType = java_lang_Class.asKlass(instance);
166 res = new JSJavaClass(instance, jk, this);
174 Klass kls = instance.getKlass().getSuper();
179 res = new JSJavaThread(instance, this);
186 res = new JSJavaInstance(instance, this);
/openjdk7/jdk/src/share/classes/java/security/
H A DSecureRandom.java51 * <p>A caller obtains a SecureRandom instance via the
161 * The SecureRandom instance is seeded with the specified seed bytes.
276 Instance instance = GetInstance.getInstance("SecureRandom",
278 return new SecureRandom((SecureRandomSpi)instance.impl,
279 instance.provider, algorithm);
327 Instance instance = GetInstance.getInstance("SecureRandom",
329 return new SecureRandom((SecureRandomSpi)instance.impl,
330 instance.provider, algorithm);
371 Instance instance = GetInstance.getInstance("SecureRandom",
373 return new SecureRandom((SecureRandomSpi)instance
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DExemptionMechanism.java136 Instance instance = JceSecurity.getInstance("ExemptionMechanism",
138 return new ExemptionMechanism((ExemptionMechanismSpi)instance.impl,
139 instance.provider, algorithm);
184 Instance instance = JceSecurity.getInstance("ExemptionMechanism",
186 return new ExemptionMechanism((ExemptionMechanismSpi)instance.impl,
187 instance.provider, algorithm);
224 Instance instance = JceSecurity.getInstance("ExemptionMechanism",
226 return new ExemptionMechanism((ExemptionMechanismSpi)instance.impl,
227 instance.provider, algorithm);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DTarget.java74 public static Target instance(Context context) { method in class:Target
75 Target instance = context.get(targetKey);
76 if (instance == null) {
77 Options options = Options.instance(context);
79 if (targetString != null) instance = lookup(targetString);
80 if (instance == null) instance = DEFAULT;
81 context.put(targetKey, instance);
83 return instance;
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DSurfaceType.java228 new SurfaceType(null, DESC_ANY, PixelConverter.instance);
252 AnyDcm.deriveSubType(DESC_INT_RGB, PixelConverter.Xrgb.instance);
255 AnyDcm.deriveSubType(DESC_INT_ARGB, PixelConverter.Argb.instance);
259 PixelConverter.ArgbPre.instance);
262 AnyDcm.deriveSubType(DESC_INT_BGR, PixelConverter.Xbgr.instance);
265 Any3Byte.deriveSubType(DESC_3BYTE_BGR, PixelConverter.Xrgb.instance);
268 Any4Byte.deriveSubType(DESC_4BYTE_ABGR, PixelConverter.Rgba.instance);
272 PixelConverter.RgbaPre.instance);
276 PixelConverter.Ushort565Rgb.instance);
280 PixelConverter.Ushort555Rgb.instance);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DMessagerImpl.java48 public static MessagerImpl instance(Context context) { method in class:MessagerImpl
49 MessagerImpl instance = context.get(messagerKey);
50 if (instance == null) {
51 instance = new MessagerImpl(context);
53 return instance;
58 bark = Bark.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DDeclarationsImpl.java54 public static Declarations instance(Context context) { method in class:DeclarationsImpl
55 Declarations instance = context.get(declarationsKey);
56 if (instance == null) {
57 instance = new DeclarationsImpl(context);
59 return instance;
64 env = AptEnv.instance(context);
/openjdk7/jdk/src/share/back/
H A Dinvoker.c106 jobject instance = NULL; local
133 if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) {
134 saveGlobalRef(env, request->instance, &instance);
135 if (instance == NULL) {
175 request->instance = instance;
198 if ( instance != NULL ) {
199 tossGlobalRef(env, &instance);
218 jobject instance,
215 fillInvokeRequest(JNIEnv *env, InvokeRequest *request, jbyte invokeType, jbyte options, jint id, jthread thread, jclass clazz, jmethodID method, jobject instance, jvalue *arguments, jint argumentCount) argument
289 invoker_requestInvoke(jbyte invokeType, jbyte options, jint id, jthread thread, jclass clazz, jmethodID method, jobject instance, jvalue *arguments, jint argumentCount) argument
[all...]

Completed in 723 milliseconds

1234567891011>>