OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OzonePlatform
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/ui/ozone/platform/caca/
ozone_platform_caca.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformCaca();
ozone_platform_caca.cc
21
class OzonePlatformCaca : public
OzonePlatform
{
26
//
OzonePlatform
:
74
OzonePlatform
* CreateOzonePlatformCaca() { return new OzonePlatformCaca; }
/external/chromium_org/ui/ozone/platform/dri/
ozone_platform_dri.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformDri();
ozone_platform_gbm.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformGbm();
ozone_platform_dri.cc
34
//
OzonePlatform
for Linux DRI (Direct Rendering Infrastructure)
38
class OzonePlatformDri : public
OzonePlatform
{
52
//
OzonePlatform
:
121
OzonePlatform
* CreateOzonePlatformDri() { return new OzonePlatformDri; }
ozone_platform_gbm.cc
81
class OzonePlatformGbm : public
OzonePlatform
{
89
//
OzonePlatform
:
198
OzonePlatform
* CreateOzonePlatformGbm() {
/external/chromium_org/ui/ozone/platform/egltest/
ozone_platform_egltest.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformEgltest();
ozone_platform_egltest.cc
292
class OzonePlatformEgltest : public
OzonePlatform
{
322
//
OzonePlatform
:
386
OzonePlatform
* CreateOzonePlatformEgltest() {
/external/chromium_org/ui/ozone/platform/test/
ozone_platform_test.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformTest();
ozone_platform_test.cc
27
//
OzonePlatform
for testing
30
class OzonePlatformTest : public
OzonePlatform
{
35
//
OzonePlatform
:
90
OzonePlatform
* CreateOzonePlatformTest() {
/external/chromium_org/ui/ozone/public/
ozone_platform.cc
23
OzonePlatform
::
OzonePlatform
() {
24
DCHECK(!instance_) << "There should only be a single
OzonePlatform
.";
30
OzonePlatform
::~
OzonePlatform
() {
36
void
OzonePlatform
::InitializeForUI() {
48
void
OzonePlatform
::InitializeForGPU() {
57
OzonePlatform
*
OzonePlatform
::GetInstance() {
58
DCHECK(instance_) << "
OzonePlatform
is not initialized"
[
all
...]
ozone_platform.h
31
// The
OzonePlatform
subclass can own any state needed by the
39
class OZONE_EXPORT
OzonePlatform
{
41
OzonePlatform
();
42
virtual ~
OzonePlatform
();
51
static
OzonePlatform
* GetInstance();
55
// inject these objects themselves. Ownership is retained by
OzonePlatform
.
74
static
OzonePlatform
* instance_;
76
DISALLOW_COPY_AND_ASSIGN(
OzonePlatform
);
ui_thread_gpu.cc
40
OzonePlatform
* platform = ui::
OzonePlatform
::GetInstance();
/external/chromium_org/ui/display/chromeos/ozone/
display_configurator_ozone.cc
14
return ui::
OzonePlatform
::GetInstance()->CreateNativeDisplayDelegate();
/external/chromium_org/mojo/services/native_viewport/
platform_viewport_ozone.cc
24
ui::
OzonePlatform
::InitializeForUI();
36
ui::
OzonePlatform
::GetInstance()->CreatePlatformWindow(this, bounds);
/external/chromium_org/ui/gl/
gl_implementation_ozone.cc
41
ui::
OzonePlatform
::InitializeForGPU();
/external/chromium_org/content/gpu/
gpu_child_thread.cc
122
if (ui::
OzonePlatform
::GetInstance()
170
ui::
OzonePlatform
::GetInstance()
/external/chromium_org/ui/ozone/demo/
ozone_demo.cc
35
platform_window_ = ui::
OzonePlatform
::GetInstance()->CreatePlatformWindow(
211
ui::
OzonePlatform
::InitializeForUI();
/external/chromium_org/ui/aura/
env.cc
85
ui::
OzonePlatform
::InitializeForUI();
window_tree_host_ozone.cc
17
ui::
OzonePlatform
::GetInstance()->CreatePlatformWindow(this, bounds);
/external/chromium_org/content/browser/gpu/
gpu_process_host_ui_shim.cc
105
ui::
OzonePlatform
::GetInstance()
126
ui::
OzonePlatform
::GetInstance()
171
if (ui::
OzonePlatform
::GetInstance()
Completed in 326 milliseconds