Searched defs:load (Results 1 - 21 of 21) sorted by relevance

/libcore/ojluni/src/main/java/javax/crypto/
H A DCryptoPermissions.java42 void load(InputStream in) method in class:CryptoPermissions
/libcore/dom/src/test/java/org/w3c/domts/
H A DBatikTestDocumentBuilderFactory.java126 * @param url url to load
128 * @throws DOMTestLoadException if unable to load document
130 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:BatikTestDocumentBuilderFactory
H A DDOM4JTestDocumentBuilderFactory.java105 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:DOM4JTestDocumentBuilderFactory
H A DDOMTestDocumentBuilderFactory.java64 public abstract Document load(java.net.URL url) throws DOMTestLoadException; method in class:DOMTestDocumentBuilderFactory
H A DJTidyDocumentBuilderFactory.java87 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:JTidyDocumentBuilderFactory
H A DDOMTest.java200 public Document load(String docURI, boolean willBeModified) throws method in class:DOMTest
202 Document doc = factory.load(resolveURI(docURI));
H A DJAXPDOMTestDocumentBuilderFactory.java118 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:JAXPDOMTestDocumentBuilderFactory
H A DLSDocumentBuilderFactory.java327 * @param url url to load
329 * @throws DOMTestLoadException if unable to load document
331 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:LSDocumentBuilderFactory
H A DXercesHTML2DocumentBuilderFactory.java199 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:XercesHTML2DocumentBuilderFactory
H A DXercesHTMLDocumentBuilderFactory.java199 public Document load(java.net.URL url) throws DOMTestLoadException { method in class:XercesHTMLDocumentBuilderFactory
/libcore/ojluni/src/main/java/java/nio/
H A DMappedByteBuffer.java146 // not used, but a potential target for a store, see load() for details.
159 public final MappedByteBuffer load() { method in class:MappedByteBuffer
/libcore/ojluni/src/main/java/java/util/
H A DXMLUtils.java39 * A class used to aid in Properties load and save in XML. Keeping this
70 static void load(Properties props, InputStream in) method in class:XMLUtils
H A DServiceLoader.java136 * = ServiceLoader.load(CodecSet.class);</pre></blockquote>
191 // The class loader used to locate, load, and instantiate providers
466 * The class loader to be used to load provider-configuration files
473 public static <S> ServiceLoader<S> load(Class<S> service, method in class:ServiceLoader
487 * ServiceLoader.load(<i>service</i>)</pre></blockquote>
492 * ServiceLoader.load(<i>service</i>,
500 public static <S> ServiceLoader<S> load(Class<S> service) { method in class:ServiceLoader
502 return ServiceLoader.load(service, cl);
513 * ServiceLoader.load(<i>service</i>, <i>extClassLoader</i>)</pre></blockquote>
520 * desired. The resulting service will only find and load provider
[all...]
H A DProperties.java62 * The {@link #load(java.io.Reader) load(Reader)} <tt>/</tt>
64 * methods load and store properties from and to a character based stream
67 * The {@link #load(java.io.InputStream) load(InputStream)} <tt>/</tt>
69 * methods work the same way as the load(Reader)/store(Writer, String) pair, except
79 * #storeToXML(OutputStream, String, String)} methods load and store properties
317 public synchronized void load(Reader reader) throws IOException { method in class:Properties
325 * {@link #load(java.io.Reader) load(Reade
341 public synchronized void load(InputStream inStream) throws IOException { method in class:Properties
[all...]
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDOMTestCase.java16 public Document load(String docURI, DocumentBuilder builder) { method in class:DOMTestCase
17 Document doc = load(resolveURI(docURI), builder);
21 public Document load(URL url, DocumentBuilder builder) { method in class:DOMTestCase
/libcore/ojluni/src/main/java/java/lang/
H A DRuntime.java845 * <code>Runtime.getRuntime().load("/home/avh/lib/libX11.so");</code>).
855 * The method {@link System#load(String)} is the conventional and
858 * @param filename the file to load.
870 public void load(String filename) { method in class:Runtime
884 void load(String absolutePath, ClassLoader loader) { method in class:Runtime
885 checkTargetSdkVersionForLoad("java.lang.Runtime#load(String, ClassLoader)");
887 java.lang.System.logE("java.lang.Runtime#load(String, ClassLoader)" +
1047 // The PathClassLoader set up by frameworks/base knows the appropriate path, so we can load
1049 // depend on each other needed to load them in most-dependent-first order.
H A DSystem.java1488 * The call <code>System.load(name)</code> is effectively equivalent
1491 * Runtime.getRuntime().load(name)
1494 * @param filename the file to load.
1501 * @see java.lang.Runtime#load(java.lang.String)
1504 public static void load(String filename) { method in class:System
/libcore/ojluni/src/main/java/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);
/libcore/ojluni/src/main/java/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,
247 * {@link #load(KeyStore.LoadStoreParameter) load}
1244 public final void load(InputStream stream, char[] password) method in class:KeyStore
1258 * that specifies how to load the keystore,
1277 public final void load(LoadStoreParameter param) method in class:KeyStore
1505 * its {@link KeyStore#load loa
[all...]
H A DProvider.java227 * @see java.util.Properties#load
229 public synchronized void load(InputStream inStream) throws IOException { method in class:Provider
235 tempProperties.load(inStream);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DSerializationStressTest2.java178 // does not consume. Have to make sure we can load object properly AND
510 public boolean load; field in class:SerializationStressTest2.DeepNesting
516 load = false;
534 if (inst.dump != this.dump || inst.load != this.load)
557 public boolean load; field in class:SerializationStressTest2.DeepNestingWithWriteObject
563 load = false;
582 if (inst.dump != this.dump || inst.load != this.load)
823 // Has to be able to save/load a
[all...]

Completed in 7237 milliseconds