Lines Matching full:selectors
34 * 2) a list of range selectors
36 * Animated properties yield new values to be applied to the text, while range selectors
39 * The best way to think of range selectors is in terms of coverage: they combine to generate
79 std::vector<sk_sp<RangeSelector>> selectors; in Make() local
84 selectors.reserve(jselectors->size()); in Make()
87 selectors.push_back(std::move(sel)); in Make()
92 selectors.reserve(1); in Make()
93 selectors.push_back(std::move(sel)); in Make()
98 new TextAnimator(std::move(selectors), *jprops, abuilder, acontainer)); in Make()
102 // No selectors -> full coverage. in modulateProps()
183 TextAnimator::TextAnimator(std::vector<sk_sp<RangeSelector>>&& selectors, in TextAnimator() argument
187 : fSelectors(std::move(selectors)) in TextAnimator()