Home | History | Annotate | Download | only in executor

Lines Matching refs:Item

61 class Item;
92 const Item& getItem (int ndx) const { return *m_items[ndx]; }
93 Item& getItem (int ndx) { return *m_items[ndx]; }
99 std::vector<Item*> m_items;
106 T* item = new T();
107 m_items.push_back(static_cast<ri::Item*>(item));
108 return item;
134 // Result item type.
192 class Item
196 virtual ~Item (void) {}
201 Item (Type type) : m_type(type) {}
204 Item (const Item& other);
205 Item& operator= (const Item& other);
210 class Result : public Item
213 Result (void) : Item(TYPE_RESULT), statusCode(TESTSTATUSCODE_LAST) {}
220 class Text : public Item
223 Text (void) : Item(TYPE_TEXT) {}
229 class Number : public Item
232 Number (void) : Item(TYPE_NUMBER) {}
242 class Image : public Item
261 Image (void) : Item(TYPE_IMAGE), width(0), height(0), format(FORMAT_LAST), compression(COMPRESSION_LAST) {}
273 class ImageSet : public Item
276 ImageSet (void) : Item(TYPE_IMAGESET) {}
284 class ShaderSource : public Item
287 ShaderSource (void) : Item(TYPE_SHADERSOURCE) {}
293 class SpirVSource : public Item
296 SpirVSource (void) : Item(TYPE_SPIRVSOURCE) {}
302 class InfoLog : public Item
305 InfoLog (void) : Item(TYPE_INFOLOG) {}
311 class Shader : public Item
326 Shader (void) : Item(TYPE_SHADER), shaderType(SHADERTYPE_LAST), compileStatus(false) {}
335 class ShaderProgram : public Item
338 ShaderProgram (void) : Item(TYPE_SHADERPROGRAM), linkStatus(false) {}
346 class EglConfig : public Item
385 : Item (TYPE_EGLCONFIG)
413 class EglConfigSet : public Item
416 EglConfigSet (void) : Item(TYPE_EGLCONFIGSET) {}
424 class Section : public Item
427 Section (void) : Item(TYPE_SECTION) {}
435 class KernelSource : public Item
438 KernelSource (void) : Item(TYPE_KERNELSOURCE) {}
444 class CompileInfo : public Item
447 CompileInfo (void) : Item(TYPE_COMPILEINFO), compileStatus(false) {}
456 class ValueInfo : public Item
467 ValueInfo (void) : Item(TYPE_VALUEINFO), tag(VALUETAG_LAST) {}
476 class SampleInfo : public Item
479 SampleInfo (void) : Item(TYPE_SAMPLEINFO) {}
485 class SampleValue : public Item
488 SampleValue (void) : Item(TYPE_SAMPLEVALUE) {}
494 class Sample : public Item
497 Sample (void) : Item(TYPE_SAMPLE) {}
503 class SampleList : public Item
506 SampleList (void) : Item(TYPE_SAMPLELIST) {}