/external/pdfium/testing/resources/javascript/ |
D | app_props_expected.txt | 2 Alert: app.activeDocs is object [object global] 3 Alert: app.calculate is boolean true 4 Alert: app.formsVersion is number 7 5 Alert: ERROR: app.fs: 6 Alert: ERROR: app.fullscreen: 7 Alert: app.language is string ENU 8 Alert: ERROR: app.media: 9 Alert: app.platform is string WIN 10 Alert: app.runtimeHighlight is boolean false 11 Alert: app.viewerType is string pdfium [all …]
|
D | apply.in | 37 app.alert('Applying to util itself - should succeed'); 39 app.alert(util.byteToChar.apply(util, [65])); 42 app.alert('Caught: ' + e); 45 app.alert('Applying to array - should throw'); 47 app.alert(util.byteToChar.apply([], [65])); 50 app.alert('Caught: ' + e); 53 app.alert('Applying to number - should throw'); 55 app.alert(util.byteToChar.apply(7, [65])); 58 app.alert('Caught: ' + e); 61 app.alert('Applying to wrong native obj - should throw'); [all …]
|
/external/webrtc/talk/ |
D | libjingle.gyp | 53 'app/webrtc/java/jni/classreferenceholder.cc', 54 'app/webrtc/java/jni/classreferenceholder.h', 55 'app/webrtc/java/jni/jni_helpers.cc', 56 'app/webrtc/java/jni/jni_helpers.h', 57 'app/webrtc/java/jni/native_handle_impl.cc', 58 'app/webrtc/java/jni/native_handle_impl.h', 59 'app/webrtc/java/jni/peerconnection_jni.cc', 81 'app/webrtc/androidvideocapturer.cc', 82 'app/webrtc/androidvideocapturer.h', 83 'app/webrtc/java/jni/androidmediacodeccommon.h', [all …]
|
D | libjingle_tests.gyp | 206 'app/webrtc/datachannel_unittest.cc', 207 'app/webrtc/dtlsidentitystore_unittest.cc', 208 'app/webrtc/dtmfsender_unittest.cc', 209 'app/webrtc/fakemetricsobserver.cc', 210 'app/webrtc/fakemetricsobserver.h', 211 'app/webrtc/jsepsessiondescription_unittest.cc', 212 'app/webrtc/localaudiosource_unittest.cc', 213 'app/webrtc/mediastream_unittest.cc', 214 'app/webrtc/peerconnection_unittest.cc', 215 'app/webrtc/peerconnectionendtoend_unittest.cc', [all …]
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
D | extras_jinja2_test.py | 16 app = webapp2.WSGIApplication(config={ 30 app.set_globals(app=app, request=req) 31 j = jinja2.Jinja2(app) 38 app = webapp2.WSGIApplication(config={ 46 app.set_globals(app=app, request=req) 47 j = jinja2.Jinja2(app) 54 app = webapp2.WSGIApplication(config={ 62 app.set_globals(app=app, request=req) 63 j = jinja2.Jinja2(app) 70 app = webapp2.WSGIApplication(config={ [all …]
|
D | extras_auth_test.py | 25 app = webapp2.WSGIApplication(config={ 32 req.app = app 33 s = auth.get_store(app=app) 68 req.app = app 101 app = webapp2.WSGIApplication(config={ 107 req.app = app 108 s = auth.get_store(app=app) 142 app = webapp2.WSGIApplication() 144 req.app = app 145 s = auth.get_store(app=app) [all …]
|
D | extras_mako_test.py | 15 app = webapp2.WSGIApplication(config={ 21 app.set_globals(app=app, request=req) 22 m = mako.Mako(app) 29 app = webapp2.WSGIApplication() 30 self.assertEqual(len(app.registry), 0) 31 mako.set_mako(mako.Mako(app), app=app) 32 self.assertEqual(len(app.registry), 1) 33 j = mako.get_mako(app=app) 37 app = webapp2.WSGIApplication() 38 self.assertEqual(len(app.registry), 0) [all …]
|
D | handler_test.py | 130 app = webapp2.WSGIApplication([ variable 165 app.error_handlers = {} 168 rsp = app.get_response('/') 174 rsp = req.get_response(app) 180 rsp = req.get_response(app) 186 rsp = req.get_response(app) 191 rsp = req.get_response(app) 199 rsp = req.get_response(app) 204 rsp = req.get_response(app) 210 rsp = req.get_response(app) [all …]
|
D | extras_sessions_test.py | 7 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 = app 77 req.app = app 93 req.app = app 108 req.app = app [all …]
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_urlparser.py | 17 app = URLParser({}, path(name), name, index_names=['index', 'Main']) 18 testapp = TestApp(app) 22 app = make_app('find_file') 23 res = app.get('/') 26 res = app.get('/index') 29 res = app.get('/index.txt') 32 res = app.get('/test2.html') 35 res = app.get('/test 3.html') 38 res = app.get('/test%203.html') 41 res = app.get('/dir with spaces/test 4.html') [all …]
|
D | test_errordocument.py | 14 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.get('') 52 res = app.get('/error') [all …]
|
D | test_recursive.py | 18 def __init__(self, app, url='/error'): argument 19 self.app = app 24 def forward(app): argument 25 app = TestApp(RecursiveMiddleware(app)) 26 res = app.get('') 30 res = app.get('/error') 34 res = app.get('/not_found') 39 res = app.get('/recurse') 50 return self.app(environ, start_response) 58 return self.app(environ, start_response) [all …]
|
D | test_fileapp.py | 30 harness.app.set_content(b"bingles") 35 app = DataApp(b"SomeContent") 36 app.cache_control(*args,**kwargs) 37 return TestApp(app).get("/") 59 app = DataApp(b"SomeContent") 60 app.content_disposition(*args,**kwargs) 61 return TestApp(app).get("/") 109 app = fileapp.FileApp(tempfile) 110 res = TestApp(app).get("/") 114 assert content == app.content # this is cashed [all …]
|
D | test_urlmap.py | 6 def app(environ, start_response): function 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 = TestApp(mapper, extra_environ={'HTTP_ACCEPT': 'text/html'}) [all …]
|
/external/pdfium/fpdfsdk/src/javascript/ |
D | app.h | 39 class app : public CJS_EmbedObj { 41 app(CJS_Object* pJSObject); 42 ~app() override; 176 JS_STATIC_PROP(activeDocs, app); 177 JS_STATIC_PROP(calculate, app); 178 JS_STATIC_PROP(formsVersion, app); 179 JS_STATIC_PROP(fs, app); 180 JS_STATIC_PROP(fullscreen, app); 181 JS_STATIC_PROP(language, app); 182 JS_STATIC_PROP(media, app); [all …]
|
/external/jmonkeyengine/engine/src/test/jme3test/app/ |
D | TestApplication.java | 33 package jme3test.app; 35 import com.jme3.app.Application; 47 Application app = new Application(); in main() local 49 app.start(); in main() 53 app.stop(); in main() 57 app = new Application(); in main() 61 app.setSettings(settings); in main() 62 app.start(); in main() 64 app.stop(); in main() 68 app = new Application(); in main() [all …]
|
/external/icu/icu4c/source/samples/layout/ |
D | gnomelayout.cpp | 87 GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app")); in openOK() local 88 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); in openOK() 98 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); in openOK() 105 gtk_window_set_title(GTK_WINDOW(app), title); in openOK() 119 GtkWidget *app = GTK_WIDGET(data); in openfile() local 127 gtk_object_set_data(GTK_OBJECT(fileselection), "app", app); in openfile() 151 GtkWidget *app = newSample("Sample.txt"); in newapp() local 153 gtk_widget_show_all(app); in newapp() 158 GtkWidget *app = GTK_WIDGET(data); in closeapp() local 160 closeSample(app); in closeapp() [all …]
|
D | cgnomelayout.c | 79 GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app")); in openOK() local 80 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); in openOK() 90 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); in openOK() 97 gtk_window_set_title(GTK_WINDOW(app), title); in openOK() 111 GtkWidget *app = GTK_WIDGET(data); in openfile() local 119 gtk_object_set_data(GTK_OBJECT(fileselection), "app", app); in openfile() 143 GtkWidget *app = newSample("Sample.txt"); in newapp() local 145 gtk_widget_show_all(app); in newapp() 150 GtkWidget *app = GTK_WIDGET(data); in closeapp() local 152 closeSample(app); in closeapp() [all …]
|
/external/chromium-trace/catapult/catapult_build/ |
D | dev_server_unittest.py | 23 app = dev_server.DevServerApp(self.pds, self.args) 25 response = request.get_response(app) 30 app = dev_server.DevServerApp(self.pds, self.args) 33 app.server = FakeServer() 38 url = app.GetURLForAbsFilename(base_html_filename) 41 url = app.GetURLForAbsFilename('/tmp/foo') 45 app = dev_server.DevServerApp(self.pds, self.args) 51 filename = app.GetAbsFilenameForHref('/tracing/base/base.html') 54 filename = app.GetAbsFilenameForHref('/etc/passwd') 58 app = dev_server.DevServerApp(self.pds, self.args) [all …]
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
D | mako.py | 63 def __init__(self, app, config=None): argument 64 self.config = config = app.config.load_config(self.config_key, 98 def get_mako(factory=Mako, key=_registry_key, app=None): argument 115 app = app or webapp2.get_app() 116 mako = app.registry.get(key) 118 mako = app.registry[key] = factory(app) 123 def set_mako(mako, key=_registry_key, app=None): argument 135 app = app or webapp2.get_app() 136 app.registry[key] = mako
|
D | jinja2.py | 95 def __init__(self, app, config=None): argument 104 self.config = config = app.config.load_config(self.config_key, 113 use_compiled = not app.debug or config['force_compiled'] 192 def get_jinja2(factory=Jinja2, key=_registry_key, app=None): argument 209 app = app or webapp2.get_app() 210 jinja2 = app.registry.get(key) 212 jinja2 = app.registry[key] = factory(app) 217 def set_jinja2(jinja2, key=_registry_key, app=None): argument 229 app = app or webapp2.get_app() 230 app.registry[key] = jinja2
|
/external/jmonkeyengine/engine/src/core/com/jme3/app/ |
D | FlyCamAppState.java | 32 package com.jme3.app; 34 import com.jme3.app.state.AbstractAppState; 35 import com.jme3.app.state.AppStateManager; 46 private Application app; field in FlyCamAppState 64 public void initialize(AppStateManager stateManager, Application app) { in initialize() argument 65 super.initialize(stateManager, app); in initialize() 67 this.app = app; in initialize() 69 if (app.getInputManager() != null) { in initialize() 72 flyCam = new FlyByCamera(app.getCamera()); in initialize() 75 flyCam.registerWithInput(app.getInputManager()); in initialize()
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
D | AndroidGraphics.java | 79 AndroidApplicationBase app; field in AndroidGraphics 118 this.app = application; in AndroidGraphics() 133 Gdx.app.log(LOG_TAG, "Method GLSurfaceView.setPreserveEGLContextOnPause not found"); in preserveEGLContextOnPause() 182 app.getWindowManager().getDefaultDisplay().getMetrics(metrics); in updatePpi() 262 Gdx.app.log(LOG_TAG, "OGL renderer: " + gl.glGetString(GL10.GL_RENDERER)); in setupGL() 263 Gdx.app.log(LOG_TAG, "OGL vendor: " + gl.glGetString(GL10.GL_VENDOR)); in setupGL() 264 Gdx.app.log(LOG_TAG, "OGL version: " + gl.glGetString(GL10.GL_VERSION)); in setupGL() 265 Gdx.app.log(LOG_TAG, "OGL extensions: " + gl.glGetString(GL10.GL_EXTENSIONS)); in setupGL() 275 app.getApplicationListener().create(); in onSurfaceChanged() 281 app.getApplicationListener().resize(width, height); in onSurfaceChanged() [all …]
|
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/ |
D | IOSUIViewController.java | 29 private IOSApplication app; field in IOSUIViewController 45 public IOSUIViewController init (IOSApplication app, IOSGraphics graphics) { in init() argument 47 this.app = app; in init() 62 if (app.viewControllerListener != null) in viewDidAppear() 63 app.viewControllerListener.viewDidAppear(animated); in viewDidAppear() 69 if (app.config.orientationLandscape) { in supportedInterfaceOrientations() 72 if (app.config.orientationPortrait) { in supportedInterfaceOrientations() 86 return app.config.orientationLandscape; in shouldAutorotateToInterfaceOrientation() 89 return app.config.orientationPortrait; in shouldAutorotateToInterfaceOrientation() 96 CGRect bounds = app.getBounds(); in viewDidLayoutSubviews() [all …]
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers/src/com/badlogic/gdx/controllers/ |
D | Controllers.java | 70 return managers.get(Gdx.app); in getManager() 74 if (managers.containsKey(Gdx.app)) return; in initialize() 77 ApplicationType type = Gdx.app.getType(); in initialize() 81 if (Gdx.app.getVersion() >= 12) { in initialize() 84 Gdx.app.log(TAG, "No controller manager is available for Android versions < API level 12"); in initialize() 96 Gdx.app.log(TAG, "No controller manager is available for: " + Gdx.app.getType()); in initialize() 109 managers.put(Gdx.app, manager); in initialize() 110 final Application app = Gdx.app; in initialize() local 111 Gdx.app.addLifecycleListener(new LifecycleListener() { in initialize() 122 managers.remove(app); in initialize() [all …]
|