Home
last modified time | relevance | path

Searched refs:Application (Results 1 – 25 of 395) sorted by relevance

12345678910>>...16

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/internal/
DClassNameResolverTest.java3 import android.app.Application;
12 …assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric… in shouldResolveClassesBySimpleName()
17 …assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric… in shouldResolveClassesByDottedSimpleName()
22 …assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric… in shouldResolveClassesByFullyQualifiedName()
27 …assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs", ".robolec… in shouldResolveClassesByPartiallyQualifiedName()
32 … new ClassNameResolver<Application>("com.xtremelabs", "robolectric.TestApplication").resolve(); in shouldNotResolveClassesByUndottedPartiallyQualifiedNameBecauseAndroidDoesnt()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
DApplicationResolver.java3 import android.app.Application;
20 public Application resolveApplication() { in resolveApplication()
24 Application application; in resolveApplication()
28 application = new Application(); in resolveApplication()
68 private Application newApplicationInstance(String packageName, String applicationName) { in newApplicationInstance()
69 Application application; in newApplicationInstance()
71 Class<? extends Application> applicationClass = in newApplicationInstance()
72 new ClassNameResolver<Application>(packageName, applicationName).resolve(); in newApplicationInstance()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
DGLVersion.java19 import com.badlogic.gdx.Application;
40 …public GLVersion (Application.ApplicationType appType, String versionString, String vendorString, … in GLVersion()
41 if (appType == Application.ApplicationType.Android) this.type = Type.GLES; in GLVersion()
42 else if (appType == Application.ApplicationType.iOS) this.type = Type.GLES; in GLVersion()
43 else if (appType == Application.ApplicationType.Desktop) this.type = Type.OpenGL; in GLVersion()
44 else if (appType == Application.ApplicationType.Applet) this.type = Type.OpenGL; in GLVersion()
45 else if (appType == Application.ApplicationType.WebGL) this.type = Type.WebGL; in GLVersion()
DGLFrameBuffer.java25 import com.badlogic.gdx.Application;
26 import com.badlogic.gdx.Application.ApplicationType;
52 …private final static Map<Application, Array<GLFrameBuffer>> buffers = new HashMap<Application, Arr…
330 private static void addManagedFrameBuffer (Application app, GLFrameBuffer frameBuffer) { in addManagedFrameBuffer()
339 public static void invalidateAllFrameBuffers (Application app) { in invalidateAllFrameBuffers()
349 public static void clearAllFrameBuffers (Application app) { in clearAllFrameBuffers()
355 for (Application app : buffers.keySet()) { in getManagedStatus()
/external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/
DDemoApplicationModule.java18 import android.app.Application;
32 private final Application application;
34 public DemoApplicationModule(Application application) { in DemoApplicationModule()
41 @Provides @Singleton Application application() { in application()
DApplicationComponent.java18 import android.app.Application;
33 Application application(); in application()
DDemoApplication.java18 import android.app.Application;
23 public class DemoApplication extends Application {
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
DApplicationResolverTest.java3 import android.app.Application;
25 assertEquals(Application.class, in shouldReturnDefaultAndroidApplicationWhenManifestDeclaresNoAppName()
37Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithPackageName.xm… in shouldAssignThePackageNameFromTheManifest()
43Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithAppName.xml"))… in shouldAssignTheApplicationNameFromTheManifest()
49Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithReceivers.xml"… in shouldRegisterReceiversFromTheManifest()
DTestApplication.java3 import android.app.Application;
5 public class TestApplication extends Application {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
DTextureArray.java19 import com.badlogic.gdx.Application;
36 …final static Map<Application, Array<TextureArray>> managedTextureArrays = new HashMap<Application,…
120 private static void addManagedTexture (Application app, TextureArray texture) { in addManagedTexture()
129 public static void clearAllTextureArrays (Application app) { in clearAllTextureArrays()
134 public static void invalidateAllTextureArrays (Application app) { in invalidateAllTextureArrays()
147 for (Application app : managedTextureArrays.keySet()) { in getManagedStatus()
DTexture.java22 import com.badlogic.gdx.Application;
49 …final static Map<Application, Array<Texture>> managedTextures = new HashMap<Application, Array<Tex…
202 private static void addManagedTexture (Application app, Texture texture) { in addManagedTexture()
210 public static void clearAllTextures (Application app) { in clearAllTextures()
215 public static void invalidateAllTextures (Application app) { in invalidateAllTextures()
285 for (Application app : managedTextures.keySet()) { in getManagedStatus()
DCubemap.java22 import com.badlogic.gdx.Application;
42 …final static Map<Application, Array<Cubemap>> managedCubemaps = new HashMap<Application, Array<Cub…
202 private static void addManagedCubemap (Application app, Cubemap cubemap) { in addManagedCubemap()
210 public static void clearAllCubemaps (Application app) { in clearAllCubemaps()
215 public static void invalidateAllCubemaps (Application app) { in invalidateAllCubemaps()
284 for (Application app : managedCubemaps.keySet()) { in getManagedStatus()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
DAppSingletonizer.java3 import android.app.Application;
18 Application applicationContext = (Application) context.getApplicationContext(); in getInstance()
32 protected T createInstance(Application applicationContext) { in createInstance()
/external/libgdx/extensions/gdx-controllers/gdx-controllers/src/com/badlogic/gdx/controllers/
DControllers.java19 import com.badlogic.gdx.Application;
24 import com.badlogic.gdx.Application.ApplicationType;
38 …static final ObjectMap<Application, ControllerManager> managers = new ObjectMap<Application, Contr…
110 final Application app = Gdx.app; in initialize()
/external/opencv3/samples/winrt/JavaScript/js/
Ddefault.js25 var url = WinJS.Application.sessionState.lastUrl || scenarios[0].url;
38 WinJS.Application.sessionState.lastUrl = url;
70 WinJS.Application.addEventListener("activated", activated, false);
71 WinJS.Application.start();
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
DAndroidInputFactory.java23 import com.badlogic.gdx.Application;
28 public static AndroidInput newAndroidInput (Application activity, Context context, Object view, in newAndroidInput()
40 Constructor<?> constructor = clazz.getConstructor(Application.class, Context.class, Object.class, in newAndroidInput()
/external/autotest/
DLGPL_LICENSE20 other than an Application or a Combined Work as defined below.
22 An "Application" is any work that makes use of an interface provided
28 Application with the Library. The particular version of the Library
35 based on the Application, and not on the Linked Version.
37 The "Corresponding Application Code" for a Combined Work means the
38 object code and/or source code for the Application, including any data
40 Application, but excluding the System Libraries of the Combined Work.
50 facility refers to a function or data to be supplied by an Application
56 ensure that, in the event an Application does not supply the
65 The object code form of an Application may incorporate material from
[all …]
DMODULE_LICENSE_LGPL20 other than an Application or a Combined Work as defined below.
22 An "Application" is any work that makes use of an interface provided
28 Application with the Library. The particular version of the Library
35 based on the Application, and not on the Linked Version.
37 The "Corresponding Application Code" for a Combined Work means the
38 object code and/or source code for the Application, including any data
40 Application, but excluding the System Libraries of the Combined Work.
50 facility refers to a function or data to be supplied by an Application
56 ensure that, in the event an Application does not supply the
65 The object code form of an Application may incorporate material from
[all …]
/external/elfutils/
DCOPYING-LGPLV320 other than an Application or a Combined Work as defined below.
22 An "Application" is any work that makes use of an interface provided
28 Application with the Library. The particular version of the Library
35 based on the Application, and not on the Linked Version.
37 The "Corresponding Application Code" for a Combined Work means the
38 object code and/or source code for the Application, including any data
40 Application, but excluding the System Libraries of the Combined Work.
50 facility refers to a function or data to be supplied by an Application
56 ensure that, in the event an Application does not supply the
65 The object code form of an Application may incorporate material from
[all …]
/external/ImageMagick/m4/
Dframework.m422 # other than an Application or a Combined Work as defined below.
24 # An "Application" is any work that makes use of an interface provided
30 # Application with the Library. The particular version of the Library
37 # based on the Application, and not on the Linked Version.
39 # The "Corresponding Application Code" for a Combined Work means the
40 # object code and/or source code for the Application, including any data
42 # Application, but excluding the System Libraries of the Combined Work.
52 # facility refers to a function or data to be supplied by an Application
58 # ensure that, in the event an Application does not supply the
67 # The object code form of an Application may incorporate material from
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DApplicationTest.java4 import android.app.Application;
45 Robolectric.application = new Application(); in setUp()
59 Application app1 = ShadowApplication.bind(new Application(), resourceLoader1); in shouldBeBindableToAResourceLoader()
64 Application app2 = ShadowApplication.bind(new Application(), resourceLoader2); in shouldBeBindableToAResourceLoader()
100Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithPackageName.xm… in packageManager_shouldKnowPackageName()
106Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithAppName.xml"))… in packageManager_shouldKnowApplicationName()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
DCustomRobolectricTestRunnerTest.java3 import android.app.Application;
70 @Override protected Application createApplication() { in createApplication()
75 public static class CustomApplication extends Application {
/external/ims/rcs/rcsservice/src/com/android/service/ims/
DRcsServiceApp.java31 import android.app.Application;
36 public class RcsServiceApp extends Application {
/external/sl4a/Common/src/com/googlecode/android_scripting/
DBaseApplication.java19 import android.app.Application;
24 public class BaseApplication extends Application {
/external/rmi4utils/
DMakefile17 ndk-build NDK_APPLICATION_MK=Application.mk
20 ndk-build NDK_APPLICATION_MK=Application.mk clean

12345678910>>...16