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
212 * object refers to a communication channel between the application and
221 * method. An example of this is in the ApiDemos sample application, in the
294 * Sets the application that is used during the test. If you do not call this method,
297 * @param application The Application object that is used by the service under test.
301 public void setApplication(Application application) { argument
302 mApplication = application;
308 * @return The application object.
H A DActivityUnitTestCase.java183 * Set the application for use during the test. You must call this function before calling
185 * @param application The Application object that will be injected into the Activity under test.
187 public void setApplication(Application application) { argument
188 mApplication = application;
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp4 * Starts the interpreted runtime, then starts up the application.
213 // --application : Start in application (stand alone, non zygote) mode.
241 bool application = false; local
253 } else if (strcmp(arg, "--application") == 0) {
254 application = true;
269 // to RuntimeInit is the application argument.
273 args.add(application ? String8("application") : String8("tool"));
/frameworks/base/core/java/android/app/
H A DService.java35 * A Service is an application component representing either an application's desire
45 * <p>Note that services, like other application objects, run in the main
80 * it runs in the same process as the application it is part of.
88 * <li>A facility for the application to tell the system <em>about</em>
90 * directly interacting with the application). This corresponds to calls to
94 * <li>A facility for an application to expose some of its functionality to
225 * foreground application, but in practice this should not be a concern.)
237 * <p>Other application components running in the same process as the service
246 * running alongside other parts of an application, i
700 attach( Context context, ActivityThread thread, String className, IBinder token, Application application, Object activityManager) argument
[all...]
H A DContextImpl.java123 * context object for Activity and other application components.
343 // At least one application in the world actually passes in a null
1658 public Context createApplicationContext(ApplicationInfo application, int flags) argument
1660 LoadedApk pi = mMainThread.getPackageInfo(application, mResources.getCompatibilityInfo(),
1665 new UserHandle(UserHandle.getUserId(application.uid)), restricted,
1673 "Application package " + application.packageName + " not found");
H A DInstrumentation.java56 * Base class for implementing application instrumentation code. When running
58 * before any of the application code, allowing you to monitor all of the
59 * interaction the system has with the application. An Instrumentation
102 * Called when the instrumentation is starting, before any application code
109 * loop so that the application can run), you can simply begin your
111 * begin the appropriate first activity of the application.
135 * application, so that it can perform blocking operation such as
146 * was thrown by the application. The default implementation simply
163 * Provide a status report about the application.
180 * Terminate instrumentation of the application
1037 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 DActivity.java157 * <p>The Activity class is an important part of an application's overall lifecycle,
159 * part of the platform's application model. For a detailed perspective on the structure of an
160 * Android application and how activities behave, please read the
176 * screens, and help scale their application between small and large screens.
392 * vs. those targeting prior platforms. Starting with Honeycomb, an application
395 * safely called after {@link #onPause()} and allows and application to safely
424 * <p>This is done because any application resource,
556 * preferences that are shared across multiple application components
561 * (Note that it is not possible to share settings data across application
621 * <p>The Android system attempts to keep application proces
6169 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...]
/frameworks/base/core/java/android/content/
H A DContextWrapper.java758 public Context createApplicationContext(ApplicationInfo application, argument
760 return mBase.createApplicationContext(application, flags);
H A DContext.java67 * Interface to global information about an application environment. This is
70 * allows access to application-specific resources and classes, as well as
71 * up-calls for application-level operations such as launching activities,
77 * be accessed by the calling application (or all applications sharing the
125 * sometimes desired in cases where the application has multiple
219 * Flag for {@link #bindService}: indicates that the client application
241 * just like a regular application process in the background.
315 /** Return an AssetManager instance for your application's package. */
318 /** Return a Resources instance for your application's package. */
324 /** Return a ContentResolver instance for your application'
3743 createApplicationContext(ApplicationInfo application, int flags) argument
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java634 public Context createApplicationContext(ApplicationInfo application, int flags) argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1757 * @param application The application whose content is shown by the views.
1762 protected RemoteViews(ApplicationInfo application, int layoutId) { argument
1763 mApplication = application;
2735 // RemoteViews may be built by an application installed in another
2887 // Get the application for the passed in package and user.
2888 Application application = ActivityThread.currentApplication();
2889 if (application == null) {
2893 ApplicationInfo applicationInfo = application.getApplicationInfo();
2897 Context context = application
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java183 * @param targetSdkVersion the targetSdkVersion of the application.
1236 public Context createApplicationContext(ApplicationInfo application, int flags) argument
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java184 InputApplicationHandle application);
557 "Injecting to another application requires INJECT_EVENTS permission");
1176 public void setFocusedApplication(InputApplicationHandle application) { argument
1177 nativeSetFocusedApplication(mPtr, application);
183 nativeSetFocusedApplication(long ptr, InputApplicationHandle application) argument
/frameworks/base/tools/aapt/
H A DResource.cpp872 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
873 if (application != NULL) {
874 if (!addTagAttribute(application, RESOURCES_ANDROID_NAMESPACE, "debuggable", "true",
898 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
899 if (application != NULL) {
900 fullyQualifyClassName(origPackage, application, String16("name"));
901 fullyQualifyClassName(origPackage, application, String16("backupAgent"));
903 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application
[all...]

Completed in 327 milliseconds