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

/libcore/luni/src/main/java/java/nio/
H A DMappedByteBuffer.java96 * Attempts to load every page of this buffer into RAM. See {@link #isLoaded}.
99 public final MappedByteBuffer load() { method in class:MappedByteBuffer
/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/luni/src/main/java/java/util/
H A DServiceLoader.java57 * for (MyService service : ServiceLoader<MyService>.load(MyService.class)) {
118 public static <S> ServiceLoader<S> load(Class<S> service, ClassLoader classLoader) { method in class:ServiceLoader
141 public static <S> ServiceLoader<S> load(Class<S> service) { method in class:ServiceLoader
142 return ServiceLoader.load(service, Thread.currentThread().getContextClassLoader());
158 return ServiceLoader.load(service, cl);
H A DProperties.java59 * default) or the {@code load}/{@code store} overloads that take
244 public synchronized void load(InputStream in) throws IOException { method in class:Properties
248 load(new InputStreamReader(in, "ISO-8859-1"));
277 public synchronized void load(Reader in) throws IOException { method in class:Properties
482 * {@link #load(InputStream)} method.
/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/support/src/test/java/tests/support/
H A DSupport_Configuration.java145 load(in, props);
304 static void load(InputStream in, Hashtable<String, String> result) throws IOException { method in class:Support_Configuration
/libcore/luni/src/main/java/java/lang/
H A DRuntime.java320 * accepts the name of the library to load.
323 * the absolute (platform dependent) path to the library to load.
327 public void load(String pathName) { method in class:Runtime
328 load(pathName, VMStack.getCallingClassLoader());
334 void load(String pathName, ClassLoader loader) { method in class:Runtime
350 * the name of the library to load.
365 throw new UnsatisfiedLinkError("Couldn't load " + libraryName
H A DSystem.java60 * standard input and output. Enables clients to dynamically load native
515 * accepts the name of the library to load.
520 public static void load(String pathName) { method in class:System
521 Runtime.getRuntime().load(pathName, VMStack.getCallingClassLoader());
530 * the name of the library to load.
/libcore/luni/src/main/java/java/security/
H A DKeyStore.java575 * the {@code InputStream} to load this {@code KeyStore}'s data
587 public final void load(InputStream stream, char[] password) method in class:KeyStore
598 * the {@code LoadStoreParameter} that specifies how to load this
610 public final void load(LoadStoreParameter param) throws IOException, method in class:KeyStore
970 // load KeyStore from file
975 ks.load(fis, passwd);
980 ks.load(new TmpLSParameter(protParameter));
1085 * @see KeyStore#load(LoadStoreParameter)
H A DProvider.java179 public synchronized void load(InputStream inStream) throws IOException { method in class:Provider
181 tmp.load(inStream);

Completed in 6409 milliseconds