HomeSort by relevance Sort by last modified time
    Searched defs:Surface (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu4c/samples/layout/
Surface.h 5 class Surface
8 Surface(/*what?*/);
  /external/chromium_org/gpu/gles2_conform_support/egl/
surface.cc 5 #include "gpu/gles2_conform_support/egl/surface.h"
9 Surface::Surface(EGLNativeWindowType win) : window_(win) {
12 Surface::~Surface() {
surface.h 14 class Surface {
16 explicit Surface(EGLNativeWindowType win);
17 ~Surface();
24 DISALLOW_COPY_AND_ASSIGN(Surface);
  /cts/tests/tests/view/src/android/view/cts/
Surface_OutOfResourcesExceptionTest.java 20 import android.view.Surface;
21 import android.view.Surface.OutOfResourcesException;
27 new Surface.OutOfResourcesException();
28 new Surface.OutOfResourcesException(NAME);
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.h 7 // Surface.h: Defines the egl::Surface class, representing a drawing surface
34 class Surface
37 Surface(Display *display, const egl::Config *config, HWND window, EGLint postSubBufferSupported);
38 Surface(Display *display, const egl::Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget);
40 ~Surface();
68 DISALLOW_COPY_AND_ASSIGN(Surface);
82 const HWND mWindow; // Window that the surface is created for.
84 const egl::Config *mConfig; // EGL config surface was created wit
    [all...]
Surface.cpp 7 // Surface.cpp: Implements the egl::Surface class, representing a drawing surface
13 #include "libEGL/Surface.h"
26 Surface::Surface(Display *display, const Config *config, HWND window, EGLint postSubBufferSupported)
47 Surface::Surface(Display *display, const Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType)
64 Surface::~Surface()
    [all...]
  /frameworks/native/include/gui/
Surface.h 43 * Surface. Surface then forwards the buffers through Binder IPC
47 class Surface
48 : public ANativeObjectBase<ANativeWindow, Surface, RefBase>
53 * creates a Surface from the given IGraphicBufferProducer (which concrete
56 * Surface is mainly state-less while it's disconnected, it can be
60 * However, once a Surface is connected, it'll prevent other Surfaces
64 * the controlledByApp flag indicates that this Surface (producer) is
67 Surface(const sp<IGraphicBufferProducer>& bufferProducer, bool controlledByApp = false);
70 * Surface was created with. Usually it's an error to use th
    [all...]
  /frameworks/native/libs/gui/
Surface.cpp 17 #define LOG_TAG "Surface"
33 #include <gui/Surface.h>
39 Surface::Surface(
79 Surface::~Surface() {
81 Surface::disconnect(NATIVE_WINDOW_API_CPU);
85 sp<IGraphicBufferProducer> Surface::getIGraphicBufferProducer() const {
89 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
90 Surface* c = getSelf(window)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Surface.java 16 * This class represents a surface described by knots, weights and control points.
21 public class Surface extends Mesh {
23 private SplineType type; //the type of the surface
25 private List<Float>[] knots; //knots of the surface
32 * Constructor. Constructs required surface.
34 * @param nurbKnots knots of the surface
40 private Surface(List<List<Vector4f>> controlPoints, List<Float>[] nurbKnots,
59 * This method creates a NURBS surface.
61 * @param nurbKnots knots of the surface
66 * @return an instance of NURBS surface
    [all...]
  /frameworks/base/core/java/android/view/
Surface.java 32 public class Surface implements Parcelable {
33 private static final String TAG = "Surface";
49 public static final Parcelable.Creator<Surface> CREATOR =
50 new Parcelable.Creator<Surface>() {
52 public Surface createFromParcel(Parcel source) {
54 Surface s = new Surface();
58 Log.e(TAG, "Exception creating surface from parcel", e);
64 public Surface[] newArray(int size) {
65 return new Surface[size]
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 153 milliseconds

1 2