Searched defs:app (Results 1 - 25 of 103) sorted by relevance

12345

/external/jmonkeyengine/engine/src/test/jme3test/app/
H A DTestApplication.java33 package jme3test.app;
35 import com.jme3.app.Application;
47 Application app = new Application();
49 app.start();
53 app.stop();
57 app = new Application();
61 app.setSettings(settings);
62 app.start();
64 app.stop();
68 app
[all...]
H A DTestContextRestart.java33 package jme3test.app;
35 import com.jme3.app.Application;
43 final Application app = new Application();
44 app.setSettings(settings);
45 app.start();
51 app.setSettings(settings);
52 app.restart();
56 app.stop();
H A DTestChangeAppIcon.java32 package jme3test.app;
34 import com.jme3.app.SimpleApplication;
47 TestChangeAppIcon app = new TestChangeAppIcon();
62 app.setSettings(settings);
63 app.start();
71 helloText.setText("The icon of the app should be a smart monkey!");
H A DTestBareBonesApp.java33 package jme3test.app;
35 import com.jme3.app.Application;
48 TestBareBonesApp app = new TestBareBonesApp();
49 app.start();
H A DTestReleaseDirectMemory.java33 package jme3test.app;
35 import com.jme3.app.SimpleApplication;
47 TestReleaseDirectMemory app = new TestReleaseDirectMemory();
48 app.start();
H A DTestAppStateLifeCycle.java33 package jme3test.app;
35 import com.jme3.app.Application;
36 import com.jme3.app.SimpleApplication;
37 import com.jme3.app.state.AbstractAppState;
38 import com.jme3.app.state.AppStateManager;
47 * Tests the app state lifecycles.
54 TestAppStateLifeCycle app = new TestAppStateLifeCycle();
55 app.start();
84 public void initialize(AppStateManager stateManager, Application app) { argument
85 super.initialize(stateManager, app);
[all...]
H A DTestTempVars.java32 package jme3test.app;
/external/sonivox/jet_tools/JetCreator/
H A DJetHelp.py27 app = wx.PySimpleApp() variable
33 app.MainLoop()
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DResetStatsState.java32 package com.jme3.app;
34 import com.jme3.app.state.AbstractAppState;
H A DFlyCamAppState.java32 package com.jme3.app;
34 import com.jme3.app.state.AbstractAppState;
35 import com.jme3.app.state.AppStateManager;
46 private Application app; field in class:FlyCamAppState
64 public void initialize(AppStateManager stateManager, Application app) { argument
65 super.initialize(stateManager, app);
67 this.app = app;
69 if (app.getInputManager() != null) {
72 flyCam = new FlyByCamera(app
[all...]
H A DDebugKeysAppState.java32 package com.jme3.app;
34 import com.jme3.app.state.AbstractAppState;
35 import com.jme3.app.state.AppStateManager;
57 private Application app; field in class:DebugKeysAppState
65 public void initialize(AppStateManager stateManager, Application app) { argument
66 super.initialize(stateManager, app);
68 this.app = app;
69 this.inputManager = app.getInputManager();
71 if (app
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_QPEApp.cc34 static QPEApplication *app; variable
41 app = new QPEApplication(argc, argv);
43 app->showMainWidget(&dummy);
45 app = (QPEApplication*)qApp;
57 /* If the reference count reached zero, clean up the app */
58 if ( SDL_QPEAppActive == 0 && app) {
59 delete app;
60 app = 0;
/external/chromium/chrome/browser/history/
H A Dtop_sites_database.h12 #include "app/sql/meta_table.h"
21 namespace app { namespace
/external/jmonkeyengine/engine/src/android/com/jme3/app/
H A DR.java8 package com.jme3.app;
/external/jmonkeyengine/engine/src/test/jme3test/app/state/
H A DRootNodeState.java33 package jme3test.app.state;
35 import com.jme3.app.state.AbstractAppState;
H A DTestAppStates.java33 package jme3test.app.state;
35 import com.jme3.app.Application;
44 TestAppStates app = new TestAppStates();
45 app.start();
/external/qemu/distrib/sdl-1.2.15/src/main/qtopia/
H A DSDL_qtopia_main.cc29 static QPEApplication *app; variable
39 app = new QPEApplication(argc, argv);
41 app->showMainWidget(&dummy);
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAppState.java33 package com.jme3.app.state;
35 import com.jme3.app.Application;
42 * are initialized in the render thread, upon a call to {@link AppState#initialize(com.jme3.app.state.AppStateManager, com.jme3.app.Application) }
56 * @param app
58 public void initialize(AppStateManager stateManager, Application app); argument
H A DAbstractAppState.java33 package com.jme3.app.state;
35 import com.jme3.app.Application;
47 * {@link AbstractAppState#initialize(com.jme3.app.state.AppStateManager, com.jme3.app.Application) }
54 public void initialize(AppStateManager stateManager, Application app) { argument
H A DAppStateManager.java33 package com.jme3.app.state;
35 import com.jme3.app.Application;
45 * {@link AppState#stateAttached(com.jme3.app.state.AppStateManager) } and
46 * {@link AppState#stateDetached(com.jme3.app.state.AppStateManager) } methods
69 * List holding the attached app states that are pending
71 * the running app states.
81 * List holding the detached app states that are pending
91 private final Application app; field in class:AppStateManager
94 public AppStateManager(Application app){ argument
95 this.app
[all...]
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/
H A DAppletHarness.java33 package com.jme3.app;
59 private Application app; field in class:AppletHarness
65 public static Applet getApplet(Application app){ argument
66 return appToApplet.get(app);
72 // load app cfg
108 app = clazz.newInstance();
117 appToApplet.put(app, this);
118 app.setSettings(settings);
119 app.createCanvas();
121 context = (JmeCanvasContext) app
[all...]
/external/emma/core/data/com/vladium/app/
H A DIAppVersion.java9 package com.vladium.app;
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DAppHarness.java35 import com.jme3.app.Application;
56 private Application app; field in class:AppHarness
64 // load app cfg
83 app = clazz.newInstance();
92 app.setSettings(settings);
93 app.createCanvas();
95 context = (JmeCanvasContext) app.getContext();
100 app.startCanvas();
146 app.stop(true);
H A DTestAwtPanels.java3 import com.jme3.app.SimpleApplication;
24 private static TestAwtPanels app; field in class:TestAwtPanels
37 app.stop();
49 app = new TestAwtPanels();
50 app.setShowSettings(false);
54 app.setSettings(settings);
55 app.start();
59 final AwtPanelsContext ctx = (AwtPanelsContext) app.getContext();
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsTestHelper.java7 import com.jme3.app.Application;
173 * @param app
177 public static void createBallShooter(final Application app, final Node rootNode, final PhysicsSpace space) { argument
183 Material mat2 = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
186 Texture tex2 = app.getAssetManager().loadTexture(key2);
192 bulletg.setLocalTranslation(app.getCamera().getLocation());
195 bulletControl.setLinearVelocity(app.getCamera().getDirection().mult(25));
202 app.getInputManager().addMapping("shoot", new MouseButtonTrigger(MouseInput.BUTTON_LEFT));
203 app.getInputManager().addListener(actionListener, "shoot");

Completed in 536 milliseconds

12345