Lines Matching refs:RSC

24 using namespace RSC;
26 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) { in getSubElement()
75 #define CREATE_USER(N, T) android::RSC::sp<const Element> Element::N(android::RSC::sp<RS> rs) { \
102 #define CREATE_PIXEL(N, T, K) android::RSC::sp<const Element> Element::N(android::RSC::sp<RS> rs) {…
117 #define CREATE_VECTOR(N, T) android::RSC::sp<const Element> Element::N##_2(android::RSC::sp<RS> rs)…
123 android::RSC::sp<const Element> Element::N##_3(android::RSC::sp<RS> rs) { \
129 android::RSC::sp<const Element> Element::N##_4(android::RSC::sp<RS> rs) { \
176 Element::Element(void *id, android::RSC::sp<RS> rs, in Element()
177 android::RSC::sp<const Element> * elements, in Element()
188 …mElements = (android::RSC::sp<const Element> *)calloc(mElementsCount, sizeof(android::RSC::sp<Elem… in Element()
194 memcpy(mElements, elements, mElementsCount * sizeof(android::RSC::sp<Element>)); in Element()
269 Element::Element(void *id, android::RSC::sp<RS> rs, in Element()
314 android::RSC::sp<const Element> Element::createUser(android::RSC::sp<RS> rs, RsDataType dt) { in createUser()
319 android::RSC::sp<const Element> Element::createVector(android::RSC::sp<RS> rs, RsDataType dt, uint3… in createVector()
328 android::RSC::sp<const Element> Element::createPixel(android::RSC::sp<RS> rs, RsDataType dt, RsData… in createPixel()
386 bool Element::isCompatible(android::RSC::sp<const Element>e) const { in isCompatible()
402 Element::Builder::Builder(android::RSC::sp<RS> rs) { in Builder()
408 …mElements = (android::RSC::sp<const Element> *)calloc(mElementsVecSize, sizeof(android::RSC::sp<El… in Builder()
425 void Element::Builder::add(android::RSC::sp<const Element>e, const char * name, uint32_t arraySize)… in add()
449 …android::RSC::sp<const Element> * newElements = (android::RSC::sp<const Element> *)calloc(mElement… in add()
454 memcpy(newElements, mElements, mElementsCount * sizeof(android::RSC::sp<Element>)); in add()
482 android::RSC::sp<const Element> Element::Builder::create() { in create()