Home
last modified time | relevance | path

Searched refs:fProgramElements (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/sksl/
DSkSLIRGenerator.cpp691 fProgramElements->push_back(std::move(invokeDef)); in applyInvocationIDWorkaround()
1024 fProgramElements->push_back(std::make_unique<FunctionPrototype>(f.fOffset, decl, in convertFunction()
1049 fProgramElements->push_back(std::move(result)); in convertFunction()
1166 fProgramElements->push_back( in convertGlobalVarDeclarations()
1170 fProgramElements->push_back(std::make_unique<GlobalVarDeclaration>(std::move(stmt))); in convertGlobalVarDeclarations()
1219 fProgramElements->push_back(std::make_unique<Enum>(e.fOffset, e.getString(), fSymbolTable, in convertEnum()
1658 for (const std::unique_ptr<ProgramElement>& e : *fProgramElements) { in convertTypeField()
1858 SkASSERT(fProgramElements); in findAndDeclareBuiltinVariables()
1859 for (auto& e : *fProgramElements) { in findAndDeclareBuiltinVariables()
1888 fProgramElements = elements; in start()
[all …]
DSkSLIRGenerator.h270 std::vector<std::unique_ptr<ProgramElement>>* fProgramElements = nullptr; variable
/external/skia/src/sksl/dsl/priv/
DDSLWriter.h72 return Instance().fProgramElements; in ProgramElements()
228 std::vector<std::unique_ptr<SkSL::ProgramElement>> fProgramElements; variable
DDSLWriter.cpp57 &fProgramElements, &fSharedElements); in DSLWriter()
63 fProgramElements.clear(); in ~DSLWriter()
66 SkASSERT(fProgramElements.empty()); in ~DSLWriter()
/external/skqp/src/sksl/
DSkSLIRGenerator.cpp584 fProgramElements->push_back(std::unique_ptr<ProgramElement>( in applyInvocationIDWorkaround()
811 fProgramElements->push_back(std::unique_ptr<FunctionDefinition>( in convertFunction()
962 fProgramElements->push_back(std::unique_ptr<ProgramElement>(new Enum(e.fOffset, e.fTypeName, in convertEnum()
2004 for (const auto& e : *fProgramElements) { in convertTypeField()
2073 for (const auto& e : *fProgramElements) { in convertAppend()
2261 fProgramElements = out; in convertProgram()
2275 fProgramElements->push_back(std::move(s)); in convertProgram()
2291 fProgramElements->push_back(std::move(f)); in convertProgram()
2299 fProgramElements->push_back(std::move(i)); in convertProgram()
2306 fProgramElements->push_back(std::move(e)); in convertProgram()
[all …]
DSkSLIRGenerator.h186 std::vector<std::unique_ptr<ProgramElement>>* fProgramElements; variable