Lines Matching full:selectors
32 * 2) a list of range selectors
34 * Animated properties yield new values to be applied to the text, while range selectors
37 * The best way to think of range selectors is in terms of coverage: they combine to generate
77 std::vector<sk_sp<RangeSelector>> selectors; in Make() local
82 selectors.reserve(jselectors->size()); in Make()
85 selectors.push_back(std::move(sel)); in Make()
90 selectors.reserve(1); in Make()
91 selectors.push_back(std::move(sel)); in Make()
96 new TextAnimator(std::move(selectors), *jprops, abuilder, acontainer)); in Make()
100 // No selectors -> full coverage. in modulateProps()
181 TextAnimator::TextAnimator(std::vector<sk_sp<RangeSelector>>&& selectors, in TextAnimator() argument
185 : fSelectors(std::move(selectors)) in TextAnimator()