HomeSort by relevance Sort by last modified time
    Searched full:context (Results 276 - 300 of 12809) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java 19 import android.content.Context;
34 public MocContextThemeWrapper(Context base, int themeres) {
54 Context context = getContext(); local
56 context, SYSTEM_DEFAULT_THEME);
68 Context context = getContext(); local
70 MocContextThemeWrapper contextThemeWrapper = new MocContextThemeWrapper(context, themeres);
73 // All service get from contextThemeWrapper just the same as this context get,
74 // except Context.LAYOUT_INFLATER_SERVICE
    [all...]
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
PicasaSource.java 21 import android.content.Context;
84 public static MediaItem getFaceItem(Context context, MediaItem item, int faceIndex) {
124 public static String getUserAccount(Context context, MediaObject image) {
128 public static ParcelFileDescriptor openFile(Context context, MediaObject image, String mode)
133 public static void initialize(Context context) {/*do nothing*/}
135 public static void requestSync(Context context) {/*do nothing*/
    [all...]
  /cts/tests/src/android/widget/cts/
MockLinearLayout.java 19 import android.content.Context;
29 public MockLinearLayout(Context context, AttributeSet attrs) {
30 super(context, attrs);
33 public MockLinearLayout(Context context) {
34 super(context);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureGLSurfaceView.java 21 import android.content.Context;
32 public SurfaceTextureGLSurfaceView(Context context, OnSurfaceChangedListener listener) {
33 this(context, null, listener);
36 public SurfaceTextureGLSurfaceView(Context context, AttributeSet attributeSet,
38 super(context, attributeSet);
  /cts/tests/tests/preference2/src/android/preference2/cts/
CustomDialogPreference.java 20 import android.content.Context;
29 public CustomDialogPreference(Context context, AttributeSet attrs) {
30 super(context, attrs);
36 public CustomDialogPreference(Context context, AttributeSet attrs, int defStyle) {
37 super(context, attrs, defStyle);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
CheckableFrameLayout.java 19 import android.content.Context;
28 public CheckableFrameLayout(Context context) {
29 super(context);
32 public CheckableFrameLayout(Context context, AttributeSet attrs) {
33 super(context, attrs);
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboardView.java 19 import android.content.Context;
30 public LatinKeyboardView(Context context, AttributeSet attrs) {
31 super(context, attrs);
34 public LatinKeyboardView(Context context, AttributeSet attrs, int defStyle) {
35 super(context, attrs, defStyle);
  /development/samples/Support13Demos/src/com/example/android/supportv13/view/
CheckableFrameLayout.java 19 import android.content.Context;
28 public CheckableFrameLayout(Context context) {
29 super(context);
32 public CheckableFrameLayout(Context context, AttributeSet attrs) {
33 super(context, attrs);
  /development/samples/Support4Demos/src/com/example/android/supportv4/view/
CheckableFrameLayout.java 19 import android.content.Context;
28 public CheckableFrameLayout(Context context) {
29 super(context);
32 public CheckableFrameLayout(Context context, AttributeSet attrs) {
33 super(context, attrs);
  /external/skia/include/gpu/gl/
SkGLContext.h 15 * Create an offscreen opengl context with an RGBA8 / 8bit stencil FBO.
16 * Provides a GrGLInterface struct of function pointers for the context.
27 * Initializes the context and makes it current.
41 * Subclass implements this to make a GL context. The returned GrGLInterface
42 * should be populated with functions compatible with the context. The
49 * Subclass should destroy the underlying GL context.
64 * Helper macro for using the GL context through the GrGLInterface. Example:
  /frameworks/av/libvideoeditor/osal/inc/
LVOSA_FileReader_optim.h 61 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context,
65 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context,
71 M4OSA_ERR M4OSA_fileReadData_optim( M4OSA_Context context,
74 M4OSA_ERR M4OSA_fileReadSeek_optim( M4OSA_Context context,
77 M4OSA_ERR M4OSA_fileReadClose_optim( M4OSA_Context context );
78 M4OSA_ERR M4OSA_fileReadGetOption_optim( M4OSA_Context context,
81 M4OSA_ERR M4OSA_fileReadSetOption_optim( M4OSA_Context context,
  /frameworks/base/core/java/android/content/
MutableContextWrapper.java 20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) {
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) {
  /frameworks/base/core/java/android/widget/
ImageSwitcher.java 19 import android.content.Context;
29 public ImageSwitcher(Context context)
31 super(context);
34 public ImageSwitcher(Context context, AttributeSet attrs) {
35 super(context, attrs);
  /frameworks/base/core/java/com/android/internal/policy/
IPolicy.java 19 import android.content.Context;
32 public Window makeNewWindow(Context context);
34 public LayoutInflater makeNewLayoutInflater(Context context);
38 public FallbackEventHandler makeNewFallbackEventHandler(Context context);
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboardView.java 19 import android.content.Context;
31 public PasswordEntryKeyboardView(Context context, AttributeSet attrs) {
32 super(context, attrs);
35 public PasswordEntryKeyboardView(Context context, AttributeSet attrs, int defStyle) {
36 super(context, attrs, defStyle);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationIconArea.java 19 import android.content.Context;
38 public NotificationIconArea(Context context, AttributeSet attrs) {
39 super(context, attrs);
45 public IconLayout(Context context, AttributeSet attrs) {
46 super(context, attrs);
  /frameworks/support/v4/ics/android/support/v4/widget/
SearchViewCompatIcs.java 19 import android.content.Context;
29 public MySearchView(Context context) {
30 super(context);
42 public static View newSearchView(Context context) {
43 return new MySearchView(context);
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 19 import android.content.Context;
35 * @param context The application context for the item.
37 AddNewBookmark(Context context) {
38 super(context);
41 LayoutInflater factory = LayoutInflater.from(context);
  /packages/apps/Browser/src/com/android/browser/preferences/
NonformattingListPreference.java 18 import android.content.Context;
26 public NonformattingListPreference(Context context) {
27 super(context);
30 public NonformattingListPreference(Context context, AttributeSet attrs) {
31 super(context, attrs);
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorViewPager.java 19 import android.content.Context;
24 public CalculatorViewPager(Context context) {
25 super(context);
28 public CalculatorViewPager(Context context, AttributeSet attrs) {
29 super(context, attrs);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
CalendarColorSquare.java 19 import android.content.Context;
33 public CalendarColorSquare(Context context, AttributeSet attrs) {
34 super(context, attrs);
37 public CalendarColorSquare(Context context, AttributeSet attrs, int defStyle) {
38 super(context, attrs, defStyle);
  /packages/apps/Camera/src/com/android/camera/ui/
LayoutNotifyView.java 19 import android.content.Context;
29 public LayoutNotifyView(Context context) {
30 super(context);
33 public LayoutNotifyView(Context context, AttributeSet attrs) {
34 super(context, attrs);
TwoStateImageView.java 19 import android.content.Context;
31 public TwoStateImageView(Context context, AttributeSet attrs) {
32 super(context, attrs);
35 public TwoStateImageView(Context context) {
36 this(context, null);
  /packages/apps/Contacts/src/com/android/contacts/widget/
NotifyingSpinner.java 19 import android.content.Context;
35 public NotifyingSpinner(Context context) {
36 super(context);
39 public NotifyingSpinner(Context context, AttributeSet attrs) {
40 super(context, attrs);
  /packages/apps/DeskClock/src/com/android/alarmclock/
AnalogAppWidgetProvider.java 25 import android.content.Context;
36 public void onReceive(Context context, Intent intent) {
40 RemoteViews views = new RemoteViews(context.getPackageName(),
44 PendingIntent.getActivity(context, 0,
45 new Intent(context, DeskClock.class), 0));
50 AppWidgetManager gm = AppWidgetManager.getInstance(context);

Completed in 1253 milliseconds

<<11121314151617181920>>