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

<<11121314151617181920>>

/frameworks/base/core/java/android/view/animation/
H A DAnticipateInterpolator.java42 public AnticipateInterpolator(Context context, AttributeSet attrs) { argument
43 TypedArray a = context.obtainStyledAttributes(attrs,
H A DDecelerateInterpolator.java43 public DecelerateInterpolator(Context context, AttributeSet attrs) { argument
45 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.DecelerateInterpolator);
H A DLayoutAnimationController.java98 * @param context the Context the view group is running in, through which
103 public LayoutAnimationController(Context context, AttributeSet attrs) { argument
104 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.LayoutAnimation);
114 setAnimation(context, resource);
119 setInterpolator(context, resource);
175 * @param context the context from which the animation must be inflated
183 public void setAnimation(Context context, int resourceID) { argument
184 setAnimation(AnimationUtils.loadAnimation(context, resourceID));
220 * @param context th
228 setInterpolator(Context context, int resourceID) argument
[all...]
H A DOvershootInterpolator.java43 public OvershootInterpolator(Context context, AttributeSet attrs) { argument
44 TypedArray a = context.obtainStyledAttributes(attrs,
/frameworks/base/core/java/android/webkit/
H A DPluginList.java109 public synchronized void pluginClicked(Context context, int position) { argument
112 plugin.dispatchClickEvent(context);
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothRebootStressTest.java39 Context context = getInstrumentation().getTargetContext();
40 mTestUtils = new BluetoothTestUtils(context, TAG, OUTPUT_FILE);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DRemoteReceiver.java32 public void onReceive(Context context, Intent intent) argument
37 context.sendOrderedBroadcast(newIntent, null);
/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
91 * {@code context}. The {@code context} passed in may be used to pop up
95 public Builder(Context context) { argument
96 if (context == null) {
97 throw new NullPointerException("context == null");
/frameworks/base/media/java/android/mtp/
H A DMtpStorage.java38 public MtpStorage(StorageVolume volume, Context context) { argument
41 mDescription = context.getResources().getString(volume.getDescriptionId());
/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);
/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());
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DPackageReceiver.java30 public void onReceive(Context context, Intent intent) { argument
31 final ContentResolver resolver = context.getContentResolver();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardStatusView.java71 public KeyguardStatusView(Context context) { argument
72 this(context, null, 0);
75 public KeyguardStatusView(Context context, AttributeSet attrs) { argument
76 this(context, attrs, 0);
79 public KeyguardStatusView(Context context, AttributeSet attrs, int defStyle) { argument
80 super(context, attrs, defStyle);
147 static void update(Context context) { argument
149 final Resources res = context.getResources();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java34 public ExpandableNotificationRow(Context context, AttributeSet attrs) { argument
35 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DLocationController.java75 public LocationController(Context context) { argument
76 mContext = context;
80 context.registerReceiver(this, filter);
82 mAppOpsManager = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
84 = (StatusBarManager) context.getSystemService(Context.STATUS_BAR_SERVICE);
89 context.registerReceiverAsUser(new BroadcastReceiver() {
91 public void onReceive(Context context, Intent intent) {
218 public void onReceive(Context context, Intent intent) { argument
/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/services/java/com/android/server/
H A DMasterClearReceiver.java32 public void onReceive(final Context context, final Intent intent) { argument
46 RecoverySystem.rebootWipeUserData(context);
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DService.java38 public Service(Context context, Transport transport, int serviceId) { argument
39 mContext = context;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DResizeFilter.java25 public ResizeFilter(MffContext context, String name) { argument
26 super(context, name);
H A DToStringFilter.java28 public ToStringFilter(MffContext context, String name) { argument
29 super(context, name);
H A DVariableSource.java28 public VariableSource(MffContext context, String name) { argument
29 super(context, name);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
H A DFrameSourceFilter.java32 FrameSourceFilter(MffContext context, String name) { argument
33 super(context, name);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DBigGradientActivity.java37 public BigGradientView(Context context) { argument
38 super(context);
/frameworks/base/tests/RenderScriptTests/HelloWorld/src/com/example/android/rs/helloworld/
H A DHelloWorldView.java26 // Renderscipt context
31 public HelloWorldView(Context context) { argument
32 super(context);

Completed in 851 milliseconds

<<11121314151617181920>>