HomeSort by: relevance | last modified time | path
    Searched defs:Object (Results 1 - 10 of 10) sorted by relevancy

  /xsrc/external/mit/libXt/dist/include/X11/
Object.h 53 typedef struct _ObjectRec *Object;
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/
addrobject.h 30 * @brief Contains the Object base class definition.
58 class Object
61 Object();
62 Object(const Client* pClient);
63 virtual ~Object();
87 Object(const Object& a);
90 Object& operator=(const Object& a);
addrobject.cpp 30 * @brief Contains the Object base class implementation.
42 * Object::Object
45 * Constructor for the Object class.
48 Object::Object()
58 * Object::Object
61 * Constructor for the Object class.
64 Object::Object(const Client* pClient
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/core/
addrobject.h 30 * @brief Contains the Object base class definition.
58 class Object
61 Object();
62 Object(const Client* pClient);
63 virtual ~Object();
87 Object(const Object& a);
90 Object& operator=(const Object& a);
addrobject.cpp 30 * @brief Contains the Object base class implementation.
42 * Object::Object
45 * Constructor for the Object class.
48 Object::Object()
58 * Object::Object
61 * Constructor for the Object class.
64 Object::Object(const Client* pClient
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/core/
addrobject.cpp 30 * @brief Contains the Object base class implementation.
42 * Object::Object
45 * Constructor for the Object class.
48 Object::Object()
58 * Object::Object
61 * Constructor for the Object class.
64 Object::Object(const Client* pClient
    [all...]
addrobject.h 30 * @brief Contains the Object base class definition.
58 class Object
61 Object();
62 Object(const Client* pClient);
63 virtual ~Object();
87 Object(const Object& a);
90 Object& operator=(const Object& a);
  /xsrc/external/mit/MesaLib/dist/src/amd/registers/
regdb.py 35 class UnionFind(object):
85 class Object(object):
101 return 'Object(' + ', '.join(
108 return [Object.from_json(v) for v in json]
110 obj = Object()
115 v = Object.from_json(v)
123 if isinstance(obj, Object):
124 return dict((k, Object.to_json(v)) for k, v in obj.__dict__.items())
126 return dict((k, Object.to_json(v)) for k, v in obj.items()
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/demos/
gloss.c 37 #define OBJECT 2
48 static GLuint Object = 0;
103 glCallList(Object);
119 glCallList(Object);
182 else if (entry==OBJECT) {
183 if (Object == TeapotObj)
184 Object = CylinderObj;
186 Object = TeapotObj;
295 /* Cylinder object */
359 Object = CylinderObj
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/glsl/
shtest.c 90 static shape Object = SPHERE;
266 if (Object == SPHERE) {
269 else if (Object == CUBE) {
324 Object = (Object + 1) % NUM_SHAPES;
646 printf(" o Change object\n");
647 printf(" arrows Rotate object\n");

Completed in 9 milliseconds