Searched defs:context (Results 76 - 100 of 1847) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPreloadReceiver.java25 public void onReceive(Context context, Intent intent) { argument
27 RecentTasksLoader.getInstance(context).preloadRecentTasksList();
29 RecentTasksLoader.getInstance(context).cancelPreloadingRecentTasksList();
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DToggleSeekBar.java25 public ToggleSeekBar(Context context) { argument
26 super(context);
29 public ToggleSeekBar(Context context, AttributeSet attrs) { argument
30 super(context, attrs);
33 public ToggleSeekBar(Context context, AttributeSet attrs, int defStyleAttr) { argument
34 super(context, attrs, defStyleAttr);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAlphaImageView.java28 public AlphaImageView(Context context) { argument
29 super(context);
32 public AlphaImageView(Context context, AttributeSet attrs) { argument
33 super(context, attrs);
36 public AlphaImageView(Context context, AttributeSet attrs, int defStyleAttr) { argument
37 super(context, attrs, defStyleAttr);
40 public AlphaImageView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
41 super(context, attrs, defStyleAttr, defStyleRes);
H A DAlphaOptimizedFrameLayout.java30 public AlphaOptimizedFrameLayout(Context context) { argument
31 super(context);
34 public AlphaOptimizedFrameLayout(Context context, AttributeSet attrs) { argument
35 super(context, attrs);
38 public AlphaOptimizedFrameLayout(Context context, AttributeSet attrs, int defStyleAttr) { argument
39 super(context, attrs, defStyleAttr);
42 public AlphaOptimizedFrameLayout(Context context, AttributeSet attrs, int defStyleAttr, argument
44 super(context, attrs, defStyleAttr, defStyleRes);
H A DAlphaOptimizedImageView.java30 public AlphaOptimizedImageView(Context context) { argument
31 super(context);
34 public AlphaOptimizedImageView(Context context, AttributeSet attrs) { argument
35 super(context, attrs);
38 public AlphaOptimizedImageView(Context context, AttributeSet attrs, int defStyleAttr) { argument
39 super(context, attrs, defStyleAttr);
42 public AlphaOptimizedImageView(Context context, AttributeSet attrs, int defStyleAttr, argument
44 super(context, attrs, defStyleAttr, defStyleRes);
H A DAlphaOptimizedView.java29 public AlphaOptimizedView(Context context) { argument
30 super(context);
33 public AlphaOptimizedView(Context context, AttributeSet attrs) { argument
34 super(context, attrs);
37 public AlphaOptimizedView(Context context, AttributeSet attrs, int defStyleAttr) { argument
38 super(context, attrs, defStyleAttr);
41 public AlphaOptimizedView(Context context, AttributeSet attrs, int defStyleAttr, argument
43 super(context, attrs, defStyleAttr, defStyleRes);
H A DEmptyShadeView.java31 public EmptyShadeView(Context context, AttributeSet attrs) { argument
32 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java31 public IconPulser(Context context) { argument
32 mFastOutSlowInInterpolator = AnimationUtils.loadInterpolator(context,
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DDrmReceiver.java34 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetService.java30 public AppWidgetService(Context context) { argument
31 super(context);
32 mImpl = new AppWidgetServiceImpl(context);
/frameworks/base/services/core/java/com/android/server/
H A DMasterClearReceiver.java32 public void onReceive(final Context context, final Intent intent) { argument
49 RecoverySystem.rebootWipeUserData(context, shutdown, reason);
/frameworks/base/services/core/java/com/android/server/am/
H A DFactoryErrorDialog.java26 public FactoryErrorDialog(Context context, CharSequence msg) { argument
27 super(context);
29 setTitle(context.getText(com.android.internal.R.string.factorytest_failed));
32 context.getText(com.android.internal.R.string.factorytest_reboot),
H A DLaunchWarningWindow.java30 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) { argument
31 super(context, R.style.Theme_Toast);
39 setTitle(context.getText(R.string.launch_warning_title));
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
48 text.setText(context.getResources().getString(R.string.launch_warning_replace,
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
51 icon.setImageDrawable(cur.info.applicationInfo.loadIcon(context.getPackageManager()));
53 text.setText(context.getResources().getString(R.string.launch_warning_original,
54 cur.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserReceiver.java28 public void onReceive(Context context, Intent intent) { argument
H A DStartEmpty.java26 public void onReceive(Context context, Intent intent) { argument
H A DUserTarget.java29 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorfulnessFilter.java41 public ColorfulnessFilter(MffContext context, String name) { argument
42 super(context, name);
H A DFrameSlotTarget.java23 public FrameSlotTarget(MffContext context, String name, String slotName) { argument
24 super(context, name, slotName);
H A DResizeFilter.java25 public ResizeFilter(MffContext context, String name) { argument
26 super(context, name);
H A DSlotFilter.java23 protected SlotFilter(MffContext context, String name, String slotName) { argument
24 super(context, name);
H A DToStringFilter.java28 public ToStringFilter(MffContext context, String name) { argument
29 super(context, name);
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DGridLayoutTest.java30 public ViewGroup create(Context context) { argument
31 GridLayout container = new GridLayout(context);
44 View v = create(context, VERTICAL_NAMES[i] + "-" + HORIZONTAL_NAMES[j], 20);
H A DLayoutInsetsTest.java19 public static View create(Context context) { argument
22 GridLayout p = new GridLayout(context);
32 TextView tv = new TextView(context);
37 Button b = new Button(context);
H A DLinearLayoutTest.java28 public ViewGroup create(Context context) { argument
29 LinearLayout container = new LinearLayout(context);
38 View v = create(context, VERTICAL_NAMES[i] + "-" + HORIZONTAL_NAMES[j], 20);
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DOnePlayerService.java26 public static Intent getServiceIntent(Context context) { argument
27 return new Intent(context, OnePlayerService.class).setPackage(

Completed in 3325 milliseconds

1234567891011>>