Lines Matching defs:selectors
28 * 2) a list of range selectors
30 * Animated properties yield new values to be applied to the text, while range selectors
33 * The best way to think of range selectors is in terms of coverage: they combine to generate
73 std::vector<sk_sp<RangeSelector>> selectors;
78 selectors.reserve(jselectors->size());
81 selectors.push_back(std::move(sel));
86 selectors.reserve(1);
87 selectors.push_back(std::move(sel));
92 new TextAnimator(std::move(selectors), *jprops, abuilder, acontainer));
96 // No selectors -> full coverage.
175 TextAnimator::TextAnimator(std::vector<sk_sp<RangeSelector>>&& selectors,
179 : fSelectors(std::move(selectors))