Searched defs:EV (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp204 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()));
H A Dslang_rs_reflection_cpp.cpp337 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 Dslang_rs_reflection.cpp363 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...]

Completed in 123 milliseconds