HomeSort by relevance Sort by last modified time
    Searched defs:class (Results 226 - 250 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StreamingTextView.java 44 class StreamingTextView extends EditText {
59 new Property<StreamingTextView,Integer>(Integer.class, "streamPosition") {
224 info.setClassName(StreamingTextView.class.getCanonicalName());
227 private class DottySpan extends ReplacementSpan {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ClassTest.java 39 public class ClassTest extends junit.framework.TestCase {
47 ClassTest.class.getPackage().getName().replace('.', '/');
52 public static class TestClass {
83 public static class SubTestClass extends TestClass {
87 * java.lang.Class#forName(java.lang.String)
90 assertSame("Class for name failed for java.lang.Object",
91 Object.class, Class.forName("java.lang.Object"));
92 assertSame("Class for name failed for [[Ljava.lang.Object;",
93 Object[][].class, Class.forName("[[Ljava.lang.Object;"))
    [all...]
  /libcore/libart/src/main/java/java/lang/
Daemons.java 33 public final class Daemons {
59 private static abstract class Daemon implements Runnable {
124 private static class ReferenceQueueDaemon extends Daemon {
131 synchronized (ReferenceQueue.class) {
133 ReferenceQueue.class.wait();
163 private static class FinalizerDaemon extends Daemon {
206 private static class FinalizerWatchdogDaemon extends Daemon {
303 private static class HeapTrimmerDaemon extends Daemon {
324 private static class GCDaemon extends Daemon {
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 72 public class EmailBroadcastProcessorService extends IntentService {
84 // Class name will be the thread name.
85 super(EmailBroadcastProcessorService.class.getName());
95 Intent i = new Intent(context, EmailBroadcastProcessorService.class);
102 final Intent i = new Intent(context, EmailBroadcastProcessorService.class);
113 Intent i = new Intent(context, EmailBroadcastProcessorService.class);
135 broadcastIntent.setClass(this, EmailIntentService.class);
146 private void disableComponent(final Class<?> klass) {
151 private boolean isComponentDisabled(final Class<?> klass) {
247 if (isComponentDisabled(EmailUpgradeBroadcastReceiver.class)) {
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
StatusBarNotifier.java 41 * This class adds Notifications to the status bar for the in-call experience.
43 public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
155 Log.i(StatusBarNotifier.class.getSimpleName(),
638 context, NotificationBroadcastReceiver.class);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 79 public class AddSupportJarAction implements IObjectActionDelegate {
118 .getAdapter(IProject.class);
170 AddSupportJarAction.class.getSimpleName(), // tag
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
AccessPermissionWithDiffSigTest.java 44 public class AccessPermissionWithDiffSigTest extends AndroidTestCase {
311 grantIntent.setClass(getContext(), ReceiveUriActivity.class);
322 grantIntent.setClass(getContext(), ReceiveUriActivity.class);
374 grantIntent.setClass(getContext(), ReceiveUriService.class);
383 grantIntent.setClass(getContext(), ReceiveUriService.class);
428 private static class GrantResultReceiver extends BroadcastReceiver {
503 service ? ReceiveUriService.class : ReceiveUriActivity.class);
515 service ? ReceiveUriService.class : ReceiveUriActivity.class);
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 33 public class LogRecordTest extends TestCase {
39 private static String className = LogRecordTest.class.getName();
119 lr.setSourceClassName("bad class name");
120 assertEquals("bad class name", lr.getSourceClassName());
128 lr.setSourceMethodName("bad class name");
129 assertEquals("bad class name", lr.getSourceMethodName());
138 // find class and method who called logger
153 // only set source class to null
168 // test if LogRecord is constructed in another class, and is published
178 assertEquals(RecordFactory.class.getName(), handle
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_config.c 885 btif_config_set_str(section, key, "class", "smart phone");
907 char class[128] = {0}; local
917 size = sizeof(class);
918 ret = btif_config_get_str(section, key, "class", class, &size);
919 bdld("btif_config_get_str return:%d, Remote devices:%s, class:%s", ret, key, class);
933 size = sizeof(class);
935 btif_config_set("Remote", "00:22:5F:97:56:04", "Class Delete", class, strlen(class) + 1, BTIF_CFG_TYPE_STR)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGrammar.y 335 %type <selector> class
1222 | class
1227 class: label
1230 $$->setMatch(CSSSelector::Class);
    [all...]
  /external/libvorbis/lib/
floor1.c 861 int class=info->partitionclass[i]; local
862 int cdim=info->class_dim[class];
863 int csubbits=info->class_subs[class];
874 int booknum=info->class_subbook[class][k];
878 maxval[k]=sbooks[info->class_subbook[class][k]]->entries;
894 vorbis_book_encode(books+info->class_book[class],cval,opb);
901 vb->pcmend/2,posts-2,class);
911 int book=info->class_subbook[class][bookas[k]];
925 vb->pcmend/2,posts-2,class,bookas[k]);
985 int class=info->partitionclass[i] local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 73 public final class SIPRequest extends SIPMessage implements javax.sip.message.Request, RequestExt {
201 sprint(SIPRequest.class.getName());
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TextViewTest.java 35 @RunWith(WithTestDefaultsRunner.class)
36 public class TextViewTest {
150 assertEquals(view.getTransformationMethod().getClass(), ShadowPasswordTransformationMethod.class);
207 TextWatcher mockTextWatcher = mock(TextWatcher.class);
218 TextWatcher mockTextWatcher = mock(TextWatcher.class);
247 TextWatcher mockTextWatcher = mock(TextWatcher.class);
258 TextWatcher mockTextWatcher = mock(TextWatcher.class);
337 Typeface typeface = Robolectric.newInstanceOf(Typeface.class);
393 private static class TestOnEditorActionListener implements TextView.OnEditorActionListener {
405 private static class MockTextWatcher implements TextWatcher
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_1x.c 1231 u8 *class; local
    [all...]
  /frameworks/base/core/java/android/widget/
AdapterView.java 42 * <div class="special reference">
48 public abstract class AdapterView<T extends Adapter> extends ViewGroup {
406 public static class AdapterContextMenuInfo implements ContextMenu.ContextMenuInfo {
798 class AdapterDataSetObserver extends DataSetObserver {
855 private class SelectionNotifier implements Runnable {
942 info.setClassName(AdapterView.class.getName());
953 event.setClassName(AdapterView.class.getName());
    [all...]
FrameLayout.java 63 public class FrameLayout extends ViewGroup {
704 event.setClassName(FrameLayout.class.getName());
710 info.setClassName(FrameLayout.class.getName());
716 * for a list of all child view attributes that this class supports.
720 public static class LayoutParams extends MarginLayoutParams {
MediaController.java 50 * The way to use this class is to instantiate it programatically.
72 public class MediaController extends FrameLayout {
631 event.setClassName(MediaController.class.getName());
637 info.setClassName(MediaController.class.getName());
TimePickerClockDelegate.java 48 class TimePickerClockDelegate extends TimePicker.AbstractTimePickerDelegate {
432 event.setClassName(TimePicker.class.getName());
437 info.setClassName(TimePicker.class.getName());
561 private static class SavedState extends View.BaseSavedState {
VideoView.java 56 * Displays a video file. The VideoView class
72 public class VideoView extends SurfaceView
207 event.setClassName(VideoView.class.getName());
213 info.setClassName(VideoView.class.getName());
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 50 public class ScrollingTabContainerView extends HorizontalScrollView
362 private class TabView extends LinearLayout implements OnLongClickListener {
397 event.setClassName(ActionBar.Tab.class.getName());
404 info.setClassName(ActionBar.Tab.class.getName());
516 private class TabAdapter extends BaseAdapter {
543 private class TabClickListener implements OnClickListener {
555 protected class VisibilityAnimListener implements Animator.AnimatorListener {
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
WapPushTest.java 45 * -e class com.android.smspush.unitTests.WapPushTest \
48 public class WapPushTest extends ServiceTestCase<WapPushManager> {
457 super(WapPushManager.class);
470 getContext().bindService(new Intent(IDataVerify.class.getName()),
482 startIntent.setClass(getContext(), WapPushManager.class);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java 187 public class ConnectivityService extends IConnectivityManager.Stub {
446 * for example, more that one wifi network. This class stores all the
458 private class LegacyTypeTracker {
588 // This class needs its own log method because it has a different TAG.
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 55 public class ScrollingTabContainerView extends HorizontalScrollView
371 private class TabView extends LinearLayoutCompat implements OnLongClickListener {
417 event.setClassName(ActionBar.Tab.class.getName());
426 info.setClassName(ActionBar.Tab.class.getName());
539 private class TabAdapter extends BaseAdapter {
566 private class TabClickListener implements OnClickListener {
578 protected class VisibilityAnimListener implements ViewPropertyAnimatorListener {
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 44 public class OldCollectionsTest extends TestCase {
353 class Mock_Collection implements Collection {
406 class Mock_WrongCollection implements Collection {
613 Collections.<String>emptySet(), String.class), s, false);
628 assertSerialized(Collections.checkedList(new ArrayList<String>(), String.class), s, true);
641 assertSerialized(Collections.checkedList(new LinkedList<String>(), String.class), s, true);
654 assertSerialized(Collections.checkedSet(new HashSet<String>(), String.class), s, true);
668 new HashMap<String, String>(), String.class, String.class), s);
683 assertSerialized(Collections.checkedSortedSet(new TreeSet<String>(), String.class), s, true)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java 33 public class AnnotationTest extends TestCase {
36 Annotation [] annotations = AnnotatedClass.class.getDeclaredAnnotations();
39 assertEquals(TestAnnotation1.class, anno.annotationType());
44 Method m1 = AnnotatedClass2.class
45 .getDeclaredMethod("a", new Class[] {});
46 Method m2 = AnnotatedClass2.class
47 .getDeclaredMethod("b", new Class[] {});
48 assertFalse("other annotation class type",
53 List<Method> methods = Arrays.asList(AnnotatedClass.class.getDeclaredMethods());
66 mlist.add(AnnotatedClass.class.getDeclaredMethod(name, new Class[] {}))
    [all...]

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>