HomeSort by relevance Sort by last modified time
    Searched defs:class (Results 51 - 75 of 301) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
DrawerLayoutUtil.java 34 public class DrawerLayoutUtil {
56 invoke(getMethod(drawerLayout.getClass(), "openDrawer", int.class), drawerLayout,
DesignLibUtil.java 31 * Utility class for working with the design support lib.
33 public class DesignLibUtil {
54 invoke(getMethod(view.getClass(), "setTitle", CharSequence.class), view, title);
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
TestAnnotation3.java 12 * only primitive type, String, Class, annotation,
26 Class aClazz() default Void.class;
TestAnnotation3b.java 12 * only primitive type, String, Class, annotation,
26 Class aClazz() default Void.class;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
SpellCheckerSettingsFragment.java 38 public final class SpellCheckerSettingsFragment extends SubScreenFragment
50 getActivity(), SpellCheckerSettingsActivity.class));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
DatabaseConfigTest.java 15 @RunWith(WithTestDefaultsRunner.class)
16 public class DatabaseConfigTest {
25 assertThat(DatabaseConfig.getDatabaseMap().getClass().getName(), equalTo(H2Map.class.getName()));
37 assertThat(DatabaseConfig.getDatabaseMap().getClass().getName(), equalTo(H2Map_TypeForwardOnly.class.getName()));
52 @Test(expected = NullDatabaseMapException.class)
58 @Test(expected = NullDatabaseMapException.class)
64 @Test(expected = NullDatabaseMapException.class)
70 @Test(expected = NullDatabaseMapException.class)
  /packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
SwitchPreview.java 38 * -e class com.android.camera.stress.SwitchPreview \
42 public class SwitchPreview extends ActivityInstrumentationTestCase2 <VideoCamera>{
53 super(VideoCamera.class);
102 VideoCamera.class);
108 Camera.class);
  /cts/tests/tests/media/src/android/media/cts/
FaceDetectorTest.java 28 public class FaceDetectorTest extends InstrumentationTestCase {
36 intent.setClass(getInstrumentation().getTargetContext(), FaceDetectorStub.class);
  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 36 * -e class com.example.android.apis.app.LocalServiceTest \
39 public class LocalServiceTest extends ServiceTestCase<LocalService> {
42 super(LocalService.class);
66 startIntent.setClass(getContext(), LocalService.class);
76 startIntent.setClass(getContext(), LocalService.class);
  /external/elfutils/src/tests/
sectiondump.c 165 int class = gelf_getclass (elf); local
166 size_t nsym = data->d_size / (class == ELFCLASS32
177 class == ELFCLASS32 ? 8 : 16,
  /external/libnl/lib/route/
class.c 2 * lib/route/class.c Queueing Classes
14 * @defgroup class Queueing Classes
22 #include <netlink/route/class.h>
23 #include <netlink/route/class-modules.h>
34 struct rtnl_class *class; local
37 class = rtnl_class_alloc();
38 if (!class) {
42 class->ce_msgtype = n->nlmsg_type;
44 err = tca_msg_parser(n, (struct rtnl_tca *) class);
48 cops = rtnl_class_lookup_ops(class);
263 struct rtnl_class *class; local
    [all...]
  /external/libnl/src/
nl-tctree-list.c 42 struct rtnl_class *class = (struct rtnl_class *) obj; local
44 uint32_t parent = rtnl_class_get_handle(class);
49 leaf = rtnl_class_leaf_qdisc(class, qdisc_cache);
53 rtnl_class_foreach_child(class, class_cache, &print_class, arg + 2);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteDatabaseTest.java 18 @DatabaseConfig.UsingDatabaseMap(SQLiteMap.class)
19 @RunWith(WithTestDefaultsRunner.class)
20 public class SQLiteDatabaseTest extends DatabaseTestBase {
25 equalTo(SQLiteMap.class.getName()));
  /external/strace/
ioprio.c 31 int class, data; local
33 class = IOPRIO_PRIO_CLASS(ioprio);
35 str = xlookup(ioprio_class, class);
40 class, "IOPRIO_CLASS_???", data);
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
AsyncStructure.java 29 public class AsyncStructure extends TextView {
48 child.setClassName(AsyncStructure.class.getName());
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerViewAccessibilityDelegate.java 28 * This class handles basic accessibility actions and delegates them to LayoutManager.
30 public class RecyclerViewAccessibilityDelegate extends AccessibilityDelegateCompat {
57 info.setClassName(RecyclerView.class.getName());
66 event.setClassName(RecyclerView.class.getName());
  /packages/apps/Dialer/src/com/android/dialer/contact/
ContactUpdateService.java 28 public class ContactUpdateService extends IntentService {
33 super(ContactUpdateService.class.getSimpleName());
39 Intent serviceIntent = new Intent(context, ContactUpdateService.class);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 33 * This class creates another class loader to load multiple copies of various
35 * class names using the correct class loader.
37 public final class ClassLoaderReflectionTest extends TestCase {
40 * Each of these class instances points to a different copy of the class
41 * than the one in the application class loader!
43 private Class<?> aClass;
44 private Class<?> aListClass
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
ClassPathTest.java 56 public class ClassPathTest extends TestCase {
72 "com/google/common/reflect/ClassPath.class",
73 "com/google/common/reflect/ClassPathTest.class",
74 "com/google/common/reflect/ClassPathTest$Nested.class",
88 Set<Class<?>> classes = Sets.newHashSet();
93 if (!classInfo.getPackageName().equals(ClassPathTest.class.getPackage().getName())) {
102 class LocalClass {}
103 Class<?> anonymousClass = new Object() {}.getClass();
104 ASSERT.that(names).has().allOf(anonymousClass.getName(), LocalClass.class.getName(),
105 ClassPath.class.getName(), ClassPathTest.class.getName())
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 54 * The main serializer class, which will serialize objects such that
60 public abstract class Serializer {
61 protected static final Logger log = Logger.getLogger(Serializer.class.getName());
63 private static final SerializerRegistration NULL_CLASS = new SerializerRegistration( null, Void.class, (short)-1 );
66 private static final Map<Class, SerializerRegistration> classRegistrations = new HashMap<Class, SerializerRegistration>();
100 registerClass(boolean.class, new BooleanSerializer());
101 registerClass(byte.class, new ByteSerializer());
102 registerClass(char.class, new CharSerializer());
103 registerClass(short.class, new ShortSerializer())
    [all...]
  /art/test/044-proxy/src/
Clash3.java 23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash3 {
31 Proxy.newProxyInstance(Clash.class.getClassLoader(),
32 new Class[] {
33 Interface3a.class,
34 Interface3base.class,
35 Interface3aa.class,
36 Interface3b.class },
45 class R3base implements I3 { int mBlah; public void x() {} }
46 class R3a extends R3base { int mBlah_a;
    [all...]
Clash4.java 23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash4 {
31 Proxy.newProxyInstance(Clash.class.getClassLoader(),
32 new Class[] {
33 Interface4a.class,
34 Interface4aa.class,
35 Interface4base.class,
36 Interface4b.class,
37 Interface4bb.class },
47 class R4base { int mBlah;
    [all...]
  /art/test/100-reflect2/src/
Main.java 20 class Main {
33 f = Main.class.getDeclaredField("z");
35 f = Main.class.getDeclaredField("b");
37 f = Main.class.getDeclaredField("c");
39 f = Main.class.getDeclaredField("d");
41 f = Main.class.getDeclaredField("f");
43 f = Main.class.getDeclaredField("i");
45 f = Main.class.getDeclaredField("j");
47 f = Main.class.getDeclaredField("s");
50 f = Main.class.getDeclaredField("z")
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
HeadsUpNotificationFragment.java 36 public class HeadsUpNotificationFragment extends Fragment {
124 push.setClass(getActivity(), LNotificationActivity.class);
  /developers/build/prebuilts/gradle/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizReportActionService.java 41 public class QuizReportActionService extends IntentService {
49 super(QuizReportActionService.class.getSimpleName());

Completed in 2451 milliseconds

1 23 4 5 6 7 8 91011>>