Searched defs:instance (Results 126 - 150 of 197) sorted by relevance

12345678

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DUtil.java134 private static Util instance = null; field in class:Util
141 assert instance == null : "Instance already defined";
142 instance = util;
146 return instance;
150 return instance != null;
571 * Returns a singleton instance of a class that implements the
590 * Returns a class instance for the specified class.
618 * the stub and they both share the same ORB instance. The <tt>_is_local()</tt>
/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...]
H A DHeapGXLWriter.java165 protected void writeClass(Instance instance) throws IOException { argument
166 writeObjectHeader(instance);
167 Klass reflectedType = java_lang_Class.asKlass(instance);
192 writeEdge(instance, superMirror, "extends");
200 writeEdge(instance, k.getJavaMirror(), "implements");
205 writeEdge(instance, loader, "loaded-by");
209 writeEdge(instance, signers, "signed-by");
213 writeEdge(instance, protectionDomain, "protection-domain");
220 writeEdge(instance, ref, identifierToXMLName(name));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaInstanceKlass.java144 public Object getInstanceFieldValue(String name, Instance instance) throws NoSuchFieldException { argument
147 return getFieldValue(fld, name, instance);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanIntrospector.java50 * Introspector for MXBeans. There is exactly one instance of this class.
55 private static final MXBeanIntrospector instance = new MXBeanIntrospector(); field in class:MXBeanIntrospector
58 return instance;
H A DStandardMBeanIntrospector.java47 private static final StandardMBeanIntrospector instance = field in class:StandardMBeanIntrospector
51 return instance;
/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/macosx/classes/com/apple/laf/
H A DAquaKeyBindings.java40 static final RecyclableSingleton<AquaKeyBindings> instance = new RecyclableSingletonFromDefaultConstructor<AquaKeyBindings>(AquaKeyBindings.class); field in class:AquaKeyBindings
41 static AquaKeyBindings instance() { method in class:AquaKeyBindings
42 return instance.get();
H A DAquaTextFieldSearch.java93 protected static final RecyclableSingleton<SearchFieldBorder> instance = new RecyclableSingletonFromDefaultConstructor<SearchFieldBorder>(SearchFieldBorder.class); field in class:AquaTextFieldSearch
95 return instance.get();
/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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeBuiltinLeafInfoImpl.java130 public QName getTypeName(T instance) { argument
881 * Cached instance of {@link DatatypeFactory} to create
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java153 public static FilerImpl instance(Context context) { method in class:FilerImpl
154 FilerImpl instance = context.get(filerKey);
155 if (instance == null) {
156 instance = new FilerImpl(context);
158 return instance;
177 opts = Options.instance(context);
178 declMaker = DeclarationMaker.instance(context);
179 bark = Bark.instance(context);
180 comp = com.sun.tools.apt.main.AptJavaCompiler.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DConfigurationImpl.java56 private static ConfigurationImpl instance = new ConfigurationImpl(); field in class:ConfigurationImpl
205 instance = new ConfigurationImpl();
209 return instance;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java96 public static JavacTrees instance(JavaCompiler.CompilationTask task) { method in class:JavacTrees
99 return instance(((JavacTaskImpl)task).getContext());
102 public static JavacTrees instance(ProcessingEnvironment env) { method in class:JavacTrees
105 return instance(((JavacProcessingEnvironment)env).getContext());
108 public static JavacTrees instance(Context context) { method in class:JavacTrees
109 JavacTrees instance = context.get(JavacTrees.class);
110 if (instance == null)
111 instance = new JavacTrees(context);
112 return instance;
125 attr = Attr.instance(contex
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java52 /** Get the root Lint instance. */
53 public static Lint instance(Context context) { method in class:Lint
54 Lint instance = context.get(lintKey);
55 if (instance == null)
56 instance = new Lint(context);
57 return instance;
103 Options options = Options.instance(context);
298 syms = Symtab.instance(context);
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/comp/
H A DEnter.java111 public static Enter instance(Context context) { method in class:Enter
112 Enter instance = context.get(enterKey);
113 if (instance == null)
114 instance = new Enter(context);
115 return instance;
121 log = Log.instance(context);
122 reader = ClassReader.instance(context);
123 make = TreeMaker.instance(context);
124 syms = Symtab.instance(context);
125 chk = Check.instance(contex
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java68 /** Get the Paths instance for this context.
70 * @return the Paths instance for this context
72 public static Paths instance(Context context) { method in class:Paths
73 Paths instance = context.get(pathsKey);
74 if (instance == null)
75 instance = new Paths(context);
76 return instance;
98 log = Log.instance(context);
99 options = Options.instance(context);
100 lint = Lint.instance(contex
[all...]
/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/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java50 public static JavacTypes instance(Context context) { method in class:JavacTypes
51 JavacTypes instance = context.get(JavacTypes.class);
52 if (instance == null)
53 instance = new JavacTypes(context);
54 return instance;
70 syms = Symtab.instance(context);
71 types = Types.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DConstantWriter.java43 public static ConstantWriter instance(Context context) { method in class:ConstantWriter
44 ConstantWriter instance = context.get(ConstantWriter.class);
45 if (instance == null)
46 instance = new ConstantWriter(context);
47 return instance;
53 classWriter = ClassWriter.instance(context);
54 options = Options.instance(context);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DPrincipalName.java63 * Service and other unique instance (krbtgt)
68 * Service with host name as instance (telnet, rcommands)
269 * @return an instance of <code>PrincipalName</code>.
617 * @param instance the instance component of the name
621 protected PrincipalName(String primary, String instance, String realm, argument
631 nParts[1] = instance;
639 * Returns the instance component of a name.
644 * @returns instance component of a multi-component name.
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DGraphicsTests.java184 Identity.instance,
185 FTranslate.instance,
186 Scale2x2.instance,
187 Rotate15.instance,
188 ShearX.instance,
189 ShearY.instance,
389 public static final Identity instance = new Identity(); field in class:GraphicsTests.Identity
406 public static final FTranslate instance = new FTranslate(); field in class:GraphicsTests.FTranslate
429 public static final Scale2x2 instance = new Scale2x2(); field in class:GraphicsTests.Scale2x2
453 public static final Rotate15 instance field in class:GraphicsTests.Rotate15
486 public static final ShearX instance = new ShearX(); field in class:GraphicsTests.ShearX
510 public static final ShearY instance = new ShearY(); field in class:GraphicsTests.ShearY
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DBlit.java137 return AnyBlit.instance;
142 public static AnyBlit instance = new AnyBlit(); field in class:Blit.AnyBlit
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java320 return LookupService.instance;
324 static final UserPrincipalLookupService instance = field in class:UnixFileSystem.LookupService

Completed in 81 milliseconds

12345678