HomeSort by relevance Sort by last modified time
    Searched refs:Application (Results 26 - 50 of 138) sorted by null

12 3 4 5 6

  /frameworks/base/core/java/android/app/
AppGlobals.java 27 * Return the first Application object made in the process.
30 public static Application getInitialApplication() {
Service.java 34 * A Service is an application component representing either an application's desire
44 * <p>Note that services, like other application objects, run in the main
79 * it runs in the same process as the application it is part of.
81 * of the main thread (to avoid Application Not Responding errors).
87 * <li>A facility for the application to tell the system <em>about</em>
89 * directly interacting with the application). This corresponds to calls to
93 * <li>A facility for an application to expose some of its functionality to
216 * foreground application, but in practice this should not be a concern.)
228 * <p>Other application components running in the same process as the servic
    [all...]
  /external/chromium/chrome/browser/
background_application_list_model.cc 45 // Background application representation, private to the
47 class BackgroundApplicationListModel::Application
50 Application(BackgroundApplicationListModel* model,
53 virtual ~Application();
109 BackgroundApplicationListModel::Application::~Application() {
112 BackgroundApplicationListModel::Application::Application(
121 void BackgroundApplicationListModel::Application::OnImageLoaded(
131 void BackgroundApplicationListModel::Application::RequestIcon
168 Application* application = FindApplication(extension); local
215 const Application* application = FindApplication(extension); local
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
AppletHarness.java 54 public static final HashMap<Application, Applet> appToApplet
55 = new HashMap<Application, Applet>();
59 private Application app;
65 public static Applet getApplet(Application app){
80 // Called before application has been created ....
107 Class<? extends Application> clazz = (Class<? extends Application>) Class.forName(appClass);
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
AppHarness.java 35 import com.jme3.app.Application;
56 private Application app;
82 Class<? extends Application> clazz = (Class<? extends Application>) Class.forName(appClass);
TestApplet.java 35 import com.jme3.app.Application;
49 private static Application app;
65 Class<? extends Application> clazz = (Class<? extends Application>) Class.forName(appClass);
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 19 import android.app.Application;
39 * <p>For more information about application testing, read the
82 * associated {@link android.app.Application Application}. The ServiceTestCase framework
104 private Application mApplication;
148 * (Context, Application) to it. This is called automatically by {@link #startService} or
215 * object refers to a communication channel between the application and
224 * method. An example of this is in the ApiDemos sample application, in the
296 * Sets the application that is used during the test. If you do not call this method,
299 * @param application The Application object that is used by the service under test
    [all...]
ApplicationTestCase.java 21 import android.app.Application;
26 * This test case provides a framework in which you can test Application classes in
28 * Application, and hooks by which you can inject various dependencies and control
29 * the environment in which your Application is tested.
32 * Every Application is designed to be accessed within a specific sequence of
33 * method calls (see {@link android.app.Application} for more details).
34 * In order to support the lifecycle of a Application, this test case will make the
42 * automatically called, and it will stop & destroy your application by calling its
47 * Every Application has one inherent dependency, the {@link android.content.Context Context} in
52 * <p>If simply run your tests as-is, your Application will be injected with a fully-functiona
    [all...]
ActivityUnitTestCase.java 20 import android.app.Application;
79 private Application mApplication;
178 * Set the application for use during the test. You must call this function before calling
180 * @param application The Application object that will be injected into the Activity under test.
182 public void setApplication(Application application) {
183 mApplication = application;
  /external/jmonkeyengine/engine/src/test/jme3test/app/state/
TestAppStates.java 35 import com.jme3.app.Application;
41 public class TestAppStates extends Application {
  /hardware/ti/wlan/mac80211/ti-utils/
Android.mk 27 # UIM Application
  /hardware/ti/wpan/tools/kfmapp/
Android.mk 11 ## Kerenl FM Driver Test Application
  /cts/tests/tests/app/src/android/app/cts/
ApplicationTest.java 21 import android.app.Application;
28 * Test {@link Application}.
  /gdk/build/core/
default-application.mk 16 # This is the default Application.mk that is being used for applications
17 # that don't provide $PROJECT_PATH/jni/Application.mk
  /ndk/build/core/
default-application.mk 16 # This is the default Application.mk that is being used for applications
17 # that don't provide $PROJECT_PATH/jni/Application.mk
add-application.mk 16 # this script is used to record an application definition in the
20 # variable named '_application_mk' which points to a given Application.mk
22 # to describe the application to the build system, and the rest of the
95 $(call ndk_log,Application $(_app) targets unknown platform '$(_bad_platform)')
118 $(call __ndk_info,Application $(_app) targets unknown ABI '$(_bad_abis)')
149 # Determine whether the application should be debuggable.
158 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
160 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
172 $(call ndk_log,Application '$(_app)' *is* debuggable)
174 $(call ndk_log,Application '$(_app)' is not debuggable
    [all...]
main.mk 43 # Read all application configuration files
45 # Each 'application' must have a corresponding Application.mk file
68 You can also add new applications by writing an Application.mk file.)
70 See docs/APPLICATION-MK.TXT for details.)
84 # Check that all apps listed in APP have an Application.mk
87 $(eval _application_mk := $(strip $(wildcard $(NDK_ROOT)/apps/$(_app)/Application.mk))) \
90 $(eval include $(BUILD_SYSTEM)/add-application.mk)\
93 Missing file: apps/$(_app)/Application.mk !)\
103 The NDK could not find a proper application description under apps/*/Application.mk
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/
Application.java 25 public class Application {
28 System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Draw 9-patch");
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
DebugKeysAppState.java 57 private Application app;
65 public void initialize(AppStateManager stateManager, Application app) {
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestAppStateLifeCycle.java 35 import com.jme3.app.Application;
84 public void initialize(AppStateManager stateManager, Application app) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryAppImpl.java 19 import android.app.Application;
32 public class GalleryAppImpl extends Application implements GalleryApp {
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 20 import android.app.Application;
33 * <p>Uses {@link Application#registerActivityLifecycleCallbacks} to hook
39 implements Application.ActivityLifecycleCallbacks {
47 final List<NfcApplicationState> mApps; // Application(s) that have NFC state. Usually one
51 * NFC State associated with an {@link Application}.
55 final Application app;
56 public NfcApplicationState(Application app) {
75 NfcApplicationState findAppState(Application app) {
84 void registerApplication(Application app) {
93 void unregisterApplication(Application app)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/state/
AppStateManager.java 35 import com.jme3.app.Application;
60 * after the state has been detached or when the application is
91 private final Application app;
94 public AppStateManager(Application app){
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
SoundTrack.java 35 import com.jme3.app.Application;
109 public void initEvent(Application app, Cinematic cinematic) {
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 3 import com.jme3.app.Application;
36 public void initialize(AppStateManager stateManager, Application app) {

Completed in 470 milliseconds

12 3 4 5 6