/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 …]
|
D | extras_appengine_sessions_ndb_test.py | 12 app = webapp2.WSGIApplication(config={ variable 31 req.app = app 50 req.app = app 67 req.app = app 84 req.app = app 98 req.app = app 113 req.app = app 134 req.app = app 152 req.app = app
|
D | extras_appengine_sessions_memcache_test.py | 9 app = webapp2.WSGIApplication(config={ variable 24 req.app = app 43 req.app = app 60 req.app = app 74 req.app = app 89 req.app = app 110 req.app = app 128 req.app = app
|
/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 …]
|
D | test_request.py | 24 app = TestApp(simpleapp) 25 res = app.get('/') 29 res = app.get('/?name=george') 34 app = TestApp(simpleapp) 35 res = app.get('/') 38 res = app.get('/', headers={'Accept-Language':'da, en-gb;q=0.8, en;q=0.7'}) 41 res = app.get('/', headers={'Accept-Language':'en-gb;q=0.8, da, en;q=0.7'}) 45 app = TestApp(simpleapp) 46 res = app.get('/', headers={'Accept':'text/html'}) 49 res = app.get('/', headers={'Accept':'application/xml'}) [all …]
|
D | test_fixture.py | 5 app = TestApp(SimpleApplication()) 6 res = app.get('/', params={'a': ['1', '2']}) 9 res = app.put('/') 12 res = app.delete('/') 18 res = app.post('/params', params=FakeDict()) 21 app.cookies['one'] = 'first'; 22 app.cookies['two'] = 'second'; 23 app.cookies['three'] = ''; 24 res = app.get('/')
|
/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/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 | 25 app = dev_server.DevServerApp(self.pds, self.args) 27 response = request.get_response(app) 32 app = dev_server.DevServerApp(self.pds, self.args) 35 app.server = FakeServer() 40 url = app.GetURLForAbsFilename(base_html_filename) 43 url = app.GetURLForAbsFilename('/tmp/foo') 47 app = dev_server.DevServerApp(self.pds, self.args) 53 filename = app.GetAbsFilenameForHref('/tracing/base/base.html') 56 filename = app.GetAbsFilenameForHref('/etc/passwd') 60 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/chromium-trace/catapult/devil/devil/android/ |
D | app_ui_test.py | 63 self.app = app_ui.AppUi(self.device, package='com.example.app') 77 self.device, element_tree.fromstring(value), self.app.package) 81 self.app._GetRootUiNode = mock.Mock( 94 node = self.app.GetUiNode(text='Primary') 103 node = self.app.GetUiNode(content_desc='Social') 112 node = self.app.GetUiNode(resource_id='image_view') 119 node = self.app.GetUiNode(resource_id='com.example.app:id/image_view') 126 node = self.app.GetUiNode(resource_id='image_view', 135 node = self.app.GetUiNode(resource_id='does_not_exist') 141 self.app.GetUiNode() [all …]
|