OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:class
(Results
76 - 100
of
282
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/core/java/android/widget/
EditText.java
50
public
class
EditText extends TextView {
123
event.setClassName(EditText.
class
.getName());
129
info.setClassName(EditText.
class
.getName());
SeekBar.java
36
public
class
SeekBar extends AbsSeekBar {
126
event.setClassName(SeekBar.
class
.getName());
132
info.setClassName(SeekBar.
class
.getName());
ViewSwitcher.java
32
public
class
ViewSwitcher extends ViewAnimator {
74
event.setClassName(ViewSwitcher.
class
.getName());
80
info.setClassName(ViewSwitcher.
class
.getName());
ZoomButton.java
29
public
class
ZoomButton extends ImageButton implements OnLongClickListener {
105
event.setClassName(ZoomButton.
class
.getName());
111
info.setClassName(ZoomButton.
class
.getName());
ZoomControls.java
33
* The {@code ZoomControls}
class
displays a simple set of controls used for zooming and
36
public
class
ZoomControls extends LinearLayout {
115
event.setClassName(ZoomControls.
class
.getName());
121
info.setClassName(ZoomControls.
class
.getName());
/libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java
27
public
class
ReferenceQueue<T> {
33
* Constructs a new instance of this
class
.
149
synchronized (ReferenceQueue.
class
) {
157
ReferenceQueue.
class
.notifyAll();
/libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java
22
public final
class
ConstructorTest extends TestCase {
24
Constructor<?> constructor = ConstructorTestHelper.
class
.getConstructor(new
Class
[0]);
25
Class
[] exceptions = constructor.getExceptionTypes();
27
assertEquals(IndexOutOfBoundsException.
class
, exceptions[0]);
29
exceptions[0] = NullPointerException.
class
;
32
assertEquals(IndexOutOfBoundsException.
class
, exceptions[0]);
36
Class
[] expectedParameters = new
Class
[] { Object.
class
};
[
all
...]
/packages/apps/Camera/tests/src/com/android/camera/functional/
CameraTest.java
34
public
class
CameraTest extends InstrumentationTestCase {
38
intent.setClass(getInstrumentation().getTargetContext(), CameraActivity.
class
);
61
CameraActivity.
class
);
/packages/apps/Camera2/tests/src/com/android/camera/functional/
CameraTest.java
34
public
class
CameraTest extends InstrumentationTestCase {
38
intent.setClass(getInstrumentation().getTargetContext(), CameraActivity.
class
);
61
CameraActivity.
class
);
/packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
CameraTest.java
38
public
class
CameraTest extends InstrumentationTestCase {
44
intent.setClass(getInstrumentation().getTargetContext(), VideoCamera.
class
);
58
checkActivityLeak(Camera.
class
);
59
checkActivityLeak(VideoCamera.
class
);
62
private void checkActivityLeak(
Class
<?> cls) throws Exception {
/packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java
33
public
class
NoConfirmationSendService extends IntentService {
35
//
Class
name will be the thread name.
36
super(NoConfirmationSendService.
class
.getName());
/libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java
32
public
class
SSLContextTest extends TestCase {
144
assertTrue(SSLSocketFactory.
class
.isAssignableFrom(sf.getClass()));
166
assertTrue(SSLServerSocketFactory.
class
.isAssignableFrom(ssf.getClass()));
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java
35
* The EmailServiceProxy
class
provides a simple interface for the UI to call into the various
39
* Use the
class
like this:
40
* new EmailServiceProxy(context,
class
).loadAttachment(attachmentId, callback)
49
public
class
EmailServiceProxy extends ServiceProxy implements IEmailService {
76
// The first two constructors are used with local services that can be referenced by
class
77
public EmailServiceProxy(Context _context,
Class
<?> _class) {
164
bundle.setClassLoader(Policy.
class
.getClassLoader());
194
bundle.setClassLoader(HostAuth.
class
.getClassLoader());
/packages/apps/Gallery2/src/com/android/photos/
GalleryActivity.java
36
public
class
GalleryActivity extends Activity implements MultiChoiceManager.Provider {
57
PhotoSetFragment.
class
, null);
59
AlbumSetFragment.
class
, null);
84
// Intent intent = new Intent(this, CameraActivity.
class
);
93
public static
class
TabsAdapter extends FragmentPagerAdapter implements
101
static final
class
TabInfo {
103
private final
Class
<?> clss;
106
TabInfo(
Class
<?> _class, Bundle _args) {
121
public void addTab(ActionBar.Tab tab,
Class
<?> clss, Bundle args) {
/packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
CameraStartUp.java
37
public
class
CameraStartUp extends InstrumentationTestCase {
50
intent.setClass(getInstrumentation().getTargetContext(), Camera.
class
);
72
intent.setClass(getInstrumentation().getTargetContext(), VideoCamera.
class
);
/sdk/files/
android.el
14
(defvar android-jdb-activity-
class
-history ()
36
(defcustom android-activity-
class
nil
37
"This is where your Android Activity
class
is stored."
106
(defun android-start-activity (package
class
)
107
"Start the activity PACKAGE/
CLASS
in the Android emulator. This expects the SDK tools directory to be in the current path."
111
(read-from-minibuffer "Activity Java
class
: "
112
(car android-jdb-activity-
class
-history)
115
'android-jdb-activity-
class
-history)))
116
(compile (format "adb shell am start -n %s/%s" package
class
)))
118
(defun android-debug-activity (package
class
)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsFragment.java
56
public final
class
SettingsFragment extends InputMethodSettingsFragment
58
private static final String TAG = SettingsFragment.
class
.getSimpleName();
97
ApplicationUtils.getAcitivityTitleResId(getActivity(), SettingsActivity.
class
));
132
context.getPackageName(), DebugSettingsActivity.
class
.getName());
215
intent.setClassName(context.getPackageName(), DictionarySettingsActivity.
class
.getName());
273
// TODO: Introduce a static function to register this
class
and ensure that
503
userDictionaryPreference.setFragment(UserDictionarySettings.
class
.getName());
505
// extras. This will be interpreted by the UserDictionarySettings
class
as
515
userDictionaryPreference.setFragment(UserDictionaryList.
class
.getName());
/cts/tests/tests/media/src/android/media/cts/
FaceDetector_FaceTest.java
30
public
class
FaceDetector_FaceTest extends InstrumentationTestCase {
37
intent.setClass(getInstrumentation().getTargetContext(), FaceDetectorStub.
class
);
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/
Test_return_object.java
29
public
class
Test_return_object extends DxTestCase {
107
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_3");
120
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_4");
133
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_16");
146
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_5");
160
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_10");
173
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_11");
190
Class
.forName("dxc.junit.opcodes.return_object.jm.T_return_object_14");
207
RunnerGenerator rg = (RunnerGenerator)
Class
.forName(
211
assertFalse(Runner.
class
.isAssignableFrom(r.getClass()))
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentLayout.java
43
public
class
FragmentLayout extends Activity {
59
public static
class
DetailsActivity extends Activity {
89
public static
class
TitlesFragment extends ListFragment {
166
intent.setClass(getActivity(), DetailsActivity.
class
);
179
public static
class
DetailsFragment extends Fragment {
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentLayoutSupport.java
44
public
class
FragmentLayoutSupport extends FragmentActivity {
60
public static
class
DetailsActivity extends FragmentActivity {
91
public static
class
TitlesFragment extends ListFragment {
165
intent.setClass(getActivity(), DetailsActivity.
class
);
178
public static
class
DetailsFragment extends Fragment {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_surface.c
484
unsigned handle = 0x88000000,
class
;
local
508
class
= NV04_SURFACE_2D_CLASS;
510
class
= NV10_SURFACE_2D_CLASS;
512
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->surf2d);
579
class
= NV04_SURFACE_SWZ_CLASS;
581
class
= NV20_SURFACE_SWZ_CLASS;
583
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->swzsurf);
592
class
= NV04_SIFM_CLASS;
594
class
= NV10_SIFM_CLASS;
596
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->sifm)
[
all
...]
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
bio_ber.c
79
int
class
;
member in struct:ber_struct
89
int
class
;
member in struct:bio_ber_struct
164
int
class
;
local
200
ret=ASN1_get_object(&p,&length,&tag,&
class
,max);
/external/guava/guava/src/com/google/common/base/internal/
Finalizer.java
32
* <p>While this
class
is public, we consider it to be *internal* and not part
34
*
class
loaders in secure environments.
36
* <p>This
class
can't depend on other Google Collections code. If we were
37
* to load this
class
in the same
class
loader as the rest of
39
* to the
class
loader and prevent it from being garbage collected. This
40
* poses a problem for environments where you want to throw away the
class
44
* <p>{@code com.google.common.base.FinalizableReferenceQueue} loads this
class
45
* in its own
class
loader. That way, this
class
doesn't prevent the mai
[
all
...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_surface.c
484
unsigned handle = 0x88000000,
class
;
local
508
class
= NV04_SURFACE_2D_CLASS;
510
class
= NV10_SURFACE_2D_CLASS;
512
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->surf2d);
579
class
= NV04_SURFACE_SWZ_CLASS;
581
class
= NV20_SURFACE_SWZ_CLASS;
583
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->swzsurf);
592
class
= NV04_SIFM_CLASS;
594
class
= NV10_SIFM_CLASS;
596
ret = nouveau_object_new(chan, handle++,
class
, NULL, 0, &hw->sifm)
[
all
...]
Completed in 3007 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>