Searched defs:context (Results 1 - 25 of 1847) sorted by path

1234567891011>>

/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h49 downmix_object_t context; member in struct:downmix_module_s
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.h296 reverb_object_t context; member in struct:reverb_module_s
362 * Pointer to reverb context
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp262 EGLContext context; local
269 context = eglCreateContext(display, config, NULL, NULL);
273 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE)
277 mContext = context;
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
H A DInstrumentationUiAutomatorBridge.java34 public InstrumentationUiAutomatorBridge(Context context, UiAutomation uiAutomation) { argument
36 mContext = context;
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java706 public IAccessibilityServiceClientWrapper(Context context, Looper looper, argument
709 mCaller = new HandlerCaller(context, looper, this, true /*asyncHandler*/);
H A DAccessibilityServiceInfo.java199 * semantics in the context of the screen content. For example, a three by three
202 * In this context the actual layout mangers used to achieve the grid configuration
433 * @param context Context for accessing resources.
439 public AccessibilityServiceInfo(ResolveInfo resolveInfo, Context context) argument
448 PackageManager packageManager = context.getPackageManager();
516 throw new XmlPullParserException( "Unable to create context for: "
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java113 public AbstractAccountAuthenticator(Context context) { argument
114 mContext = context;
H A DAccountManager.java124 * the current foreground {@link Activity} context.
252 public AccountManager(Context context, IAccountManager service) { argument
253 mContext = context;
261 public AccountManager(Context context, IAccountManager service, Handler handler) { argument
262 mContext = context;
293 * @param context The {@link Context} to use when necessary
296 public static AccountManager get(Context context) { argument
297 if (context == null) throw new IllegalArgumentException("context is null");
298 return (AccountManager) context
[all...]
H A DChooseAccountActivity.java159 public AccountArrayAdapter(Context context, int textViewResourceId, AccountInfo[] infos) { argument
160 super(context, textViewResourceId, infos);
162 mLayoutInflater = (LayoutInflater) context.getSystemService(
H A DChooseAccountTypeActivity.java175 public AccountArrayAdapter(Context context, int textViewResourceId, argument
177 super(context, textViewResourceId, infos);
179 mLayoutInflater = (LayoutInflater) context.getSystemService(
/frameworks/base/core/java/android/animation/
H A DAnimatorInflater.java80 * @param context Application context used to access resources
85 public static Animator loadAnimator(Context context, int id) argument
87 return loadAnimator(context.getResources(), context.getTheme(), id);
153 public static StateListAnimator loadStateListAnimator(Context context, int id) argument
155 final Resources resources = context.getResources();
158 final Theme theme = context.getTheme();
166 animator = createStateListAnimatorFromXml(context, parser, Xml.asAttributeSet(parser));
201 private static StateListAnimator createStateListAnimatorFromXml(Context context, argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java645 * context of an activity BroadcastReceiver or Service to ensure that the system
1538 * {@link Intent#ACTION_ASSIST} Intent with all of the context of the current
2921 * For context menus ({@link Window#FEATURE_CONTEXT_MENU}), the
3178 * Called when a context menu for the {@code view} is about to be shown.
3180 * time the context menu is about to be shown and should be populated for
3187 * It is not safe to hold onto the context menu after this method returns.
3194 * Registers a context menu to be shown for the given view (multiple views
3195 * can show the context menu). This method will set the
3198 * called when it is time to show the context menu.
3201 * @param view The view that should show a context men
5309 onCreateView(String name, Context context, AttributeSet attrs) argument
5323 onCreateView(View parent, String name, Context context, AttributeSet attrs) argument
5922 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config, String referrer, IVoiceInteractor voiceInteractor) argument
[all...]
H A DActivityManager.java311 /*package*/ ActivityManager(Context context, Handler handler) { argument
312 mContext = context;
1149 * the context that the new recents entry will be in.
2386 static int getLauncherLargeIconSizeInner(Context context) { argument
2387 final Resources res = context.getResources();
2765 public void startActivity(Context context, Intent intent, Bundle options) { argument
2767 thread.getInstrumentation().execStartActivityFromAppTask(context,
H A DActivityOptions.java166 * @param context Who is defining this. This is the application that the
175 public static ActivityOptions makeCustomAnimation(Context context, argument
177 return makeCustomAnimation(context, enterResId, exitResId, null, null);
184 * @param context Who is defining this. This is the application that the
199 public static ActivityOptions makeCustomAnimation(Context context, argument
202 opts.mPackageName = context.getPackageName();
214 * @param context Who is defining this. This is the application that the
222 public static ActivityOptions makeCustomInPlaceAnimation(Context context, int animId) { argument
228 opts.mPackageName = context.getPackageName();
H A DActivityThread.java541 ContextImpl context; field in class:ActivityThread.ContextCleanupInfo
1418 cci.context.performFinalCleanup(cci.who, cci.what);
1530 Context context = getSystemContext();
1531 if(context == null) {
1532 Log.e(TAG, "cannot get a valid context");
1535 PackageManager pm = context.getPackageManager();
2193 final void scheduleContextCleanup(ContextImpl context, String who, argument
2196 cci.context = context;
2606 ContextImpl context
4580 installContentProviders( Context context, List<ProviderInfo> providers) argument
4953 installProvider(Context context, IActivityManager.ContentProviderHolder holder, ProviderInfo info, boolean noisy, boolean noReleaseNeeded, boolean stable) argument
[all...]
H A DActivityView.java62 public ActivityView(Context context) { argument
63 this(context, null);
66 public ActivityView(Context context, AttributeSet attrs) { argument
67 this(context, attrs, 0);
70 public ActivityView(Context context, AttributeSet attrs, int defStyle) { argument
71 super(context, attrs, defStyle);
73 while (context instanceof ContextWrapper) {
74 if (context instanceof Activity) {
75 mActivity = (Activity)context;
78 context
[all...]
H A DAlertDialog.java108 protected AlertDialog(Context context) { argument
109 this(context, resolveDialogTheme(context, 0), true);
120 protected AlertDialog(Context context, int theme) { argument
121 this(context, theme, true);
124 AlertDialog(Context context, int theme, boolean createThemeContextWrapper) { argument
125 super(context, resolveDialogTheme(context, theme), createThemeContextWrapper);
131 protected AlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) { argument
132 super(context, resolveDialogThem
139 resolveDialogTheme(Context context, int resid) argument
378 Builder(Context context) argument
393 Builder(Context context, int theme) argument
[all...]
H A DAppImportanceMonitor.java75 public AppImportanceMonitor(Context context, Looper looper) { argument
76 mContext = context;
89 ActivityManager am = (ActivityManager)context.getSystemService(Context.ACTIVITY_SERVICE);
H A DAppOpsManager.java946 AppOpsManager(Context context, IAppOpsService service) { argument
947 mContext = context;
H A DApplication.java38 * more modular way. If your singleton needs a global context (for example
71 * {@link Intent#ACTION_ASSIST} Intent with all of the context of the current
180 /* package */ final void attach(Context context) { argument
181 attachBaseContext(context);
182 mLoadedApk = ContextImpl.getImpl(context).mPackageInfo;
H A DApplicationErrorReport.java159 public static ComponentName getErrorReportReceiver(Context context, argument
162 int enabled = Settings.Global.getInt(context.getContentResolver(),
168 PackageManager pm = context.getPackageManager();
H A DApplicationPackageManager.java987 ApplicationPackageManager(ContextImpl context, argument
989 mContext = context;
H A DContextImpl.java207 * context object for Activity and other application components.
773 static ContextImpl getImpl(Context context) { argument
775 while ((context instanceof ContextWrapper) &&
776 (nextContext=((ContextWrapper)context).getBaseContext()) != null) {
777 context = nextContext;
779 return (ContextImpl)context;
882 throw new RuntimeException("Not supported in system context");
890 throw new RuntimeException("Not supported in system context");
898 throw new RuntimeException("Not supported in system context");
1240 + " context require
1634 registerReceiverInternal(BroadcastReceiver receiver, int userId, IntentFilter filter, String broadcastPermission, Handler scheduler, Context context) argument
2342 setOuterContext(Context context) argument
2444 ApplicationContentResolver( Context context, ActivityThread mainThread, UserHandle user) argument
2452 acquireProvider(Context context, String auth) argument
2459 acquireExistingProvider(Context context, String auth) argument
[all...]
H A DDatePickerDialog.java71 * @param context The context the dialog is to run in.
77 public DatePickerDialog(Context context, argument
82 this(context, 0, callBack, year, monthOfYear, dayOfMonth);
85 static int resolveDialogTheme(Context context, int resid) { argument
88 context.getTheme().resolveAttribute(R.attr.datePickerDialogTheme, outValue, true);
96 * @param context The context the dialog is to run in.
103 public DatePickerDialog(Context context, int theme, OnDateSetListener listener, int year, argument
105 super(context, resolveDialogThem
[all...]
H A DDialog.java127 * @param context The Context the Dialog is to run it. In particular, it
128 * uses the window manager and theme in this context to
131 public Dialog(Context context) { argument
132 this(context, 0, true);
138 * @param context The Context in which the Dialog should run. In particular, it
139 * uses the window manager and theme from this context to
145 * <var>context</var>. If 0, the default dialog theme will be used.
147 public Dialog(Context context, int theme) { argument
148 this(context, theme, true);
151 Dialog(Context context, in argument
179 Dialog(Context context, boolean cancelable, Message cancelCallback) argument
186 Dialog(Context context, boolean cancelable, OnCancelListener cancelListener) argument
[all...]

Completed in 233 milliseconds

1234567891011>>