Home
last modified time | relevance | path

Searched refs:isTooDeeplyNested (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/sksl/ir/
DSkSLType.h487 bool isTooDeeplyNested() const;
533 bool isTooDeeplyNested(int limit) const;
DSkSLType.cpp789 bool Type::isTooDeeplyNested(int limit) const { in isTooDeeplyNested() function in SkSL::Type
796 if (f.fType->isTooDeeplyNested(limit - 1)) { in isTooDeeplyNested()
805 bool Type::isTooDeeplyNested() const { in isTooDeeplyNested() function in SkSL::Type
806 return this->isTooDeeplyNested(kMaxStructDepth); in isTooDeeplyNested()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp282 if (result->isTooDeeplyNested()) { in Struct()