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

12345

/external/chromium-trace/trace-viewer/third_party/Paste/tests/urlparser_data/python/
H A Dstream.py2 def app(environ, start_response): function in function:stream
7 return app
/external/deqp/framework/platform/ios/
H A DtcuIOSViewController.h31 tcuIOSApp* app; variable
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_urlmap.py6 def app(environ, start_response): function in function:make_app
13 return app
17 app = TestApp(mapper)
23 res = app.get('/')
27 res = app.get('/blah')
31 res = app.get('/foo/and/more')
35 res = app.get('/foo/bar/baz')
39 res = app.get('/fffzzz')
42 res = app.get('/f/z/y')
49 app
[all...]
H A Dtest_gzipper.py11 app = TestApp(wsgi_app) variable
14 res = app.get(
H A Dtest_errordocument.py14 app = TestApp(simple_app)
15 res = app.get('')
31 app = TestApp(error_docs_app)
32 res = app.get('')
36 res = app.get('/error')
40 res = app.get('/not_found', status=404)
46 app = forward(error_docs_app, codes={404:'/error'})
47 app = TestApp(RecursiveMiddleware(app))
48 res = app
86 def app(environ, start_response): function in function:test_bad_error
[all...]
/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...]
/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/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dextras_appengine_sessions_memcache_test.py9 app = webapp2.WSGIApplication(config={ variable
24 req.app = app
43 req.app = app
60 req.app = app
74 req.app = app
89 req.app
[all...]
H A Dextras_appengine_sessions_ndb_test.py12 app = webapp2.WSGIApplication(config={ variable
31 req.app = app
50 req.app = app
67 req.app = app
84 req.app = app
98 req.app
[all...]
H A Dextras_sessions_test.py7 app = webapp2.WSGIApplication(config={ variable
18 app = webapp2.WSGIApplication()
20 req.app = app
24 app = webapp2.WSGIApplication()
26 req.app = app
41 req.app = app
60 req.app
[all...]
/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;
/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/chromium-trace/trace-viewer/perf_insights/perf_insights/
H A Dupload.py58 app = webapp2.WSGIApplication([('/upload', UploadPage)]) variable

Completed in 646 milliseconds

12345