HomeSort by relevance Sort by last modified time
    Searched refs:Platform (Results 1 - 25 of 551) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/opengl/
gluPlatform.cpp 21 * \brief OpenGL platform interface.
34 Platform::Platform (void)
38 Platform::~Platform (void)
gluPlatform.hpp 23 * \brief OpenGL platform interface.
38 * \brief OpenGL (ES) platform interface
40 * OpenGL (ES) platform interface provides abstraction for GL context
41 * creation. A single platform may support multiple methods for creating
52 * If your platform supports EGL and you have implemented eglu::Platform,
55 * OpenGL (ES) platform implementation is required by OpenGL (ES) tests.
58 class Platform
61 Platform (void);
62 ~Platform (void)
    [all...]
  /external/deqp/framework/platform/vanilla/
tcuVanillaPlatform.cpp 21 * \brief Vanilla (console only) platform.
28 tcu::Platform* createPlatform (void)
30 return new tcu::Platform();
  /external/deqp/framework/common/
tcuPlatform.hpp 23 * \brief Platform (OS) specific services.
30 class Platform;
35 class Platform;
45 * \brief Base class for platform implementation.
47 * This class represents the minimum set of functionality for a platform
50 * In addition to implementing Platform class, main entry point must be
55 * If the platform uses standard posix-style main() for application entry
59 * API-specific platform interfaces (glu::Platform and eglu::Platform)
    [all...]
tcuPlatform.cpp 21 * \brief Platform (OS) specific services.
29 Platform::Platform (void)
33 Platform::~Platform (void)
37 bool Platform::processEvents (void)
42 const glu::Platform& Platform::getGLPlatform (void) const
47 const eglu::Platform& Platform::getEGLPlatform (void) cons
    [all...]
tcuApp.hpp 25 * Platform port (see tcuPlatform.hpp) must create App and issue calls to
38 class Platform;
50 * Test application encapsulates full test execution logic. Platform port
66 App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine);
77 Platform& m_platform;
  /external/deqp/framework/platform/null/
tcuNullPlatform.hpp 23 * \brief Null GL platform.
35 class Platform : public tcu::Platform, private glu::Platform
38 Platform (void);
39 virtual ~Platform (void);
41 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
tcuNullPlatform.cpp 21 * \brief Null GL platform.
46 Platform::Platform (void)
51 Platform::~Platform (void)
58 tcu::Platform* createPlatform (void)
60 return new tcu::null::Platform();
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.hpp 23 * \brief Android EGL platform.
37 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
40 Platform (void);
41 virtual ~Platform (void);
45 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
46 virtual const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this);
    [all...]
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.hpp 23 * \brief Raspberry PI platform.
38 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
41 Platform (void);
42 virtual ~Platform (void);
44 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&> (*this); }
45 virtual const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
Platform.cpp 32 #include "public/platform/Platform.h"
36 static Platform* s_platform = 0;
38 void Platform::initialize(Platform* platform)
40 s_platform = platform;
43 void Platform::shutdown()
48 Platform* Platform::current(
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32Platform.hpp 23 * \brief Win32 platform port.
40 class Win32Platform : public tcu::Platform, private glu::Platform
42 , private eglu::Platform
51 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
54 const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this); }
tcuWin32GLES3Platform.hpp 23 * \brief Win32 GLES3 wrapper platform.
37 class Win32GLES3Platform : public tcu::Platform
  /external/deqp/framework/platform/X11/
tcuX11EglPlatform.hpp 23 * \brief X11Egl Platform.
38 class Platform : public eglu::Platform
41 Platform (EventState& eventState);
42 ~Platform (void) {}
tcuX11Platform.hpp 23 * \brief X11 Platform.
28 tcu::Platform* createPlatform (void);
tcuX11Platform.cpp 21 * \brief X11 Platform.
43 class X11GLPlatform : public glu::Platform
52 class X11Platform : public tcu::Platform
57 const glu::Platform& getGLPlatform (void) const { return m_glPlatform; }
60 const eglu::Platform& getEGLPlatform (void) const { return m_eglPlatform; }
66 x11::egl::Platform m_eglPlatform;
87 tcu::Platform* createPlatform (void)
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.hpp 23 * \brief OS X platform.
33 class OSXPlatform : public tcu::Platform, private glu::Platform
39 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
  /external/deqp/framework/egl/
egluPlatform.cpp 21 * \brief EGL platform interface.
31 Platform::Platform (void)
35 Platform::~Platform (void)
39 tcu::FunctionLibrary* Platform::createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine&) const
egluPlatform.hpp 23 * \brief EGL platform interface.
40 * \brief EGL platform interface
42 * EGL platform interface provides mechanism to implement platform-specific
45 * A single platform can support multiple native object types. This is
58 * glu::Platform implementation.
60 * EGL platform implementation is required by EGL tests. OpenGL (ES) and
61 * OpenCL tests can benefit from, but do not require EGL platform
64 class Platform
67 Platform (void)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
SharedTimer.cpp 27 #include "platform/SharedTimer.h"
29 #include "public/platform/Platform.h"
35 blink::Platform::current()->setSharedTimerFiredFunction(f);
40 blink::Platform::current()->setSharedTimerFireInterval(fireTime);
45 blink::Platform::current()->stopSharedTimer();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
NavigatorCPU.cpp 8 #include "public/platform/Platform.h"
14 return blink::Platform::current()->numberOfProcessors();
  /external/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/
Platform.java 22 class Platform {
  /external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
Platform.java 26 final class Platform {
35 private Platform() {}
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalProfilers.cpp 34 #include "public/platform/Platform.h"
43 blink::Platform::current()->startHeapProfiling(prefix);
48 blink::Platform::current()->stopHeapProfiling();
53 blink::Platform::current()->dumpHeapProfiling(reason);
58 String text = blink::Platform::current()->getHeapProfile();
UnitTestHelpers.cpp 29 #include "public/platform/Platform.h"
30 #include "public/platform/WebThread.h"
40 blink::Platform::current()->currentThread()->exitRunLoop();
46 blink::Platform::current()->currentThread()->postTask(new QuitTask);
47 blink::Platform::current()->currentThread()->enterRunLoop();

Completed in 3874 milliseconds

1 2 3 4 5 6 7 8 91011>>