Searched refs:ConstructorCompoundCast (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/sksl/ir/ |
D | SkSLConstructorCompoundCast.h | 25 class ConstructorCompoundCast final : public SingleArgumentConstructor { 29 ConstructorCompoundCast(int offset, const Type& type, std::unique_ptr<Expression> arg) in ConstructorCompoundCast() function 43 return std::make_unique<ConstructorCompoundCast>(fOffset, this->type(), in clone()
|
D | SkSLConstructorCompoundCast.cpp | 67 std::unique_ptr<Expression> ConstructorCompoundCast::Make(const Context& context, in Make() 92 return std::make_unique<ConstructorCompoundCast>(offset, type, std::move(arg)); in Make()
|
D | SkSLConstructor.cpp | 51 return ConstructorCompoundCast::Make(context, offset, type, std::move(argument)); in convert_compound_constructor() 64 std::unique_ptr<Expression> typecast = ConstructorCompoundCast::Make( in convert_compound_constructor()
|
D | SkSLType.cpp | 252 return ConstructorCompoundCast::Make(context, offset, *this, std::move(expr)); in coerceExpression()
|
/external/skia/src/sksl/ |
D | SkSLInliner.cpp | 327 const ConstructorCompoundCast& ctor = expression.as<ConstructorCompoundCast>(); in inlineExpression() 328 return ConstructorCompoundCast::Make(*fContext, offset, in inlineExpression()
|
D | SkSLDehydrator.cpp | 306 this->writeExpressionSpan(e->as<ConstructorCompoundCast>().argumentSpan()); in write()
|
D | SkSLRehydrator.cpp | 504 return ConstructorCompoundCast::Make(fContext,/*offset=*/-1, *type, std::move(args[0])); in expression()
|
/external/skia/src/sksl/codegen/ |
D | SkSLSPIRVCodeGenerator.h | 308 SpvId writeConstructorCompoundCast(const ConstructorCompoundCast& c, OutputStream& out);
|
D | SkSLSPIRVCodeGenerator.cpp | 731 return this->writeConstructorCompoundCast(expr.as<ConstructorCompoundCast>(), out); in writeExpression() 1690 SpvId SPIRVCodeGenerator::writeConstructorCompoundCast(const ConstructorCompoundCast& c, in writeConstructorCompoundCast()
|