Home | History | Annotate | Download | only in gfx

Lines Matching refs:BreakList

27 class BreakList {
34 BreakList();
35 explicit BreakList(T value);
55 Range GetRange(const typename BreakList<T>::const_iterator& i) const;
72 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
76 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
80 void BreakList<T>::SetValue(T value) {
86 void BreakList<T>::ApplyValue(T value, const Range& range) {
111 void BreakList<T>::SetMax(size_t max) {
123 typename std::vector<std::pair<size_t, T> >::iterator BreakList<T>::GetBreak(
132 BreakList<T>::GetBreak(size_t position) const {
139 Range BreakList<T>::GetRange(
140 const typename BreakList<T>::const_iterator& i) const {
141 const typename BreakList<T>::const_iterator next = i + 1;
146 bool BreakList<T>::EqualsValueForTesting(T value) const {
151 bool BreakList<T>::EqualsForTesting(const std::vector<Break>& breaks) const {
162 void BreakList<T>::CheckBreaks() {