Searched defs:context (Results 176 - 200 of 1847) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/widget/
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/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/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.java30 * provider. The {@code context} passed in may be used to pop up some UI to ask
88 * {@code context}. The {@code context} passed in may be used to pop up
92 public Builder(Context context) { argument
93 if (context == null) {
94 throw new NullPointerException("context == null");
/frameworks/base/libs/hwui/
H A DAnimationContext.h47 AnimationContext& context() { return mContext; } function in class:android::uirenderer::AnimationHandle
60 AnimationHandle(AnimationContext& context);
61 AnimationHandle(RenderNode& animatingNode, AnimationContext& context);
/frameworks/base/location/java/android/location/
H A DGeocoderParams.java48 public GeocoderParams(Context context, Locale locale) { argument
50 mPackageName = context.getPackageName();
H A DGpsMeasurementListenerTransport.java33 public GpsMeasurementListenerTransport(Context context, ILocationManager locationManager) { argument
34 super(context, "GpsMeasurementListenerTransport");
H A DGpsNavigationMessageListenerTransport.java34 Context context,
36 super(context, "GpsNavigationMessageListenerTransport");
33 GpsNavigationMessageListenerTransport( 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);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgramPort.java44 public synchronized void transfer(FilterContext context) { argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameBranch.java51 public void process(FilterContext context) { argument
H A DFrameFetch.java50 public void process(FilterContext context) { argument
51 Frame output = context.fetchFrame(mKey);
H A DFrameSource.java51 public void process(FilterContext context) { argument
H A DGLTextureSource.java66 public void fieldPortValueUpdated(String name, FilterContext context) { argument
75 public void process(FilterContext context) { argument
81 mFrame = context.getFrameManager().newBoundFrame(outputFormat,
97 public void tearDown(FilterContext context) { argument
H A DInputStreamSource.java62 public void process(FilterContext context) { argument
83 Frame output = context.getFrameManager().newFrame(mOutputFormat);

Completed in 1415 milliseconds

1234567891011>>