Searched refs:caseArray (Results 1 – 1 of 1) sorted by relevance
177 SkTArray<DSLCase> caseArray; in StaticSwitch() local178 caseArray.reserve_back(sizeof...(cases)); in StaticSwitch()179 (caseArray.push_back(std::move(cases)), ...); in StaticSwitch()180 return PossibleStaticSwitch(std::move(value), std::move(caseArray)); in StaticSwitch()194 SkTArray<DSLCase> caseArray; in Switch() local195 caseArray.reserve_back(sizeof...(cases)); in Switch()196 (caseArray.push_back(std::move(cases)), ...); in Switch()197 return PossibleSwitch(std::move(value), std::move(caseArray)); in Switch()