HomeSort by relevance Sort by last modified time
    Searched refs:Class (Results 1 - 25 of 1290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/junit/runner/
TestSuiteLoader.java 7 abstract public Class load(String suiteClassName) throws ClassNotFoundException;
8 abstract public Class reload(Class aClass) throws ClassNotFoundException;
StandardTestSuiteLoader.java 4 * The standard test suite loader. It can only load the same class once.
6 public class StandardTestSuiteLoader implements TestSuiteLoader {
8 * Uses the system class loader to load the test class
10 public Class load(String suiteClassName) throws ClassNotFoundException {
11 return Class.forName(suiteClassName);
14 * Uses the system class loader to load the test class
16 public Class reload(Class aClass) throws ClassNotFoundException
    [all...]
ReloadingTestSuiteLoader.java 6 public class ReloadingTestSuiteLoader implements TestSuiteLoader {
8 public Class load(String suiteClassName) throws ClassNotFoundException {
12 public Class reload(Class aClass) throws ClassNotFoundException {
  /external/emma/core/java12/com/vladium/util/
ClassLoadContext.java 18 class ClassLoadContext
24 * Returns the class representing the caller of {@link ClassLoaderResolver}
29 public final Class getCallerClass ()
45 ClassLoadContext (final Class caller)
53 private final Class m_caller;
55 } // end of class
  /external/junit/src/junit/runner/
TestSuiteLoader.java 7 abstract public Class load(String suiteClassName) throws ClassNotFoundException;
8 abstract public Class reload(Class aClass) throws ClassNotFoundException;
StandardTestSuiteLoader.java 4 * The standard test suite loader. It can only load the same class once.
6 public class StandardTestSuiteLoader implements TestSuiteLoader {
8 * Uses the system class loader to load the test class
10 public Class load(String suiteClassName) throws ClassNotFoundException {
11 return Class.forName(suiteClassName);
14 * Uses the system class loader to load the test class
16 public Class reload(Class aClass) throws ClassNotFoundException
    [all...]
ReloadingTestSuiteLoader.java 6 public class ReloadingTestSuiteLoader implements TestSuiteLoader {
8 public Class load(String suiteClassName) throws ClassNotFoundException {
12 public Class reload(Class aClass) throws ClassNotFoundException {
  /frameworks/base/test-runner/src/junit/runner/
TestSuiteLoader.java 7 abstract public Class load(String suiteClassName) throws ClassNotFoundException;
8 abstract public Class reload(Class aClass) throws ClassNotFoundException;
StandardTestSuiteLoader.java 4 * The standard test suite loader. It can only load the same class once.
7 public class StandardTestSuiteLoader implements TestSuiteLoader {
9 * Uses the system class loader to load the test class
11 public Class load(String suiteClassName) throws ClassNotFoundException {
12 return Class.forName(suiteClassName);
15 * Uses the system class loader to load the test class
17 public Class reload(Class aClass) throws ClassNotFoundException
    [all...]
ReloadingTestSuiteLoader.java 7 public class ReloadingTestSuiteLoader implements TestSuiteLoader {
9 public Class load(String suiteClassName) throws ClassNotFoundException {
13 public Class reload(Class aClass) throws ClassNotFoundException {
  /libcore/junit/src/test/java/junit/runner/
TestSuiteLoader.java 7 abstract public Class load(String suiteClassName) throws ClassNotFoundException;
8 abstract public Class reload(Class aClass) throws ClassNotFoundException;
StandardTestSuiteLoader.java 4 * The standard test suite loader. It can only load the same class once.
6 public class StandardTestSuiteLoader implements TestSuiteLoader {
8 * Uses the system class loader to load the test class
10 public Class load(String suiteClassName) throws ClassNotFoundException {
11 return Class.forName(suiteClassName);
14 * Uses the system class loader to load the test class
16 public Class reload(Class aClass) throws ClassNotFoundException
    [all...]
  /dalvik/dx/tests/089-dex-define-object/
Class.java 19 public class Class<T> {
  /libcore/luni/src/main/java/java/sql/
Wrapper.java 21 * This class is an actual usage of the wrapper pattern for JDBC classes.
23 * class.
34 * the class that defines the interface
39 <T> T unwrap(Class<T> iface) throws SQLException;
42 * If the caller is a wrapper of the class or implements the given
46 * the class that defines the interface
51 boolean isWrapperFor(Class<?> iface) throws SQLException;
  /external/guava/src/com/google/common/primitives/
Primitives.java 33 public final class Primitives {
37 public static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE;
40 public static final Map<Class<?>, Class<?>> WRAPPER_TO_PRIMITIVE_TYPE;
45 Map<Class<?>, Class<?>> primToWrap = new HashMap<Class<?>, Class<?>>(16);
46 Map<Class<?>, Class<?>> wrapToPrim = new HashMap<Class<?>, Class<?>>(16)
    [all...]
  /external/webkit/WebCore/platform/mac/
WebCoreObjCExtras.h 35 void WebCoreObjCFinalizeOnMainThread(Class cls);
37 // The 'Class' that should be passed in here is the class of the
39 bool WebCoreObjCScheduleDeallocateOnMainThread(Class cls, id object);
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestSink.java 26 public void addTest(Class test);
  /libcore/luni/src/main/java/java/lang/
Void.java 23 * Placeholder class for the Java keyword {@code void}.
27 public final class Void extends Object {
30 * The {@link Class} object that represents the primitive type {@code void}.
32 public static final Class<Void> TYPE = lookupType();
34 // Note: This can't be set to "void.class", since *that* is
38 private static Class<Void> lookupType() {
39 Class<?> voidType = null;
41 Method method = Runnable.class.getMethod("run", new Class[0]);
46 return (Class<Void>) voidType
    [all...]
  /external/guava/src/com/google/common/collect/
MutableClassToInstanceMap.java 23 * A mutable class-to-instance map backed by an arbitrary user-provided map.
29 public final class MutableClassToInstanceMap<B>
30 extends ConstrainedMap<Class<? extends B>, B>
39 new HashMap<Class<? extends B>, B>());
48 Map<Class<? extends B>, B> backingMap) {
52 private MutableClassToInstanceMap(Map<Class<? extends B>, B> delegate) {
56 private static final MapConstraint<Class<?>, Object> VALUE_CAN_BE_CAST_TO_KEY
57 = new MapConstraint<Class<?>, Object>() {
58 public void checkKeyValue(Class<?> key, Object value) {
63 public <T extends B> T putInstance(Class<T> type, T value)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
VMStack.java 20 * Provides a limited interface to the Dalvik VM stack. This class is mostly
25 public final class VMStack {
27 * Returns the defining class loader of the caller's caller.
29 * @return the requested class loader, or {@code null} if this is the
30 * bootstrap class loader.
35 * Returns the defining class loader of the caller's caller's caller.
37 * @return the requested class loader, or {@code null} if this is the
38 * bootstrap class loader.
43 * Returns the class of the caller's caller's caller.
46 * @return the requested class, or {@code null}
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/const_class/d/
T_const_class_1.java 19 public class T_const_class_1 {
21 public Class run() {
T_const_class_2.java 19 public class T_const_class_2 {
21 public Class run() {
T_const_class_6.java 19 public class T_const_class_6 {
21 public Class run() {
T_const_class_7.java 19 public class T_const_class_7 {
21 public Class run() {
  /external/webkit/WebKit/mac/WebView/
WebFrameViewPrivate.h 54 @result The custom scroll view class that is installed, nil if the default scroll view is being used.
56 - (Class)_customScrollViewClass;
60 @result Switches the WebFrameView's scroll view class, this class needs to be a subclass of WebDynamicScrollBarsView.
61 Passing nil will switch back to the default WebDynamicScrollBarsView class.
63 - (void)_setCustomScrollViewClass:(Class)scrollViewClass;

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011>>