Searched defs:load (Results 51 - 75 of 79) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DModelLoader.java82 * This is an utility class that makes it easy to load a grammar object
100 * A convenience method to load schemas into a {@link Model}.
102 public static Model load( Options opt, JCodeModel codeModel, ErrorReceiver er ) { method in class:ModelLoader
103 return new ModelLoader(opt,codeModel,er).load();
114 private Model load() { method in class:ModelLoader
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java409 * @param loader The class loader to be used to load provider-configuration files
416 * @see #load(Class)
418 public static <T> T[] load(final Class<T> serviceClass, final ClassLoader loader) { method in class:PolicyUtils.ServiceProvider
429 * return PolicyUtils.ServiceProvider.load(service, cl);
437 * @see #load(Class, ClassLoader)
439 public static <T> T[] load(final Class<T> serviceClass) { method in class:PolicyUtils.ServiceProvider
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js357 * load and evaluate script file. If no script file is
363 function load(file) { function
380 load.docString = "loads a script file and evaluates it";
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeTable.java78 load();
97 * Get the single instance of this class. First use will load the
229 public synchronized void load() { method in class:MimeTable
234 // First try to load the user-specific table, if it exists
240 // No user-table, try to load the default built-in table.
249 // No user table, try to load the default built-in table.
258 entries.load(is);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DUtil.java480 static void load() { method in class:Util
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanDirConfig.java64 * load and save the <i>scandir</i> application configuration to and from an
70 * reloading the file without saving - see {@link #load}.
81 * Once the current configuration has been loaded (by calling {@link #load})
190 * <p>This object is created empty, you should call load() if you want it
191 * to load its data from the configuration file.
194 * Can be null (in which case load() and save() will fail).
196 * load() will fail if called before save(), and save() will
198 * in which case load() will load that file and save() will save
219 public void load() throw method in class:ScanDirConfig
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java109 * {@link #load(java.io.InputStream, char[]) loaded}.
119 * ks.load(fis, password);
127 * To create an empty keystore using the above <code>load</code> method,
161 * load the keystore, to protect the private key entry,
214 * {@link #load(KeyStore.LoadStoreParameter) load}
1211 public final void load(InputStream stream, char[] password) method in class:KeyStore
1225 * that specifies how to load the keystore,
1244 public final void load(LoadStoreParameter param) method in class:KeyStore
1472 * its {@link KeyStore#load loa
[all...]
H A DProvider.java221 * @see java.util.Properties#load
223 public synchronized void load(InputStream inStream) throws IOException { method in class:Provider
229 tempProperties.load(inStream);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java196 /** Generate code to load this item onto stack.
198 Item load() { method in class:Items.Item
232 load();
243 load();
282 Item load() { method in class:Items.StackItem
316 Item load() { method in class:Items.IndexedItem
359 Item load() { method in class:Items.SelfItem
388 Item load() { method in class:Items.LocalItem
408 load();
410 makeImmediateItem(syms.intType, x).load();
439 Item load() { method in class:Items.StaticItem
478 Item load() { method in class:Items.MemberItem
545 Item load() { method in class:Items.ImmediateItem
665 Item load() { method in class:Items.AssignItem
723 Item load() { method in class:Items.CondItem
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java140 return new CharsetMapping().load(is);
304 CharsetMapping load(InputStream in) { method in class:CharsetMapping
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityScanner.java71 /** Listeners which should know when load is being called */
494 // load more characters, if needed
497 load(0, true);
536 // load more characters, if needed
539 load(0, true);
551 load(1, false);
594 // load more characters, if needed
597 load(0, true);
629 if (load(length, false)) {
674 // load mor
1738 final boolean load(int offset, boolean changeEntity) method in class:XMLEntityScanner
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java49 * {@link #load} method, or provide your own {@link SynthStyleFactory}
105 * Map of defaults table entries. This is populated via the load
538 * invoke <code>load</code> to specify the set of
541 * @see #load
558 * @param input InputStream to load from
563 public void load(InputStream input, Class<?> resourceBase) throws method in class:SynthLookAndFeel
587 * @param url the <code>URL</code> to load the set of
594 public void load(URL url) throws ParseException, IOException { method in class:SynthLookAndFeel
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java396 * @exception InstanceNotFoundException Could not find or load
399 public void load() method in class:RequiredModelMBean
/openjdk7/hotspot/src/share/vm/opto/
H A DidealKit.cpp349 Node* IdealKit::load(Node* ctl, function in class:IdealKit
H A Dmulnode.cpp63 // We are OK if right is a constant, or right is a load and
433 // Masking off the high bits of an unsigned load is not required
473 Node *load = in(1); local
474 uint lop = load->Opcode();
479 return new (phase->C) AndINode(load,phase->intcon(mask&0xFFFF));
483 load->outcnt() == 1 && load->unique_out() == this) {
485 Node *ldus = new (phase->C) LoadUSNode(load->in(MemNode::Control),
486 load->in(MemNode::Memory),
487 load
[all...]
H A Dblock.hpp372 Block* insert_anti_dependences(Block* LCA, Node* load, bool verify = false);
373 void verify_anti_dependences(Block* LCA, Node* load) { argument
374 assert(LCA == _bbs[load->_idx], "should already be scheduled");
375 insert_anti_dependences(LCA, load, true);
H A Dgcm.cpp380 // Find the "early" block for a load, if we considered only memory and
387 static Block* memory_early_block(Node* load, Block* early, Block_Array &bbs) { argument
390 Node* store = load->in(MemNode::Memory);
391 load->as_Mach()->memory_inputs(base, index);
404 if (mem_inputs_length + 1 < (int) load->req()) {
405 // This "load" has more inputs than just the memory, base and index inputs.
410 if (load->in(0) != NULL) mem_inputs[mem_inputs_length++] = load->in(0);
420 DEBUG_ONLY(assert_dom(deepb, inb, load, bbs));
432 // A load ma
447 insert_anti_dependences(Block* LCA, Node* load, bool verify) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOpenTypeViewer.java386 private void load(CompositeData data) { method in class:XOpenTypeViewer.XCompositeData
432 load(data);
533 load();
537 private void load() { method in class:XOpenTypeViewer.XArrayData
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java828 // load schema
1099 * @see com.sun.org.apache.xerces.internal.xs.XSLoader#load(org.w3c.dom.ls.LSInput)
1101 public XSModel load(LSInput is) { method in class:XMLSchemaLoader
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassLoader.java139 * #findClass <tt>findClass</tt>} and <tt>loadClassData</tt> to load a class
155 * // load the class data from the connection
471 // This method is invoked by the virtual machine to load a class.
1201 * implementations should override this method to specify where to load
1242 * Find a resource of the specified name from the search path used to load
1264 * load classes. The resources thus found are returned as an
1350 * used to load classes. This method locates the resource through the
1747 native void load(String name); method in class:ClassLoader.NativeLibrary
1833 // Invoked in the java.lang.Runtime class to implement load and loadLibrary.
1846 throw new UnsatisfiedLinkError("Can't load librar
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h267 int load; member in struct:awtFontList
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCoreDocumentImpl.java1215 * Indicates whether the method load should be synchronous or
1217 * the load method returns control to the caller before the document has
1233 * Indicates whether the method load should be synchronous or
1235 * the load method returns control to the caller before the document has
1254 * <code>load</code> being invoked the loading and parsing is
1267 * attribute. Once the document is fully loaded a "load" event (as
1273 * currently loading, the current load is interrupted and the new URI
1274 * load is initiated.
1288 * @return If async is set to <code>true</code> <code>load</code> returns
1289 * <code>true</code> if the document load wa
1297 public boolean load(String uri) { method in class:CoreDocumentImpl
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java395 new PropertiesHandler().load(in);
1783 public void load(InputStream in) throws IOException { method in class:FontConfiguration.PropertiesHandler
1787 fp.load(in);
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java174 private static final SortedSet standardEncodings = load();
176 private static SortedSet load() { method in class:DataTransferer.StandardEncodingsHolder
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp1178 void LIR_List::load(LIR_Address* addr, LIR_Opr src, CodeEmitInfo* info, LIR_PatchCode patch_code) { function in class:LIR_List

Completed in 637 milliseconds

1234