Searched defs:application (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DServiceTestCase.java36 * <p>For more information about application testing, read the
218 * object refers to a communication channel between the application and
227 * method. An example of this is in the ApiDemos sample application, in the
300 * Sets the application that is used during the test. If you do not call this method,
303 * @param application The Application object that is used by the service under test.
307 public void setApplication(Application application) { argument
308 mApplication = application;
314 * @return The application object.
H A DActivityUnitTestCase.java187 * Set the application for use during the test. You must call this function before calling
189 * @param application The Application object that will be injected into the Activity under test.
191 public void setApplication(Application application) { argument
192 mApplication = application;
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp4 * Starts the interpreted runtime, then starts up the application.
215 // --application : Start in application (stand alone, non zygote) mode.
267 bool application = false; local
279 } else if (strcmp(arg, "--application") == 0) {
280 application = true;
295 // to RuntimeInit is the application argument.
299 args.add(application ? String8("application") : String8("tool"));
/frameworks/base/core/java/android/app/
H A DService.java38 * A Service is an application component representing either an application's desire
48 * <p>Note that services, like other application objects, run in the main
83 * it runs in the same process as the application it is part of.
91 * <li>A facility for the application to tell the system <em>about</em>
93 * directly interacting with the application). This corresponds to calls to
97 * <li>A facility for an application to expose some of its functionality to
228 * foreground application, but in practice this should not be a concern.)
240 * <p>Other application components running in the same process as the service
249 * running alongside other parts of an application, i
757 attach( Context context, ActivityThread thread, String className, IBinder token, Application application, Object activityManager) argument
[all...]
H A DInstrumentation.java60 * Base class for implementing application instrumentation code. When running
62 * before any of the application code, allowing you to monitor all of the
63 * interaction the system has with the application. An Instrumentation
130 * Called when the instrumentation is starting, before any application code
137 * loop so that the application can run), you can simply begin your
139 * begin the appropriate first activity of the application.
163 * application, so that it can perform blocking operation such as
174 * was thrown by the application. The default implementation simply
191 * Provide a status report about the application.
221 * Terminate instrumentation of the application
1142 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
[all...]
H A DContextImpl.java140 * context object for Activity and other application components.
349 // At least one application in the world actually passes in a null
1989 public Context createApplicationContext(ApplicationInfo application, int flags) argument
1991 LoadedApk pi = mMainThread.getPackageInfo(application, mResources.getCompatibilityInfo(),
1995 new UserHandle(UserHandle.getUserId(application.uid)), flags, null);
2008 "Application package " + application.packageName + " not found");
2022 // The system resources are loaded in every application, so we can safely copy
2302 // location for application.
H A DActivity.java180 * <p>The Activity class is an important part of an application's overall lifecycle,
182 * part of the platform's application model. For a detailed perspective on the structure of an
183 * Android application and how activities behave, please read the
199 * screens, and help scale their application between small and large screens.
415 * vs. those targeting prior platforms. Starting with Honeycomb, an application
418 * safely called after {@link #onPause()} and allows and application to safely
447 * <p>This is done because any application resource,
579 * preferences that are shared across multiple application components
584 * (Note that it is not possible to share settings data across application
644 * <p>The Android system attempts to keep application proces
6902 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, Window window, ActivityConfigCallback activityConfigCallback) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContextWrapper.java844 public Context createApplicationContext(ApplicationInfo application, argument
846 return mBase.createApplicationContext(application, flags);
H A DContext.java80 * Interface to global information about an application environment. This is
83 * allows access to application-specific resources and classes, as well as
84 * up-calls for application-level operations such as launching activities,
121 * be accessed by the calling application (or all applications sharing the
178 * sometimes desired in cases where the application has multiple
282 * Flag for {@link #bindService}: indicates that the client application
304 * just like a regular application process in the background.
332 * @hide Flag for {@link #bindService}: allows application hosting service to manage whitelists
394 * calling application's package, rather than the package in which the service is declared.
397 * application'
4488 createApplicationContext(ApplicationInfo application, @CreatePackageOptions int flags) argument
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java705 public Context createApplicationContext(ApplicationInfo application, int flags) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java213 * @param targetSdkVersion the targetSdkVersion of the application.
1341 public Context createApplicationContext(ApplicationInfo application, int flags) argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2187 * @param application The application whose content is shown by the views.
2192 protected RemoteViews(ApplicationInfo application, int layoutId) { argument
2193 mApplication = application;
3264 // RemoteViews may be built by an application installed in another
3618 // Get the application for the passed in package and user.
3619 Application application = ActivityThread.currentApplication();
3620 if (application == null) {
3624 ApplicationInfo applicationInfo = application.getApplicationInfo();
3628 Context context = application
[all...]
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java221 InputApplicationHandle application);
621 "Injecting to another application requires INJECT_EVENTS permission");
1538 public void setFocusedApplication(InputApplicationHandle application) { argument
1539 nativeSetFocusedApplication(mPtr, application);
220 nativeSetFocusedApplication(long ptr, InputApplicationHandle application) argument
/frameworks/base/tools/aapt/
H A DResource.cpp936 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
937 if (application != NULL) {
938 if (!addTagAttribute(application, RESOURCES_ANDROID_NAMESPACE, "debuggable", "true",
962 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
963 if (application != NULL) {
964 fullyQualifyClassName(origPackage, application, String16("name"));
965 fullyQualifyClassName(origPackage, application, String16("backupAgent"));
967 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application
999 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
[all...]

Completed in 426 milliseconds