Searched refs:EV (Results 1 - 6 of 6) sorted by relevance
/frameworks/compile/slang/ |
H A D | slang_rs_reflection_cpp.h | 86 void genExportVariable(const RSExportVar *EV); 88 void genPrimitiveTypeExportVariable(const RSExportVar *EV); 89 void genPointerTypeExportVariable(const RSExportVar *EV); 90 void genVectorTypeExportVariable(const RSExportVar *EV); 91 void genMatrixTypeExportVariable(const RSExportVar *EV); 92 void genConstantArrayTypeExportVariable(const RSExportVar *EV); 93 void genRecordTypeExportVariable(const RSExportVar *EV);
|
H A D | slang_rs_reflection_cpp.cpp | 337 const RSExportVar *EV = *I; local 338 if (!EV->getInit().isUninit()) { 339 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit()); 341 genZeroInitExportVariable(EV->getName()); 472 void RSReflectionCpp::genExportVariable(const RSExportVar *EV) { argument 473 const RSExportType *ET = EV->getType(); 477 genPrimitiveTypeExportVariable(EV); 481 genPointerTypeExportVariable(EV); 507 genPrimitiveTypeExportVariable(const RSExportVar *EV) argument 532 genPointerTypeExportVariable(const RSExportVar *EV) argument 567 genVectorTypeExportVariable(const RSExportVar *EV) argument 605 genMatrixTypeExportVariable(const RSExportVar *EV) argument 609 genConstantArrayTypeExportVariable( const RSExportVar *EV) argument 614 genRecordTypeExportVariable(const RSExportVar *EV) argument [all...] |
H A D | slang_rs_reflection.h | 245 void genExportVariable(Context &C, const RSExportVar *EV); 246 void genPrimitiveTypeExportVariable(Context &C, const RSExportVar *EV); 247 void genPointerTypeExportVariable(Context &C, const RSExportVar *EV); 248 void genVectorTypeExportVariable(Context &C, const RSExportVar *EV); 249 void genMatrixTypeExportVariable(Context &C, const RSExportVar *EV); 250 void genConstantArrayTypeExportVariable(Context &C, const RSExportVar *EV); 251 void genRecordTypeExportVariable(Context &C, const RSExportVar *EV); 257 const RSExportVar *EV);
|
H A D | slang_rs_reflection.cpp | 363 const RSExportVar *EV = *I; local 364 if (!EV->getInit().isUninit()) { 365 genInitExportVariable(C, EV->getType(), EV->getName(), EV->getInit()); 366 } else if (EV->getArraySize()) { 368 C.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new " 369 << GetTypeName(EV->getType(), false) << "[" 370 << EV->getArraySize() << "];" << std::endl; 371 size_t NumInits = EV 561 genExportVariable(Context &C, const RSExportVar *EV) argument 893 genPrimitiveTypeExportVariable( Context &C, const RSExportVar *EV) argument 963 genPointerTypeExportVariable(Context &C, const RSExportVar *EV) argument 1003 genVectorTypeExportVariable(Context &C, const RSExportVar *EV) argument 1018 genMatrixTypeExportVariable(Context &C, const RSExportVar *EV) argument 1053 genConstantArrayTypeExportVariable( Context &C, const RSExportVar *EV) argument 1070 genRecordTypeExportVariable(Context &C, const RSExportVar *EV) argument 1093 genSetExportVariable(Context &C, const std::string &TypeName, const RSExportVar *EV) argument [all...] |
H A D | slang_rs_context.cpp | 96 RSExportVar *EV = new RSExportVar(this, VD, ET); 97 if (EV == NULL) 100 mExportVars.push_back(EV);
|
H A D | slang_rs_backend.cpp | 204 const RSExportVar *EV = *I; local 205 const RSExportType *ET = EV->getType(); 210 llvm::MDString::get(mLLVMContext, EV->getName().c_str())); 245 EV->getType()->getName().c_str()));
|
Completed in 1814 milliseconds