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/ojluni/src/main/java/java/nio/channels/spi/
H A DAsynchronousChannelProvider.java75 static final AsynchronousChannelProvider provider = load();
77 private static AsynchronousChannelProvider load() { method in class:AsynchronousChannelProvider.ProviderHolder
113 ServiceLoader.load(AsynchronousChannelProvider.class,
/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.java137 * = ServiceLoader.load(CodecSet.class);</pre></blockquote>
192 // The class loader used to locate, load, and instantiate providers
514 * The class loader to be used to load provider-configuration files
521 public static <S> ServiceLoader<S> load(Class<S> service, method in class:ServiceLoader
535 * ServiceLoader.load(<i>service</i>)</pre></blockquote>
540 * ServiceLoader.load(<i>service</i>,
550 public static <S> ServiceLoader<S> load(Class<S> service) { method in class:ServiceLoader
552 return ServiceLoader.load(service, cl);
563 * ServiceLoader.load(<i>service</i>, <i>extClassLoader</i>)</pre></blockquote>
570 * desired. The resulting service will only find and load provider
[all...]
H A DProperties.java63 * The {@link #load(java.io.Reader) load(Reader)} <tt>/</tt>
65 * methods load and store properties from and to a character based stream
68 * The {@link #load(java.io.InputStream) load(InputStream)} <tt>/</tt>
70 * methods work the same way as the load(Reader)/store(Writer, String) pair, except
80 * #storeToXML(OutputStream, String, String)} methods load and store properties
311 public synchronized void load(Reader reader) throws IOException { method in class:Properties
319 * {@link #load(java.io.Reader) load(Reade
335 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.java851 * <code>Runtime.getRuntime().load("/home/avh/lib/libX11.so");</code>).
857 * is invoked rather than attempting to load a dynamic library.
872 * The method {@link System#load(String)} is the conventional and
875 * @param filename the file to load.
890 public void load(String filename) { method in class:Runtime
904 void load(String absolutePath, ClassLoader loader) { method in class:Runtime
905 checkTargetSdkVersionForLoad("java.lang.Runtime#load(String, ClassLoader)");
907 java.lang.System.logE("java.lang.Runtime#load(String, ClassLoader)" +
1074 // The PathClassLoader set up by frameworks/base knows the appropriate path, so we can load
1076 // depend on each other needed to load the
[all...]
H A DSystem.java1591 * is invoked rather than attempting to load a dynamic library.
1600 * The call <code>System.load(name)</code> is effectively equivalent
1603 * Runtime.getRuntime().load(name)
1606 * @param filename the file to load.
1616 * @see java.lang.Runtime#load(java.lang.String)
1620 public static void load(String filename) { method in class:System
/libcore/ojluni/src/main/java/java/security/
H A DKeyStore.java111 * {@link #load(java.io.InputStream, char[]) loaded}.
119 * ks.load(fis, password);
123 * To create an empty keystore using the above {@code load} method,
151 * load the keystore, to protect the private key entry,
246 * {@link #load(KeyStore.LoadStoreParameter) load}
1481 public final void load(InputStream stream, char[] password) method in class:KeyStore
1495 * that specifies how to load the keystore,
1514 public final void load(LoadStoreParameter param) method in class:KeyStore
1743 * its {@link KeyStore#load loa
[all...]
H A DProvider.java225 * @see java.util.Properties#load
228 public synchronized void load(InputStream inStream) throws IOException { method in class:Provider
234 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 1629 milliseconds