Home
last modified time | relevance | path

Searched refs:platform_view (Results 1 – 25 of 34) sorted by relevance

12

/third_party/flutter/engine/flutter/shell/platform/embedder/
Dembedder_engine.cc108 auto platform_view = shell_->GetPlatformView(); in SetViewportMetrics() local
109 if (!platform_view) { in SetViewportMetrics()
112 platform_view->SetViewportMetrics(std::move(metrics)); in SetViewportMetrics()
122 auto platform_view = shell_->GetPlatformView(); in DispatchPointerDataPacket() local
123 if (!platform_view) { in DispatchPointerDataPacket()
127 platform_view->DispatchPointerDataPacket(std::move(packet)); in DispatchPointerDataPacket()
137 auto platform_view = shell_->GetPlatformView(); in SendPlatformMessage() local
138 if (!platform_view) { in SendPlatformMessage()
142 platform_view->DispatchPlatformMessage(message); in SendPlatformMessage()
177 auto platform_view = shell_->GetPlatformView(); in SetSemanticsEnabled() local
[all …]
Dace_embedder_engine.cc111 auto platform_view = shell_->GetPlatformView(); in SetIdleNotificationCallback() local
112 if (!platform_view) { in SetIdleNotificationCallback()
115 platform_view->SetIdleNotificationCallback(idle_notification_callback); in SetIdleNotificationCallback()
124 auto platform_view = shell_->GetPlatformView(); in SetViewportMetrics() local
125 if (!platform_view) { in SetViewportMetrics()
128 platform_view->SetViewportMetrics(std::move(metrics)); in SetViewportMetrics()
138 auto platform_view = shell_->GetPlatformView(); in DispatchPointerDataPacket() local
139 if (!platform_view) { in DispatchPointerDataPacket()
143 platform_view->DispatchPointerDataPacket(std::move(packet)); in DispatchPointerDataPacket()
153 auto platform_view = shell_->GetPlatformView(); in SendPlatformMessage() local
[all …]
Dembedder_external_view_embedder.cc142 const FlutterPlatformView& platform_view) { in MakeLayer() argument
147 layer.platform_view = &platform_view; in MakeLayer()
Dembedder.h487 const FlutterPlatformView* platform_view; member
/third_party/flutter/engine/flutter/shell/platform/embedder/tests/
Dembedder_unittests.cc568 FlutterPlatformView platform_view = {}; in TEST_F() local
569 platform_view.struct_size = sizeof(platform_view); in TEST_F()
570 platform_view.identifier = 42; in TEST_F()
575 layer.platform_view = &platform_view; in TEST_F()
660 FlutterPlatformView platform_view = {}; in TEST_F() local
661 platform_view.struct_size = sizeof(platform_view); in TEST_F()
662 platform_view.identifier = 42; in TEST_F()
667 layer.platform_view = &platform_view; in TEST_F()
754 FlutterPlatformView platform_view = {}; in TEST_F() local
755 platform_view.struct_size = sizeof(platform_view); in TEST_F()
[all …]
Dembedder_assertions.h99 return *a.platform_view == *b.platform_view;
156 const FlutterPlatformView& platform_view) {
158 << platform_view.struct_size
159 << " Identifier: " << platform_view.identifier;
225 out << *layer.platform_view;
/third_party/flutter/engine/flutter/shell/common/
Dace_shell.cc70 auto platform_view = on_create_platform_view(*shell.get()); in CreateShellOnPlatformThread() local
71 if (!platform_view || !platform_view->GetWeakPtr()) { in CreateShellOnPlatformThread()
77 auto vsync_waiter = platform_view->CreateVSyncWaiter(static_cast<int32_t>(settings.platform)); in CreateShellOnPlatformThread()
93 &platform_view, // in CreateShellOnPlatformThread()
98 platform_view->CreateResourceContext(), io_task_runner); in CreateShellOnPlatformThread()
167 if (!shell->Setup(std::move(platform_view), // in CreateShellOnPlatformThread()
294 platform_view = platform_view_.get(), in ~Shell()
297 if (platform_view) { in ~Shell()
298 platform_view->ReleaseResourceContext(); in ~Shell()
310 fml::MakeCopyable([platform_view = std::move(platform_view_), in ~Shell()
[all …]
Dshell.cc52 auto platform_view = on_create_platform_view(*shell.get()); in CreateShellOnPlatformThread() local
53 if (!platform_view || !platform_view->GetWeakPtr()) { in CreateShellOnPlatformThread()
59 auto vsync_waiter = platform_view->CreateVSyncWaiter(); in CreateShellOnPlatformThread()
75 &platform_view, // in CreateShellOnPlatformThread()
80 platform_view->CreateResourceContext(), io_task_runner); in CreateShellOnPlatformThread()
140 if (!shell->Setup(std::move(platform_view), // in CreateShellOnPlatformThread()
337 platform_view = platform_view_.get(), in ~Shell()
340 if (platform_view) { in ~Shell()
341 platform_view->ReleaseResourceContext(); in ~Shell()
353 fml::MakeCopyable([platform_view = std::move(platform_view_), in ~Shell()
[all …]
Dace_platform_view.cc60 auto* platform_view = this; in NotifyCreated() local
63 task_runners_.GetGPUTaskRunner(), [platform_view, &surface, &latch]() { in NotifyCreated()
64 surface = platform_view->CreateRenderingSurface(); in NotifyCreated()
Dplatform_view.cc68 auto* platform_view = this; in NotifyCreated() local
71 task_runners_.GetGPUTaskRunner(), [platform_view, &surface, &latch]() { in NotifyCreated()
72 surface = platform_view->CreateRenderingSurface(); in NotifyCreated()
DBUILD.gn71 "platform_view.cc",
72 "platform_view.h",
Dshell.h209 bool Setup(std::unique_ptr<PlatformView> platform_view,
/third_party/flutter/engine/flutter/shell/platform/android/
Dace_platform_view_android.cc338 [platform_view = GetWeakPtr(), in InstallFirstFrameCallback()
341 platform_task_runner->PostTask([platform_view]() { in InstallFirstFrameCallback()
343 if (platform_view) { in InstallFirstFrameCallback()
344 reinterpret_cast<PlatformViewAndroid*>(platform_view.get()) in InstallFirstFrameCallback()
Dplatform_view_android.cc422 [platform_view = GetWeakPtr(), in InstallFirstFrameCallback()
425 platform_task_runner->PostTask([platform_view]() { in InstallFirstFrameCallback()
427 if (platform_view) { in InstallFirstFrameCallback()
428 reinterpret_cast<PlatformViewAndroid*>(platform_view.get()) in InstallFirstFrameCallback()
/third_party/flutter/flutter/dev/devicelab/bin/tasks/
Dplatform_view_ios__start_up.dart17 '${flutterDirectory.path}/examples/platform_view/ios',
/third_party/flutter/flutter/examples/platform_view/android/app/src/main/java/io/flutter/examples/platform_view/
DMainActivity.java5 package io.flutter.examples.platform_view;
DCountActivity.java5 package io.flutter.examples.platform_view;
/third_party/flutter/flutter/examples/platform_view/ios/Runner/
DAppDelegate.m19 [FlutterMethodChannel methodChannelWithName:@"samples.flutter.io/platform_view"
/third_party/flutter/flutter/examples/platform_view/android/app/
Dbuild.gradle35 applicationId "io.flutter.examples.platform_view"
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
DBUILD.gn65 "platform_view.cc",
66 "platform_view.h",
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
Daccessibility_bridge.h148 PlatformViewIOS* platform_view,
DFlutterPlatformViews_Internal.h189 UIView* platform_view,
DFlutterOverlayView.mm13 #include "flutter/shell/common/platform_view.h"
/third_party/flutter/flutter/examples/platform_view/lib/
Dmain.dart38 MethodChannel('samples.flutter.io/platform_view');
/third_party/flutter/flutter/packages/flutter/lib/
Drendering.dart51 export 'src/rendering/platform_view.dart';

12