Searched refs:EV (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.h112 void genPointerTypeExportVariable(const RSExportVar *EV);
113 void genMatrixTypeExportVariable(const RSExportVar *EV);
114 void genRecordTypeExportVariable(const RSExportVar *EV);
116 void genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar* EV);
117 void genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar* EV);
118 void genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar* EV);
119 void genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV);
H A Dslang_rs_reflection_cpp.cpp361 const RSExportVar *EV = *I; local
362 if (!EV->getInit().isUninit()) {
363 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
365 genZeroInitExportVariable(EV->getName());
503 const RSExportVar *EV = *I; local
504 const RSExportType *ET = EV->getType();
508 genGetterAndSetter(static_cast<const RSExportPrimitiveType *>(ET), EV); local
513 genPointerTypeExportVariable(EV);
517 genGetterAndSetter(static_cast<const RSExportVectorType *>(ET), EV); local
526 EV); local
530 genGetterAndSetter(static_cast<const RSExportRecordType *>(ET), EV); local
538 genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar *EV) argument
572 genPointerTypeExportVariable(const RSExportVar *EV) argument
606 genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar *EV) argument
638 genMatrixTypeExportVariable(const RSExportVar *EV) argument
642 genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar *EV) argument
647 genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV) argument
[all...]
H A Dslang_rs_reflection.cpp394 const RSExportVar *EV = *I; local
395 if (!EV->getInit().isUninit()) {
396 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
397 } else if (EV->getArraySize()) {
399 mOut.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
400 << GetTypeName(EV->getType(), false) << "["
401 << EV->getArraySize() << "];\n";
402 size_t NumInits = EV
578 genExportVariable(const RSExportVar *EV) argument
936 genPrimitiveTypeExportVariable(const RSExportVar *EV) argument
1042 genPointerTypeExportVariable(const RSExportVar *EV) argument
1076 genVectorTypeExportVariable(const RSExportVar *EV) argument
1089 genMatrixTypeExportVariable(const RSExportVar *EV) argument
1119 genConstantArrayTypeExportVariable(const RSExportVar *EV) argument
1133 genRecordTypeExportVariable(const RSExportVar *EV) argument
1152 genSetExportVariable(const std::string &TypeName, const RSExportVar *EV) argument
[all...]
H A Dslang_rs_reflection.h182 void genExportVariable(const RSExportVar *EV);
183 void genPrimitiveTypeExportVariable(const RSExportVar *EV);
184 void genPointerTypeExportVariable(const RSExportVar *EV);
185 void genVectorTypeExportVariable(const RSExportVar *EV);
186 void genMatrixTypeExportVariable(const RSExportVar *EV);
187 void genConstantArrayTypeExportVariable(const RSExportVar *EV);
188 void genRecordTypeExportVariable(const RSExportVar *EV);
191 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV);
H A Dslang_rs_context.cpp79 RSExportVar *EV = new RSExportVar(this, VD, ET);
80 if (EV == NULL)
83 mExportVars.push_back(EV);
H A Dslang_rs_backend.cpp197 const RSExportVar *EV = *I; local
198 const RSExportType *ET = EV->getType();
203 llvm::MDString::get(mLLVMContext, EV->getName().c_str()));
245 EV->getType()->getName().c_str()));

Completed in 151 milliseconds