Searched defs:app (Results 76 - 100 of 181) sorted by relevance

12345678

/external/chromium_org/chrome/browser/extensions/
H A Dapp_process_apitest.cc68 // Helper function to test that independent tabs of the named app are loaded
83 // Open two tabs in the app, one outside it.
87 // navigating it. Either way, app tabs should be considered extension
114 // tab, we now have 3 tabs. The two app tabs should not be in the same
144 // Tests that hosted apps with the background permission get a process-per-app
160 // Open two tabs in the app, one outside it.
164 // it. Either way, app tabs should be considered extension processes, but
198 // tab, we now have 4 tabs. Because the app_process app has the background
200 // should be part of the extension app and grouped in the same process.
220 // app i
448 const Extension* app = local
487 const Extension* app = local
552 const Extension* app = local
620 const Extension* app = local
655 const Extension* app = local
770 const Extension* app = local
850 const Extension* app = local
[all...]
H A Dextension_special_storage_policy_unittest.cc148 base::FilePath path(FILE_PATH_LITERAL("c:\\app"));
150 base::FilePath path(FILE_PATH_LITERAL("/app"));
157 scoped_refptr<Extension> app = Extension::Create( local
160 EXPECT_TRUE(app.get()) << error;
161 return app;
185 scoped_refptr<Extension> app(CreateRegularApp());
190 EXPECT_FALSE(policy_->IsStorageUnlimited(app->url()));
196 EXPECT_TRUE(policy_->IsStorageProtected(app->url()));
270 scoped_refptr<Extension> app(CreateRegularApp());
271 policy_->GrantRightsForExtension(app
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Drecommended_apps.cc26 AppSortInfo() : app(NULL) {}
27 AppSortInfo(const extensions::Extension* app, argument
29 : app(app), last_launch_time(last_launch_time) {}
31 const extensions::Extension* app; member in struct:app_list::__anon4888::AppSortInfo
69 for (extensions::ExtensionSet::const_iterator app = extensions.begin();
70 app != extensions.end();
71 ++app) {
72 if (!extensions::ui_util::ShouldDisplayInAppLauncher(*app, profile_))
76 AppSortInfo(app
[all...]
/external/chromium_org/chrome/browser/ui/pdf/
H A Dadobe_reader_info_win.cc41 // Gets the installed path for a registered app.
42 base::FilePath GetInstalledPath(const base::char16* app) { argument
45 reg_path.append(app);
60 return filepath.Append(app);
/external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
H A Dapp_info_header_panel.cc49 // The number of pixels spacing between the app's title and version in the
56 const extensions::Extension* app)
57 : AppInfoPanel(profile, app),
153 // If there's no version _and_ no links, allow the app's name to take up
159 // Create a vertical container to store the app's name and info.
173 // Create a horizontal container to store the app's links.
241 // Find the first shared module for this app, and display it's options page
55 AppInfoHeaderPanel(Profile* profile, const extensions::Extension* app) argument
H A Dapp_info_permissions_panel.cc29 const extensions::Extension* app)
30 : AppInfoPanel(profile, app),
27 AppInfoPermissionsPanel( Profile* profile, const extensions::Extension* app) argument
H A Dapp_info_summary_panel.cc30 // A model for a combobox selecting the launch options for a hosted app.
78 // Mac does not support standalone web app browser windows or maximize.
125 const extensions::Extension* app)
126 : AppInfoPanel(profile, app),
124 AppInfoSummaryPanel(Profile* profile, const extensions::Extension* app) argument
/external/chromium_org/chrome/browser/ui/webui/app_list/
H A Dstart_page_handler.cc42 const extensions::Extension* app) {
44 dict->SetString("appId", app->id());
45 dict->SetString("textTitle", app->short_name());
46 dict->SetString("title", app->name());
51 app,
198 const extensions::Extension* app = local
201 if (!app) {
211 app,
41 CreateAppInfo( const extensions::Extension* app) argument
/external/chromium_org/chrome_elf/
H A Dchrome_elf_util_unittest.cc65 const char* app; variable
68 std::tie(app, level, mode) = GetParam();
69 is_canary_ = (std::string(app) == "canary");
/external/chromium_org/extensions/browser/api/storage/
H A Dsettings_test_util.cc67 base::DictionaryValue* app = new base::DictionaryValue(); local
70 app->Set("launch", app_launch);
71 manifest.Set("app", app);
/external/chromium_org/mojo/services/launcher/
H A Dlauncher.cc22 explicit LauncherConnection(LauncherApp* app) : app_(app) {} argument
36 LaunchInstance(LauncherApp* app,
136 LaunchInstance::LaunchInstance(LauncherApp* app, argument
139 : app_(app),
/external/chromium_org/third_party/angle/samples/angle/particle_system/
H A DParticleSystem.cpp229 ParticleSystemSample app; local
230 return app.run();
/external/chromium_org/third_party/angle/samples/angle/post_sub_buffer/
H A DPostSubBuffer.cpp174 PostSubBufferSample app; local
175 return app.run();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp31 static d3d10_application* app; variable
143 app = d3d10_application_create();
144 if(!app->init(dev, argc, argv))
177 app->draw(ctx, rtv, width, height, ctime);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp31 static d3d11_application* app; variable
127 app = d3d11_application_create();
128 if(!app->init(dev, argc, argv))
161 app->draw(ctx, rtv, width, height, ctime);
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c42 * Shared state for our app.
45 struct android_app* app; member in struct:engine
99 ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
168 static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) { argument
169 struct engine* engine = (struct engine*)app->userData;
182 static void engine_handle_cmd(struct android_app* app, int32_t cmd) { argument
183 struct engine* engine = (struct engine*)app->userData;
187 engine->app->savedState = malloc(sizeof(struct saved_state));
188 *((struct saved_state*)engine->app
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_packet_unittest.cc198 App app; local
199 app.WithSubType(30);
204 app.WithName(name);
206 RawPacket packet = app.Build();
209 EXPECT_EQ(1, parser.app()->num_packets());
210 EXPECT_EQ(30U, parser.app()->SubType());
211 EXPECT_EQ(name, parser.app()->Name());
216 App app; local
217 app.From(kSenderSsrc);
218 app
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jar ... org/eclipse/equinox/p2/director/ org/eclipse/equinox/p2/director/app/ org/eclipse/equinox/p2/director/app/ant/ org/eclipse/equinox ...
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp31 static d3d10_application* app; variable
143 app = d3d10_application_create();
144 if(!app->init(dev, argc, argv))
177 app->draw(ctx, rtv, width, height, ctime);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp31 static d3d11_application* app; variable
127 app = d3d11_application_create();
128 if(!app->init(dev, argc, argv))
161 app->draw(ctx, rtv, width, height, ctime);
/external/oprofile/daemon/
H A Dopd_anon.c71 static unsigned long hash_anon(pid_t tgid, cookie_t app) argument
73 return ((app >> DCOOKIE_SHIFT) ^ (tgid >> 2)) & (HASH_SIZE - 1);
81 cookie_t app = trans->app_cookie; local
90 if (entry->tgid == tgid && entry->app_cookie == app) {
102 char const * name = verbose_cookie(app);
/external/qemu/android/
H A Dmain-common.c85 char* app; local
94 app = bufprint_app_dir(temp, end);
95 if (app >= end)
103 p = bufprint(app, end, "%s", searchPaths[nn]);
114 p = bufprint(app, end, "/../platforms");
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c42 * Shared state for our app.
45 struct android_app* app; member in struct:engine
99 ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
168 static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) { argument
169 struct engine* engine = (struct engine*)app->userData;
182 static void engine_handle_cmd(struct android_app* app, int32_t cmd) { argument
183 struct engine* engine = (struct engine*)app->userData;
187 engine->app->savedState = malloc(sizeof(struct saved_state));
188 *((struct saved_state*)engine->app
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.h25 WpaGui(QApplication *app, QWidget *parent = 0, const char *name = 0,
140 QApplication *app; member in class:WpaGui
/external/chromium_org/remoting/webapp/js_proto/
H A Dchrome_proto.js14 chrome.app = {};
17 chrome.app.runtime = {
24 chrome.app.window = {
45 /** @return {{version: string, app: {background: Object}}} */

Completed in 1070 milliseconds

12345678