Home
last modified time | relevance | path

Searched full:shell (Results 1 – 25 of 3620) sorted by relevance

12345678910>>...145

/third_party/weston/desktop-shell/
Dexposay.c31 #include "shell.h"
35 struct desktop_shell *shell; member
58 static void exposay_set_state(struct desktop_shell *shell,
61 static void exposay_check_state(struct desktop_shell *shell);
69 if (esurface->shell->exposay.focus_current == esurface->view) in exposay_surface_destroy()
70 esurface->shell->exposay.focus_current = NULL; in exposay_surface_destroy()
71 if (esurface->shell->exposay.focus_prev == esurface->view) in exposay_surface_destroy()
72 esurface->shell->exposay.focus_prev = NULL; in exposay_surface_destroy()
78 exposay_in_flight_inc(struct desktop_shell *shell) in exposay_in_flight_inc() argument
80 shell->exposay.in_flight++; in exposay_in_flight_inc()
[all …]
Dinput-panel.c33 #include "shell.h"
41 struct desktop_shell *shell; member
65 struct desktop_shell *shell = ipsurf->shell; in show_input_panel_surface() local
70 wl_list_for_each(seat, &shell->compositor->seat_list, link) { in show_input_panel_surface()
85 weston_layer_entry_insert(&shell->input_panel_layer.view_list, in show_input_panel_surface()
105 struct desktop_shell *shell = in show_input_panels() local
110 shell->text_input.surface = (struct weston_surface*)data; in show_input_panels()
112 if (shell->showing_input_panels) in show_input_panels()
115 shell->showing_input_panels = true; in show_input_panels()
117 if (!shell->locked) in show_input_panels()
[all …]
Dshell.c39 #include "shell.h"
41 #include "weston-desktop-shell-server-protocol.h"
51 struct desktop_shell *shell; member
105 struct desktop_shell *shell; member
204 shell_fade_startup(struct desktop_shell *shell);
207 shell_fade(struct desktop_shell *shell, enum fade_type type);
213 get_output_panel_size(struct desktop_shell *shell,
274 struct desktop_shell *shell = shsurf->shell; in shell_grab_start() local
286 if (shell->child.desktop_shell) { in shell_grab_start()
287 weston_desktop_shell_send_grab_cursor(shell->child.desktop_shell, in shell_grab_start()
[all …]
/third_party/flutter/engine/flutter/shell/common/
Dshell_unittests.cc19 #include "flutter/shell/common/platform_view.h"
20 #include "flutter/shell/common/rasterizer.h"
21 #include "flutter/shell/common/shell_test.h"
22 #include "flutter/shell/common/switches.h"
23 #include "flutter/shell/common/thread_host.h"
30 static bool ValidateShell(Shell* shell) { in ValidateShell() argument
31 if (!shell) { in ValidateShell()
35 if (!shell->IsSetup()) { in ValidateShell()
39 ShellTest::PlatformViewNotifyCreated(shell); in ValidateShell()
44 shell->GetTaskRunners().GetPlatformTaskRunner(), [shell, &latch]() { in ValidateShell()
[all …]
Dshell_test.cc7 #include "flutter/shell/common/shell_test.h"
14 #include "flutter/shell/gpu/gpu_surface_gl.h"
26 Shell* shell, in SendEnginePlatformMessage() argument
30 shell->GetTaskRunners().GetPlatformTaskRunner(), in SendEnginePlatformMessage()
31 [shell, &latch, message = std::move(message)]() { in SendEnginePlatformMessage()
32 if (auto engine = shell->weak_engine_) { in SendEnginePlatformMessage()
80 void ShellTest::PlatformViewNotifyCreated(Shell* shell) { in PlatformViewNotifyCreated() argument
83 shell->GetTaskRunners().GetPlatformTaskRunner(), [shell, &latch]() { in PlatformViewNotifyCreated()
84 shell->GetPlatformView()->NotifyCreated(); in PlatformViewNotifyCreated()
90 void ShellTest::RunEngine(Shell* shell, RunConfiguration configuration) { in RunEngine() argument
[all …]
Dshell_test.h13 #include "flutter/shell/common/run_configuration.h"
14 #include "flutter/shell/common/shell.h"
15 #include "flutter/shell/common/thread_host.h"
16 #include "flutter/shell/gpu/gpu_surface_gl_delegate.h"
31 std::unique_ptr<Shell> CreateShell(Settings settings);
32 std::unique_ptr<Shell> CreateShell(Settings settings,
36 void SendEnginePlatformMessage(Shell* shell,
42 Shell* shell); // This creates the surface
43 static void RunEngine(Shell* shell, RunConfiguration configuration);
45 static void PumpOneFrame(Shell* shell);
[all …]
Dace_shell.cc8 #include "flutter/shell/common/shell.h"
28 #include "flutter/shell/common/engine.h"
29 #include "flutter/shell/common/persistent_cache.h"
30 #include "flutter/shell/common/skia_event_tracer_impl.h"
31 #include "flutter/shell/common/switches.h"
32 #include "flutter/shell/common/vsync_waiter.h"
56 std::unique_ptr<Shell> Shell::CreateShellOnPlatformThread( in CreateShellOnPlatformThread()
59 Shell::CreateCallback<PlatformView> on_create_platform_view, in CreateShellOnPlatformThread()
60 Shell::CreateCallback<Rasterizer> on_create_rasterizer) { in CreateShellOnPlatformThread()
62 FML_LOG(ERROR) << "Task runners to run the shell were invalid."; in CreateShellOnPlatformThread()
[all …]
Dshell_benchmarks.cc8 #include "flutter/shell/common/shell.h"
9 #include "flutter/shell/common/thread_host.h"
19 std::unique_ptr<Shell> shell; in StartupAndShutdownShell() local
67 shell = Shell::Create( in StartupAndShutdownShell()
69 [](Shell& shell) { in StartupAndShutdownShell() argument
70 return std::make_unique<PlatformView>(shell, shell.GetTaskRunners()); in StartupAndShutdownShell()
72 [](Shell& shell) { in StartupAndShutdownShell() argument
73 return std::make_unique<Rasterizer>(shell, shell.GetTaskRunners()); in StartupAndShutdownShell()
77 FML_CHECK(shell); in StartupAndShutdownShell()
81 shell.reset(); // Shutdown is synchronous. in StartupAndShutdownShell()
[all …]
Dshell.cc6 #include "flutter/shell/common/shell.h"
24 #include "flutter/shell/common/engine.h"
25 #include "flutter/shell/common/persistent_cache.h"
26 #include "flutter/shell/common/skia_event_tracer_impl.h"
27 #include "flutter/shell/common/switches.h"
28 #include "flutter/shell/common/vsync_waiter.h"
35 std::unique_ptr<Shell> Shell::CreateShellOnPlatformThread( in CreateShellOnPlatformThread()
41 Shell::CreateCallback<PlatformView> on_create_platform_view, in CreateShellOnPlatformThread()
42 Shell::CreateCallback<Rasterizer> on_create_rasterizer) { in CreateShellOnPlatformThread()
44 FML_LOG(ERROR) << "Task runners to run the shell were invalid."; in CreateShellOnPlatformThread()
[all …]
/third_party/flutter/engine/flutter/tools/android_lint/
Dproject.xml6 <manifest file="../../../flutter/shell/platform/android/AndroidManifest.xml" />
7 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterPluginRegistry.java" />
8 … <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterFragmentActivity.java" />
9 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivity.java" />
10 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityEvents.java" />
11 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterApplication.java" />
12 … <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityDelegate.java" />
13 <src file="../../../flutter/shell/platform/android/io/flutter/util/Preconditions.java" />
14 <src file="../../../flutter/shell/platform/android/io/flutter/util/Predicate.java" />
15 <src file="../../../flutter/shell/platform/android/io/flutter/util/PathUtils.java" />
[all …]
/third_party/wayland-ivi-extension/weston-ivi-shell/src/
Divi-controller.c61 struct ivishell *shell; member
70 struct ivishell *shell; member
81 struct ivishell *shell; member
186 const struct ivi_layout_interface *lyt = ctrl->shell->interface; in send_surface_configure_event()
238 const struct ivi_layout_interface *lyt = ivisurf->shell->interface; in send_surface_prop()
289 const struct ivi_layout_interface *lyt = ivilayer->shell->interface; in send_layer_prop()
319 const struct ivi_layout_interface *lyt = ctrl->shell->interface; in controller_set_surface_opacity()
349 const struct ivi_layout_interface *lyt = ctrl->shell->interface; in controller_set_surface_source_rectangle()
392 const struct ivi_layout_interface *lyt = ctrl->shell->interface; in controller_set_surface_destination_rectangle()
438 const struct ivi_layout_interface *lyt = ctrl->shell->interface; in controller_set_surface_visibility()
[all …]
/third_party/flutter/engine/flutter/ci/licenses_golden/
Dlicenses_flutter473 FILE: ../../../flutter/shell/common/animator.cc
474 FILE: ../../../flutter/shell/common/animator.h
475 FILE: ../../../flutter/shell/common/engine.cc
476 FILE: ../../../flutter/shell/common/engine.h
477 FILE: ../../../flutter/shell/common/fixtures/shell_test.dart
478 FILE: ../../../flutter/shell/common/isolate_configuration.cc
479 FILE: ../../../flutter/shell/common/isolate_configuration.h
480 FILE: ../../../flutter/shell/common/persistent_cache.cc
481 FILE: ../../../flutter/shell/common/persistent_cache.h
482 FILE: ../../../flutter/shell/common/pipeline.cc
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py116 shell = MockShell()
117 f = run.StdInputFile(shell, 'stdin')
130 shell = MockShell()
131 f = run.StdInputFile(shell, 'stdin')
139 shell = MockShell()
140 f = run.StdInputFile(shell, 'stdin')
141 shell.push(['one\n', 'two\n', ''])
143 shell.push(['one\n', 'two\n', ''])
145 shell.push(['one\n', 'two\n', ''])
147 shell.push(['one\n', 'two\n', 'three\n', ''])
[all …]
/third_party/weston/kiosk-shell/
Dkiosk-shell.c32 #include "kiosk-shell.h"
33 #include "kiosk-shell-grab.h"
125 wl_list_for_each(shoutput, &shsurf->shell->output_list, link) { in kiosk_shell_surface_find_best_output()
136 output = get_focused_output(shsurf->shell->compositor); in kiosk_shell_surface_find_best_output()
140 output = get_default_output(shsurf->shell->compositor); in kiosk_shell_surface_find_best_output()
281 kiosk_shell_surface_create(struct kiosk_shell *shell, in kiosk_shell_surface_create() argument
300 weston_log("no memory to allocate shell surface\n"); in kiosk_shell_surface_create()
306 shsurf->shell = shell; in kiosk_shell_surface_create()
384 weston_log("no memory to allocate shell seat\n"); in kiosk_shell_seat_create()
412 return snprintf(buf, len, "kiosk shell background surface"); in kiosk_shell_background_surface_get_label()
[all …]
/third_party/flutter/build/glfw/
DBUILD.gn21 "$flutter_root/engine/flutter/shell/platform/common/cpp/public",
22 "$flutter_root/engine/flutter/shell/platform/glfw/public",
30 "$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/engine_method_result.cc",
31 "$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/standard_codec.cc",
35 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/basic_messa…
36 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/binary_mess…
37 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/encodable_v…
38 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/engine_meth…
39 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/message_cod…
40 …"$flutter_root/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/method_call…
[all …]
/third_party/weston/ivi-shell/
DREADME5 IVI-shell is an alternative shell for Weston, a Wayland display server.
8 a separate shell and not an extension to the desktop-shell suite with
10 IVI-shell.
12 IVI-shell contains two main features:
13 - Common layout library for surface, which allow ivi-shell developer
14 to develop own shell, linking Common layout library.
20 With this ID, shell can identify which wl_surface is drawn by which
21 application. In in-vehicle infortainment system, a shell has to update
30 shell protocol (the same concept as xdg_shell).
31 Implemented by ivi-shell.so.
[all …]
Divi-shell.c27 * ivi-shell supports a type of shell for In-Vehicle Infotainment system.
33 * The ivi-shell explicitly loads a module to add business logic like how to
45 #include "ivi-shell.h"
48 #include "ivi-layout-shell.h"
56 struct ivi_shell *shell; member
149 return snprintf(buf, len, "unidentified window in ivi-shell"); in ivi_shell_surface_get_label()
247 struct ivi_shell *shell = wl_resource_get_user_data(resource); in application_surface_create() local
278 wl_list_insert(&shell->ivi_surface_list, &ivisurf->link); in application_surface_create()
280 ivisurf->shell = shell; in application_surface_create()
325 struct ivi_shell *shell = data; in bind_ivi_application() local
[all …]
/third_party/boost/boost/process/
Dshell.hpp23 /** \file boost/process/shell.hpp
25 * Header which provides the shell property. This provides the
26 * property to launch a process through the system shell.
27 * It also allows the user to obtain the shell-path via shell().
32 <emphasis>unspecified</emphasis> <globalname alt="boost::process::shell">shell</globalname>;
64 The shell property enables to launch a program through the shell of the system.
67 system("gcc", shell);
70 The shell argument goes without any expression. The operator() is overloaded, to
71 obtain the path of the system shell.
74 auto shell_cmd = shell();
[all …]
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterHeadlessDartRunner.mm7 #import "flutter/shell/platform/darwin/ios/framework/Source/FlutterEngine_Internal.h"
9 #import "flutter/shell/platform/darwin/ios/framework/Headers/FlutterHeadlessDartRunner.h"
15 #include "flutter/shell/common/engine.h"
16 #include "flutter/shell/common/rasterizer.h"
17 #include "flutter/shell/common/run_configuration.h"
18 #include "flutter/shell/common/shell.h"
19 #include "flutter/shell/common/switches.h"
20 #include "flutter/shell/common/thread_host.h"
21 #include "flutter/shell/platform/darwin/common/command_line.h"
22 #include "flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlugin.h"
[all …]
DFlutterEngine_Internal.h8 #import "flutter/shell/platform/darwin/ios/framework/Headers/FlutterEngine.h"
16 #include "flutter/shell/common/platform_view.h"
17 #include "flutter/shell/common/rasterizer.h"
18 #include "flutter/shell/common/shell.h"
19 #include "flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProject_Internal.h"
20 #include "flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPlugin.h"
21 #include "flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h"
22 #include "flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h"
23 #include "flutter/shell/platform/darwin/ios/platform_view_ios.h"
25 #include "flutter/shell/platform/darwin/ios/framework/Headers/FlutterEngine.h"
[all …]
/third_party/flutter/engine/flutter/shell/testing/
Dtester_main.cc17 #include "flutter/shell/common/platform_view.h"
18 #include "flutter/shell/common/rasterizer.h"
19 #include "flutter/shell/common/shell.h"
20 #include "flutter/shell/common/switches.h"
21 #include "flutter/shell/common/thread_host.h"
31 ScriptCompletionTaskObserver(Shell& shell, in ScriptCompletionTaskObserver() argument
34 : shell_(shell), in ScriptCompletionTaskObserver()
65 Shell& shell_;
89 Shell::CreateCallback<PlatformView> on_create_platform_view = in RunTester()
90 [](Shell& shell) { in RunTester() argument
[all …]
/third_party/weston/fullscreen-shell/
Dfullscreen-shell.c38 #include "fullscreen-shell-unstable-v1-server-protocol.h"
57 * This is implemented as a list in case someone fixes the shell
64 struct fullscreen_shell *shell; member
92 struct fullscreen_shell *shell; member
124 replace_default_surface(struct fullscreen_shell *shell, struct weston_surface *surface, in replace_default_surface() argument
129 if (!wl_list_empty(&shell->default_surface_list)) in replace_default_surface()
130 prev = container_of(shell->default_surface_list.prev, in replace_default_surface()
143 wl_list_insert(shell->default_surface_list.prev, &surf->link); in replace_default_surface()
182 wl_list_for_each(fsout, &listener->shell->output_list, link) { in seat_caps_changed()
212 listener->shell = container_of(l, struct fullscreen_shell, in seat_created()
[all …]
/third_party/flutter/engine/flutter/shell/platform/windows/
DBUILD.gn7 import("$flutter_root/shell/platform/glfw/config.gni")
29 [ "$flutter_root/shell/platform/common/cpp:common_cpp_library_headers" ]
32 "$flutter_root/shell/platform/common/cpp:desktop_library_implementation",
36 "$flutter_root/shell/platform/common/cpp:relative_flutter_library_headers",
64 "$flutter_root/shell/platform/common/cpp:desktop_library_implementation",
72 "$flutter_root/shell/platform/common/cpp:common_cpp",
73 "$flutter_root/shell/platform/common/cpp/client_wrapper:client_wrapper",
74 "$flutter_root/shell/platform/embedder:embedder_with_symbol_prefix",
75 "$flutter_root/shell/platform/windows/client_wrapper:client_wrapper_windows",
91 deps = [ "$flutter_root/shell/platform/common/cpp:publish_headers" ]
[all …]
/third_party/skia/third_party/externals/icu/source/samples/
Ddefs.mk11 CC=$(shell icu-config --cc)
12 CXX=$(shell icu-config --cxx)
13 CPPFLAGS=$(shell icu-config --cppflags)
14 CFLAGS=$(shell icu-config --cflags)
15 CXXFLAGS=$(shell icu-config --cxxflags)
16 LDFLAGS =$^ $(shell icu-config --ldflags)
17 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
18 INVOKE=$(shell icu-config --invoke)
19 GENRB=$(shell icu-config --invoke=genrb)
21 PKGDATA=$(shell icu-config --invoke=pkgdata)
[all …]
/third_party/icu/icu4c/source/samples/
Ddefs.mk11 CC=$(shell icu-config --cc)
12 CXX=$(shell icu-config --cxx)
13 CPPFLAGS=$(shell icu-config --cppflags)
14 CFLAGS=$(shell icu-config --cflags)
15 CXXFLAGS=$(shell icu-config --cxxflags)
16 LDFLAGS =$^ $(shell icu-config --ldflags)
17 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
18 INVOKE=$(shell icu-config --invoke)
19 GENRB=$(shell icu-config --invoke=genrb)
21 PKGDATA=$(shell icu-config --invoke=pkgdata)
[all …]

12345678910>>...145