OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OzonePlatform
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/ui/ozone/platform/caca/
ozone_platform_caca.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformCaca();
ozone_platform_caca.cc
22
class OzonePlatformCaca : public
OzonePlatform
{
27
//
OzonePlatform
:
75
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
46
//
OzonePlatform
for Linux DRI (Direct Rendering Infrastructure)
50
class OzonePlatformDri : public
OzonePlatform
{
64
//
OzonePlatform
:
119
OzonePlatform
* CreateOzonePlatformDri() { return new OzonePlatformDri; }
ozone_platform_gbm.cc
63
class OzonePlatformGbm : public
OzonePlatform
{
71
//
OzonePlatform
:
144
OzonePlatform
* CreateOzonePlatformGbm() { return new OzonePlatformGbm; }
/external/chromium_org/ui/ozone/platform/egltest/
ozone_platform_egltest.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformEgltest();
ozone_platform_egltest.cc
209
class OzonePlatformEgltest : public
OzonePlatform
{
239
//
OzonePlatform
:
298
OzonePlatform
* CreateOzonePlatformEgltest() {
/external/chromium_org/ui/ozone/platform/test/
ozone_platform_test.h
10
class
OzonePlatform
;
13
OzonePlatform
* CreateOzonePlatformTest();
ozone_platform_test.cc
25
//
OzonePlatform
for testing
28
class OzonePlatformTest : public
OzonePlatform
{
33
//
OzonePlatform
:
84
OzonePlatform
* CreateOzonePlatformTest() {
/external/chromium_org/ui/ozone/
ozone_platform.cc
22
OzonePlatform
::
OzonePlatform
() {
23
CHECK(!instance_) << "There should only be a single
OzonePlatform
.";
29
OzonePlatform
::~
OzonePlatform
() {
35
void
OzonePlatform
::InitializeForUI() {
44
void
OzonePlatform
::InitializeForGPU() {
53
OzonePlatform
*
OzonePlatform
::GetInstance() {
54
CHECK(instance_) << "
OzonePlatform
is not initialized"
[
all
...]
ozone_platform.h
27
// The
OzonePlatform
subclass can own any state needed by the
35
class OZONE_EXPORT
OzonePlatform
{
37
OzonePlatform
();
38
virtual ~
OzonePlatform
();
47
static
OzonePlatform
* GetInstance();
51
// inject these objects themselves. Ownership is retained by
OzonePlatform
.
70
static
OzonePlatform
* instance_;
72
DISALLOW_COPY_AND_ASSIGN(
OzonePlatform
);
/external/chromium_org/ui/display/chromeos/ozone/
display_configurator_ozone.cc
16
ui::
OzonePlatform
::GetInstance()->CreateNativeDisplayDelegate(),
18
ui::
OzonePlatform
::GetInstance()->CreateTouchscreenDeviceManager())));
/external/chromium_org/ui/gl/
gl_implementation_ozone.cc
46
ui::
OzonePlatform
::InitializeForGPU();
/external/chromium_org/content/gpu/
gpu_child_thread.cc
122
if (ui::
OzonePlatform
::GetInstance()
169
ui::
OzonePlatform
::GetInstance()
/external/chromium_org/ui/aura/
env.cc
85
ui::
OzonePlatform
::InitializeForUI();
/external/chromium_org/content/browser/gpu/
gpu_process_host_ui_shim.cc
99
ui::
OzonePlatform
::GetInstance()
120
ui::
OzonePlatform
::GetInstance()
165
if (ui::
OzonePlatform
::GetInstance()
Completed in 680 milliseconds