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

12

/dalvik/dx/src/junit/runner/
H A DStandardTestSuiteLoader.java4 * The standard test suite loader. It can only load the same class once.
8 * Uses the system class loader to load the test class
10 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:StandardTestSuiteLoader
14 * Uses the system class loader to load the test class
H A DTestSuiteLoader.java7 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DReloadingTestSuiteLoader.java8 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
/dalvik/libcore/luni/src/test/java/junit/runner/
H A DStandardTestSuiteLoader.java4 * The standard test suite loader. It can only load the same class once.
8 * Uses the system class loader to load the test class
10 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:StandardTestSuiteLoader
14 * Uses the system class loader to load the test class
H A DTestSuiteLoader.java7 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DReloadingTestSuiteLoader.java8 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
/dalvik/libcore/nio/src/main/java/java/nio/
H A DMappedByteBuffer.java95 public final MappedByteBuffer load() { method in class:MappedByteBuffer
/dalvik/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.java117 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
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
H A DDOMTestCase.java19 public Document load(String docURI, DocumentBuilder builder) { method in class:DOMTestCase
20 Document doc = load(resolveURI(docURI), builder);
24 public Document load(URL url, DocumentBuilder builder) { method in class:DOMTestCase
/dalvik/libcore/luni/src/main/java/java/util/
H A DProperties.java303 public synchronized void load(InputStream in) throws IOException { method in class:Properties
498 * {@link #load(InputStream)} method.
538 * {@link #load(InputStream)} method.
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySystem.java500 public void load(int addr, long size); method in interface:IMemorySystem
H A DOSMemory.java628 public void load(int addr, long size) { method in class:OSMemory
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DRuntime.java407 * accepts the name of the library to load.
410 * the absolute (platform dependent) path to the library to load.
414 * if the current {@code SecurityManager} does not allow to load
419 public void load(String pathName) { method in class:Runtime
426 load(pathName, VMStack.getCallingClassLoader());
432 void load(String filename, ClassLoader loader) { method in class:Runtime
448 * the name of the library to load.
452 * if the current {@code SecurityManager} does not allow to load
H A DSystem.java55 * standard input and output. Enables clients to dynamically load native
531 public static void load(String pathName) { method in class:System
536 Runtime.getRuntime().load(pathName, VMStack.getCallingClassLoader());
545 * the name of the library to load.
625 // the common operations and let it load needed classes (if any),
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_Configuration.java183 load(in, props);
377 static void load(InputStream in, Hashtable<String, String> result) throws IOException { method in class:Support_Configuration
/dalvik/libcore/security/src/main/java/java/security/
H A DProvider.java206 public synchronized void load(InputStream inStream) throws IOException { method in class:Provider
208 tmp.load(inStream);
H A DKeyStore.java674 * the {@code InputStream} to load this {@code KeyStore}'s data
687 public final void load(InputStream stream, char[] password) method in class:KeyStore
698 * the {@code LoadStoreParameter} that specifies how to load this
711 public final void load(LoadStoreParameter param) throws IOException, method in class:KeyStore
1099 // load KeyStore from file
1107 ks.load(fis, passwd);
1115 ks.load(new TmpLSParameter(
1235 * @see KeyStore#load(LoadStoreParameter)

Completed in 502 milliseconds

12