Searched refs:instance (Results 276 - 300 of 375) sorted by relevance

<<1112131415

/openjdk7/jaxp/src/javax/xml/parsers/
H A DFactoryFinder.java132 * Create an instance of a class. Delegates to method
151 * Create an instance of a class. Delegates to method
179 Object instance = providerClass.newInstance();
181 dPrint("created new instance of " + providerClass +
184 return instance;
271 * @return instance of provider class if found or null
344 * Construct a new instance with the specified detail string and
/openjdk7/jaxp/src/javax/xml/stream/
H A DFactoryFinder.java133 * Create an instance of a class. Delegates to method
152 * Create an instance of a class. Delegates to method
180 Object instance = providerClass.newInstance();
182 dPrint("created new instance of " + providerClass +
185 return instance;
305 * @return instance of provider class if found or null
378 * Construct a new instance with the specified detail string and
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJceSecurity.java130 Instance instance = GetInstance.getInstance(s, clazz);
131 return instance;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanAnalyzer.java223 public final static MethodOrder instance = new MethodOrder(); field in class:MBeanAnalyzer.MethodOrder
245 Arrays.sort(sorted,MethodOrder.instance);
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DExternalScriptable.java33 * backed by a JSR 223 ScriptContext instance.
393 * @param instance The value that appeared on the LHS of the instanceof
398 public boolean hasInstance(Scriptable instance) { argument
401 Scriptable proto = instance.getPrototype();
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterData02.java.template237 static final CharacterData instance = new CharacterData02();
H A DCharacterData0E.java.template239 static final CharacterData instance = new CharacterData0E();
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java260 return LookupService.instance;
264 static final UserPrincipalLookupService instance = field in class:WindowsFileSystem.LookupService
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java53 /** Get the TreeMaker instance. */
54 public static TreeMaker instance(Context context) { method in class:TreeMaker
55 TreeMaker instance = context.get(treeMakerKey);
56 if (instance == null)
57 instance = new TreeMaker(context);
58 return instance;
83 this.names = Names.instance(context);
84 this.syms = Symtab.instance(context);
85 this.types = Types.instance(context);
/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
/openjdk7/langtools/test/tools/javac/api/
H A DTestTrees.java151 // annotation processing will happen in a separate instance/classloader
152 // so pass the message back to the calling instance.
166 Trees trees = Trees.instance(processingEnv);
204 testElement(Trees.instance(task), e.getTypeElement());
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java169 names = Names.instance(context); // Name.Table impls tied to an instance of Names
170 symtab = Symtab.instance(context);
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java48 names = Names.instance(context); // Name.Table impls tied to an instance of Names
49 symtab = Symtab.instance(context);
/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/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.h32 #define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type) (_G_TYPE_CIC ((instance), (g_type), c_type))
35 #define fp_g_signal_connect(instance, detailed_signal, c_handler, data) \
36 fp_g_signal_connect_data ((instance), (detailed_signal), (c_handler), (data), NULL, (GConnectFlags) 0)
785 gulong (*fp_g_signal_connect_data)(gpointer instance,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java95 public static ClientCodeWrapper instance(Context context) { method in class:ClientCodeWrapper
96 ClientCodeWrapper instance = context.get(ClientCodeWrapper.class);
97 if (instance == null)
98 instance = new ClientCodeWrapper(context);
99 return instance;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java168 * left-hand-side to initialize a final instance field named x, yet
196 public static Flow instance(Context context) { method in class:Flow
197 Flow instance = context.get(flowKey);
198 if (instance == null)
199 instance = new Flow(context);
200 return instance;
205 names = Names.instance(context);
206 log = Log.instance(context);
207 syms = Symtab.instance(context);
208 types = Types.instance(contex
[all...]
H A DResolve.java80 public static Resolve instance(Context context) { method in class:Resolve
81 Resolve instance = context.get(resolveKey);
82 if (instance == null)
83 instance = new Resolve(context);
84 return instance;
89 syms = Symtab.instance(context);
102 names = Names.instance(context);
103 log = Log.instance(context);
104 chk = Check.instance(context);
105 infer = Infer.instance(contex
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java157 /** Get the ClassWriter instance for this context. */
158 public static ClassWriter instance(Context context) { method in class:ClassWriter
159 ClassWriter instance = context.get(classWriterKey);
160 if (instance == null)
161 instance = new ClassWriter(context);
162 return instance;
170 log = Log.instance(context);
171 names = Names.instance(context);
172 syms = Symtab.instance(context);
173 options = Options.instance(contex
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacFiler.java360 log = Log.instance(context);
373 lint = (Lint.instance(context)).isEnabled(PROCESSING);
569 this.log = Log.instance(context);
/openjdk7/langtools/test/tools/javac/Diagnostics/6769027/
H A DT6769027.java334 Options options = Options.instance(ctx);
348 JavacMessages messages = JavacMessages.instance(ctx);
350 JCDiagnostic.Factory diags = JCDiagnostic.Factory.instance(ctx);
/openjdk7/hotspot/src/share/vm/oops/
H A DoopsHierarchy.hpp159 DEF_OOP(instance); variable
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTextFieldUI.java90 AquaKeyBindings.instance().setDefaultAction(getKeymapName());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DMain.java124 * Construct a compiler instance.
131 * Construct a compiler instance.
363 options = Options.instance(context); // creates a new one
424 comp = JavaCompiler.instance(context);
427 Log log = Log.instance(context);
431 comp = JavaCompiler.instance(context);
/openjdk7/langtools/test/tools/javac/6402516/
H A DChecker.java127 return Trees.instance(task);

Completed in 113 milliseconds

<<1112131415