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

1 2 3 4

  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.cpp 30 ContextWrapper::ContextWrapper (void)
35 ContextWrapper::~ContextWrapper (void)
39 void ContextWrapper::setContext (Context* context)
44 Context* ContextWrapper::getCurrentContext (void) const
49 int ContextWrapper::getWidth (void) const
54 int ContextWrapper::getHeight (void) const
59 void ContextWrapper::glViewport (int x, int y, int width, int height)
64 void ContextWrapper::glActiveTexture (deUint32 texture
    [all...]
  /frameworks/base/core/java/android/content/
MutableContextWrapper.java 20 * Special version of {@link ContextWrapper} that allows the base context to
23 public class MutableContextWrapper extends ContextWrapper {
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LayoutInflaterTest.java 3 import android.content.ContextWrapper;
27 assertSame(LayoutInflater.from(new ContextWrapper(Robolectric.application)), layoutInflater);
AlertDialogTest.java 17 import android.content.ContextWrapper;
33 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextWrapper(null));
53 AlertDialog dialog = new AlertDialog.Builder(new ContextWrapper(null)).show();
59 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextWrapper(null));
69 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextWrapper(null));
78 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextWrapper(null));
104 ContextWrapper context = new ContextWrapper(null);
115 ContextWrapper context = new ContextWrapper(null)
    [all...]
ContextWrapperTest.java 7 import android.content.ContextWrapper;
33 private ContextWrapper contextWrapper;
37 contextWrapper = new ContextWrapper(new Activity());
43 contextWrapper.registerReceiver(receiver, intentFilter("foo", "baz"));
45 contextWrapper.sendBroadcast(new Intent("foo"));
48 contextWrapper.sendBroadcast(new Intent("womp"));
51 contextWrapper.sendBroadcast(new Intent("baz"));
58 contextWrapper.registerReceiver(larryReceiver, intentFilter("foo", "baz"))
    [all...]
AppWidgetManagerTest.java 7 import android.content.ContextWrapper;
36 assertSame(AppWidgetManager.getInstance(new ContextWrapper(Robolectric.application)), appWidgetManager);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
TintContextWrapper.java 20 import android.content.ContextWrapper;
25 * A {@link android.content.ContextWrapper} which returns a tint-aware
30 public class TintContextWrapper extends ContextWrapper {
  /cts/tests/tests/widget/src/android/widget/cts/
QuickContactBadgeTest.java 21 import android.content.ContextWrapper;
42 final Context context = new ContextWrapper(getInstrumentation().getContext()) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
ContextThemeWrapper.java 20 import android.content.ContextWrapper;
27 * A ContextWrapper that allows you to modify the theme from what is in the
32 public class ContextThemeWrapper extends ContextWrapper {
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
ContactsMockContext.java 21 import android.content.ContextWrapper;
34 public class ContactsMockContext extends ContextWrapper {
  /external/deqp/modules/glshared/
glsLifetimeTests.hpp 80 class ContextWrapper : public CallLogWrapper
94 ContextWrapper (const Context& ctx);
98 class Binder : public ContextWrapper
107 Binder (const Context& ctx) : ContextWrapper(ctx) {}
135 class Type : public ContextWrapper
149 Type (const Context& ctx) : ContextWrapper(ctx) {}
209 class Attacher : public ContextWrapper
225 : ContextWrapper (ctx)
234 class InputAttacher : public ContextWrapper
241 : ContextWrapper (attacher.getContext()
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_QuickContactsTest.java 21 import android.content.ContextWrapper;
47 Context context = new ContextWrapper(getInstrumentation().getContext()) {
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 21 import android.content.ContextWrapper;
26 * A ContextWrapper that allows you to modify the theme from what is in the
29 public class ContextThemeWrapper extends ContextWrapper {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
StartedMatcher.java 5 import android.content.ContextWrapper;
46 Intent actualStartedIntent = shadowOf((ContextWrapper) actualContext).getNextStartedActivity();
StartedServiceMatcher.java 5 import android.content.ContextWrapper;
55 Intent actualStartedIntent = shadowOf((ContextWrapper) actualContext).getNextStartedService();
  /frameworks/base/core/java/android/app/
Service.java 23 import android.content.ContextWrapper;
300 public abstract class Service extends ContextWrapper implements ComponentCallbacks2 {
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
EmlMessageLoaderTest.java 22 import android.content.ContextWrapper;
44 Context wrappedContext = new ContextWrapper(context) {
  /cts/tests/tests/content/src/android/content/cts/
MockContextWrapperService.java 20 import android.content.ContextWrapper;
28 * This class is used for {@link ContextWrapper}
  /external/deqp/modules/gles3/functional/
es3fFboTestCase.hpp 43 class FboTestCase : public TestCase, public sglr::ContextWrapper
  /external/deqp/modules/gles31/functional/
es31fFboTestCase.hpp 43 class FboTestCase : public TestCase, public sglr::ContextWrapper
  /frameworks/base/services/tests/servicestests/src/com/android/server/
BroadcastInterceptingContext.java 21 import android.content.ContextWrapper;
38 * {@link ContextWrapper} that can attach listeners for upcoming
41 public class BroadcastInterceptingContext extends ContextWrapper {
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 28 import android.content.ContextWrapper;
49 public class IsolatedContext extends ContextWrapper {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseVoicemailProviderTest.java 22 import android.content.ContextWrapper;
175 return new ContextWrapper(getContext()) {
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 7 import android.content.ContextWrapper;
89 } else if (context instanceof ContextWrapper) {
90 return get(((ContextWrapper) context).getBaseContext());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
RobolectricPackageManager.java 10 import android.content.ContextWrapper;
28 private ContextWrapper contextWrapper;
32 public RobolectricPackageManager(ContextWrapper contextWrapper, RobolectricConfig config) {
33 this.contextWrapper = contextWrapper;
205 packageInfo.packageName = contextWrapper.getPackageName();

Completed in 1454 milliseconds

1 2 3 4