Lines Matching defs:Element
511 struct RenderScriptRuntime::Element { struct in RenderScriptRuntime
513 enum DataKind {
526 enum DataType {
564 std::vector<Element> children; // Child Element fields for structs
566 element_ptr; // Pointer to the RS Element of the Type
568 type; // Type of each data pointer stored by the allocation
570 type_kind; // Defines pixel type if Allocation is created from an image
572 type_vec_size; // Vector size of each data point, e.g '4' for uchar4
573 empirical_type<uint32_t> field_count; // Number of Subelements
574 empirical_type<uint32_t> datum_size; // Size of a single Element with padding
575 empirical_type<uint32_t> padding; // Number of padding bytes
577 array_size; // Number of items in array, only needed for structs
578 ConstString type_name; // Name of type, only needed for structs
584 bool ShouldRefresh() const { in ShouldRefresh()