HomeSort by relevance Sort by last modified time
    Searched refs:Class (Results 276 - 300 of 2182) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/libcore/java/util/
ResourceLeakageDetector.java 28 public class ResourceLeakageDetector {
29 /** The class for the CloseGuardMonitor, null if not supported. */
30 private static final Class<?> CLOSE_GUARD_MONITOR_CLASS;
33 ClassLoader classLoader = ResourceLeakageDetector.class.getClassLoader();
34 Class<?> clazz;
36 // Make sure that the CloseGuard class exists; this ensures that this is not running
40 // Load the monitor class for later instantiation.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
class.pass.cpp 12 // class
16 template <class T>
28 template <class T>
37 class Class
45 test_class<Class>();
member_object_pointer.pass.cpp 16 template <class T>
28 template <class T>
37 class Class
43 test_member_object_pointer<int Class::*>();
  /libcore/libart/src/main/java/java/lang/
Class.java 68 * The in-memory representation of a Java class. This representation serves as
69 * the starting point for querying class-related information, a process usually
70 * called "reflection". There are basically three types of {@code Class}
74 * <h4>Class instances representing object types (classes or interfaces)</h4>
76 * These represent an ordinary class or interface as found in the class
77 * hierarchy. The name associated with these {@code Class} instances is simply
78 * the fully qualified class name of the class or interface that it represents.
79 * In addition to this human-readable name, each class is also associated by
    [all...]
ClassLoader.java 49 * Loads classes and resources from a repository. One or more class loaders are
51 * specific class that is not yet available in-memory. Typically, class loaders
52 * are grouped into a tree where child class loaders delegate all requests to
53 * parent class loaders. Only if the parent class loader cannot satisfy the
54 * request, the child class loader itself tries to handle it.
56 * {@code ClassLoader} is an abstract class that implements the common
57 * infrastructure required by all class loaders. Android provides several
58 * concrete implementations of the class, wit
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 41 class ListMap {
48 private static Hashtable<Class<?>,Class<?>> headerListTable;
58 * class of such objects.
60 headerListTable = new Hashtable<Class<?>, Class<?>>();
61 headerListTable.put(ExtensionHeaderImpl.class, ExtensionHeaderList.class);
63 headerListTable.put(Contact.class, ContactList.class);
    [all...]
  /frameworks/testing/support/src/android/support/test/internal/runner/
TestLoader.java 33 * A class for loading JUnit3 and JUnit4 test classes given a set of potential class names.
35 public class TestLoader {
39 private Map<String, Class<?>> mLoadedClassesMap = new LinkedHashMap<String, Class<?>>();
54 * Loads the test class from a given class name if its not already loaded.
59 * @param className the class name to attempt to load
60 * @return the loaded class or null.
62 public Class<?> loadClass(String className)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
TypeVariableTest.java 28 public class TypeVariableTest extends GenericReflectionTestsBase {
30 static class A<T>{}
32 Class<? extends A> clazz = A.class;
35 TypeVariable<Class> typeVariable = typeParameters[0];
40 assertEquals(Object.class, bounds[0]);
43 static class B{
47 Class<? extends B> clazz = B.class;
56 assertEquals(Object.class, bounds[0])
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
FauxveridesTest.java 42 * are "overridden" in each immutable-collection class. This ensures, for
48 public class FauxveridesTest extends TestCase {
50 doHasAllFauxveridesTest(ImmutableBiMap.class, ImmutableMap.class);
55 ImmutableListMultimap.class, ImmutableMultimap.class);
60 ImmutableSetMultimap.class, ImmutableMultimap.class);
64 doHasAllFauxveridesTest(ImmutableSortedMap.class, ImmutableMap.class);
    [all...]
  /art/runtime/
class_linker-inl.h 32 inline mirror::Class* ClassLinker::FindSystemClass(Thread* self, const char* descriptor) {
36 inline mirror::Class* ClassLinker::FindArrayClass(Thread* self, mirror::Class** element_class) {
38 // Read the cached array class once to avoid races with other threads setting it.
39 mirror::Class* array_class = find_array_class_cache_[i].Read();
50 HandleWrapper<mirror::Class> h_element_class(hs.NewHandleWrapper(element_class));
51 mirror::Class* array_class = FindClass(self, descriptor.c_str(), class_loader);
52 // Benign races in storing array class and incrementing index.
54 find_array_class_cache_[victim_index] = GcRoot<mirror::Class>(array_class);
63 mirror::Class* declaring_class = referrer->GetDeclaringClass()
    [all...]
  /art/runtime/mirror/
iftable-inl.h 25 inline void IfTable::SetInterface(int32_t i, Class* interface) {
reference-inl.h 27 return Class::ComputeClassSize(false, vtable_entries, 2, 0, 0);
stack_trace_element.cc 19 #include "class.h"
20 #include "class-inl.h"
29 GcRoot<Class> StackTraceElement::java_lang_StackTraceElement_;
31 void StackTraceElement::SetClass(Class* java_lang_StackTraceElement) {
34 java_lang_StackTraceElement_ = GcRoot<Class>(java_lang_StackTraceElement);
39 java_lang_StackTraceElement_ = GcRoot<Class>(nullptr);
  /art/test/005-annotations/src/android/test/anno/
AnnoFancyMethod.java 13 Class someClass() default SomeClass.class;
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureProvider.java 27 public class FeatureProvider extends ContentProvider {
40 final Class<?> test = Class.forName("com.android.cts.splitapp.SplitAppTest");
46 final Class<?> baseR = Class.forName("com.android.cts.splitapp.BaseR");
  /cts/tools/vm-tests-tf/src/dot/junit/verify/a1/
Test_a1.java 22 public class Test_a1 extends DxTestCase {
31 Class.forName("dot.junit.verify.a1.d.T_a1_1");
  /cts/tools/vm-tests-tf/src/dot/junit/verify/a3/
Test_a3.java 22 public class Test_a3 extends DxTestCase {
31 Class.forName("dot.junit.verify.a3.d.T_a3_1");
  /cts/tools/vm-tests-tf/src/dot/junit/verify/a5/
Test_a5.java 22 public class Test_a5 extends DxTestCase {
31 Class.forName("dot.junit.verify.a5.d.T_a5_1");
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b17/
Test_b17.java 22 public class Test_b17 extends DxTestCase {
38 Class.forName("dot.junit.verify.b17.d.T_b17_1");
  /dalvik/dx/tests/089-dex-define-object/
Object.java 19 public class Object {
32 public final native Class<? extends Object> getClass();
  /dalvik/dx/tests/115-merge/testdata/
StaticValues.java 3 public class StaticValues {
12 public static final Class<?> i = String.class;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Exception.pm 3 use Exception::Class;
7 extends 'Moose::Object', 'Exception::Class::Base';
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestInterceptorList.java 99 * Removes all request interceptor of the specified class
101 * @param clazz the class of the instances to be removed.
103 void removeRequestInterceptorByClass(Class clazz);
HttpResponseInterceptorList.java 100 * Removes all response interceptor of the specified class
102 * @param clazz the class of the instances to be removed.
104 void removeResponseInterceptorByClass(Class clazz);
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 25 * This class is duplicated for each JAXP subpackage so keep it in sync.
35 * This class was moved from the <code>javax.xml.parsers.ObjectFactory</code>
36 * class and modified to be used as a general utility for creating objects
41 class ObjectFactory {
51 // the context class loader is always sufficient
57 * Find a Class using the specified ClassLoader
59 static Class findProviderClass(String className, ClassLoader cl,
64 //class. Restrict the access to the package classes as specified in java.security policy.
77 Class providerClass;
80 // load a class using the bootstrap ClassLoader that work
    [all...]

Completed in 1038 milliseconds

<<11121314151617181920>>