Searched defs:context (Results 251 - 275 of 2663) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/com/android/internal/widget/
H A DDialogViewAnimator.java33 public DialogViewAnimator(Context context) { argument
34 super(context);
37 public DialogViewAnimator(Context context, AttributeSet attrs) { argument
38 super(context, attrs);
H A DDrawingSpace.java29 public DrawingSpace(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
30 super(context, attrs, defStyleAttr, defStyleRes);
33 public DrawingSpace(Context context, AttributeSet attrs, int defStyleAttr) { argument
34 this(context, attrs, defStyleAttr, 0);
37 public DrawingSpace(Context context, AttributeSet attrs) { argument
38 this(context, attrs, 0);
41 public DrawingSpace(Context context) { argument
42 this(context, null);
H A DLinearLayoutWithDefaultTouchRecepient.java39 public LinearLayoutWithDefaultTouchRecepient(Context context) { argument
40 super(context);
43 public LinearLayoutWithDefaultTouchRecepient(Context context, AttributeSet attrs) { argument
44 super(context, attrs);
H A DNotificationExpandButton.java31 public NotificationExpandButton(Context context) { argument
32 super(context);
35 public NotificationExpandButton(Context context, @Nullable AttributeSet attrs) { argument
36 super(context, attrs);
39 public NotificationExpandButton(Context context, @Nullable AttributeSet attrs, argument
41 super(context, attrs, defStyleAttr);
44 public NotificationExpandButton(Context context, @Nullable AttributeSet attrs, int defStyleAttr, argument
46 super(context, attrs, defStyleAttr, defStyleRes);
H A DPasswordEntryKeyboardView.java31 public PasswordEntryKeyboardView(Context context, AttributeSet attrs) { argument
32 this(context, attrs, 0);
35 public PasswordEntryKeyboardView(Context context, AttributeSet attrs, int defStyleAttr) { argument
36 this(context, attrs, defStyleAttr, 0);
40 Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
41 super(context, attrs, defStyleAttr, defStyleRes);
39 PasswordEntryKeyboardView( Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) argument
H A DPreferenceImageView.java28 public PreferenceImageView(Context context) { argument
29 this(context, null);
32 public PreferenceImageView(Context context, AttributeSet attrs) { argument
33 this(context, attrs, 0);
36 public PreferenceImageView(Context context, AttributeSet attrs, int defStyleAttr) { argument
37 this(context, attrs, defStyleAttr, 0);
40 public PreferenceImageView(Context context, AttributeSet attrs, int defStyleAttr, argument
42 super(context, attrs, defStyleAttr, defStyleRes);
H A DWeightedLinearLayout.java38 public WeightedLinearLayout(Context context) { argument
39 super(context);
42 public WeightedLinearLayout(Context context, AttributeSet attrs) { argument
43 super(context, attrs);
46 context.obtainStyledAttributes(attrs, styleable.WeightedLinearLayout);
/frameworks/base/core/java/com/android/server/backup/
H A DNotificationBackupHelper.java37 public NotificationBackupHelper(Context context) { argument
39 // context is currently unused
H A DUsageStatsBackupHelper.java29 public UsageStatsBackupHelper(Context context) { argument
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java52 * @param context the context for fetching smiley resources.
55 public CharSequence getSpannableString(Context context) { argument
73 builder.setSpan(new ImageSpan(context, resid),
/frameworks/base/core/tests/coretests/src/android/app/
H A DLoaderLifecycleTest.java219 public TestFragmentHostCallback(Context context, Handler handler, int windowAnimations) { argument
220 super(context, handler, windowAnimations);
/frameworks/base/core/tests/coretests/src/android/view/
H A DCreateViewTest.java119 public ViewOne(Context context) { argument
120 super(context);
H A DPreDrawListener.java45 public MyLinearLayout(Context context, AttributeSet attrs) { argument
46 super(context, attrs);
49 public MyLinearLayout(Context context) { argument
50 super(context);
H A DViewAttachView.java35 public ViewAttachView(Context context, AttributeSet attrs, int defStyle) { argument
36 super(context, attrs, defStyle);
40 public ViewAttachView(Context context, AttributeSet attrs) { argument
41 super(context, attrs);
45 public ViewAttachView(Context context) { argument
46 super(context);
H A DViewGroupAttributesTest.java29 public MyViewGroup(Context context) { argument
30 super(context);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfButtons.java57 public MyAdapter(Context context, String[] labels) { argument
58 super(context, 0, labels);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListItemsExpandOnSelection.java65 public ExpandWhenSelectedView(Context context, int desiredHeight) { argument
66 super(context);
/frameworks/base/keystore/java/android/security/
H A DKeyStoreParameter.java33 * provider. The {@code context} passed in may be used to pop up some UI to ask
107 * {@code context}. The {@code context} passed in may be used to pop up
111 public Builder(@NonNull Context context) { argument
112 if (context == null) {
113 throw new NullPointerException("context == null");
/frameworks/base/location/java/android/location/
H A DGeocoderParams.java48 public GeocoderParams(Context context, Locale locale) { argument
50 mPackageName = context.getPackageName();
H A DGnssMeasurementCallbackTransport.java33 public GnssMeasurementCallbackTransport(Context context, ILocationManager locationManager) { argument
34 super(context, "GnssMeasurementListenerTransport");
H A DGnssNavigationMessageCallbackTransport.java34 Context context,
36 super(context, "GnssNavigationMessageCallbackTransport");
33 GnssNavigationMessageCallbackTransport( Context context, ILocationManager locationManager) argument
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DFilterEffect.java40 protected FilterEffect(EffectContext context, String name) { argument
41 mEffectContext = context;
60 * Call this before manipulating the GL context. Will assert that the GL environment is in a
69 * Call this after manipulating the GL context. Restores the previous GL state.
76 * Returns the active filter context for this effect.
H A DSizeChangeEffect.java31 public SizeChangeEffect(EffectContext context, argument
37 super(context, name, filterClass, inputName, outputName, finalParameters);
/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DBackDropperEffect.java82 public BackDropperEffect(EffectContext context, String name) { argument
83 super(context, name, mGraphDefinition, "foreground", "output", OneShotScheduler.class);
94 } else if (parameterKey.equals("context")) {
96 background.setInputValue("context", value);
H A DIdentityEffect.java29 public IdentityEffect(EffectContext context, String name) { argument
30 super(context, name);

Completed in 4610 milliseconds

<<11121314151617181920>>