Searched refs:context (Results 276 - 300 of 1275) sorted by relevance

<<11121314151617181920>>

/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DIdentityEffect.java29 public IdentityEffect(EffectContext context, String name) { argument
30 super(context, name);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameFetch.java52 public void process(FilterContext context) { argument
53 Frame output = context.fetchFrame(mKey);
H A DNullFilter.java40 public void process(FilterContext context) { argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java112 public void initProgram(FilterContext context, int target) { argument
115 ShaderProgram shaderProgram = new ShaderProgram(context, mNoiseShader);
119 shaderProgram = new ShaderProgram(context, mGrainShader);
150 public void fieldPortValueUpdated(String name, FilterContext context) { argument
157 public void process(FilterContext context) { argument
168 Frame noiseFrame = context.getFrameManager().newFrame(inputFormat);
171 Frame output = context.getFrameManager().newFrame(inputFormat);
175 initProgram(context, inputFormat.getTarget());
H A DToRGBAFilter.java68 public void createProgram(FilterContext context, FrameFormat format) { argument
85 public void process(FilterContext context) { argument
88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
H A DToRGBFilter.java68 public void createProgram(FilterContext context, FrameFormat format) { argument
85 public void process(FilterContext context) { argument
88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneLayoutInflater.java36 * @param context The Context in which in which to find resources and other
41 public PhoneLayoutInflater(Context context) { argument
42 super(context);
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java122 * @param context the current application context
129 public static void addWord(Context context, String word, argument
144 addWord(context, word, frequency, null, locale);
150 * @param context the current application context
158 public static void addWord(Context context, String word, argument
160 final ContentResolver resolver = context.getContentResolver();
/frameworks/base/core/java/android/webkit/
H A DCertTool.java52 static String getSignedPublicKey(Context context, int index, String challenge) { argument
63 Credentials.getInstance().install(context, pair);
71 static void addCertificate(Context context, String type, byte[] value) { argument
72 Credentials.getInstance().install(context, type, value);
/frameworks/base/core/java/android/widget/
H A DDigitalClock.java54 public DigitalClock(Context context) { argument
55 super(context);
59 public DigitalClock(Context context, AttributeSet attrs) { argument
60 super(context, attrs);
H A DPopupMenu.java59 * @param context Context for the PopupMenu.
63 public PopupMenu(Context context, View anchor) { argument
65 mContext = context;
66 mMenu = new MenuBuilder(context);
69 mPopup = new MenuPopupHelper(context, mMenu, anchor);
H A DViewSwitcher.java41 * @param context the application's environment
43 public ViewSwitcher(Context context) { argument
44 super(context);
48 * Creates a new empty ViewSwitcher for the given context and with the
51 * @param context the application environment
54 public ViewSwitcher(Context context, AttributeSet attrs) { argument
55 super(context, attrs);
/frameworks/base/core/java/com/android/internal/view/
H A DActionBarPolicy.java34 public static ActionBarPolicy get(Context context) { argument
35 return new ActionBarPolicy(context);
38 private ActionBarPolicy(Context context) { argument
39 mContext = context;
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DResultReceiver.java34 public void onReceive(Context context, Intent intent) argument
/frameworks/base/graphics/java/android/renderscript/
H A DRSTextureView.java47 public RSTextureView(Context context) { argument
48 super(context);
59 public RSTextureView(Context context, AttributeSet attrs) { argument
60 super(context, attrs);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardPINView.java36 public KeyguardPINView(Context context) { argument
37 this(context, null);
40 public KeyguardPINView(Context context, AttributeSet attrs) { argument
41 super(context, attrs);
/frameworks/base/services/java/com/android/server/location/
H A DGeocoderProxy.java41 public static GeocoderProxy createAndBind(Context context, argument
43 GeocoderProxy proxy = new GeocoderProxy(context, initialPackageNames, userId);
51 public GeocoderProxy(Context context, List<String> initialPackageNames, int userId) { argument
52 mContext = context;
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserReceiver.java28 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DLayoutInsetsTest.java20 public static View create(Context context) { argument
23 GridLayout p = new GridLayout(context);
33 TextView tv = new TextView(context);
38 Button b = new Button(context);
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h79 static bool GenerateBitCodeAccessor(const BitCodeAccessorContext &context);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java33 public SingleRecipientArrayAdapter(Context context, int resourceId, RecipientEntry entry) { argument
34 super(context, resourceId, new RecipientEntry[] {
37 mLayoutInflater = LayoutInflater.from(context);
54 private void bindView(View view, Context context, RecipientEntry entry) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterSurfaceView.java42 public FilterSurfaceView(Context context) { argument
43 super(context);
47 public FilterSurfaceView(Context context, AttributeSet attrs) { argument
48 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAirplaneModeController.java41 public AirplaneModeController(Context context, CompoundButton checkbox) { argument
42 mContext = context;
50 context.registerReceiver(this, filter);
65 public void onReceive(Context context, Intent intent) { argument
H A DVolumeController.java43 public VolumeController(Context context, ToggleSlider control) { argument
44 mContext = context;
47 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
50 mAudioManager = (AudioManager)context.getSystemService(Context.AUDIO_SERVICE);
/frameworks/base/core/java/android/text/style/
H A DURLSpan.java59 Context context = widget.getContext();
61 intent.putExtra(Browser.EXTRA_APPLICATION_ID, context.getPackageName());
62 context.startActivity(intent);

Completed in 2364 milliseconds

<<11121314151617181920>>