Home | History | Annotate | Download | only in style

Lines Matching refs:pattern

134         // We need to fill in the remaining values with the pattern specified.
135 for (FillLayer* pattern = this; curr; curr = curr->next()) {
136 curr->m_xPosition = pattern->m_xPosition;
137 pattern = pattern->next();
138 if (pattern == curr || !pattern)
139 pattern = this;
145 // We need to fill in the remaining values with the pattern specified.
146 for (FillLayer* pattern = this; curr; curr = curr->next()) {
147 curr->m_yPosition = pattern->m_yPosition;
148 pattern = pattern->next();
149 if (pattern == curr || !pattern)
150 pattern = this;
156 // We need to fill in the remaining values with the pattern specified.
157 for (FillLayer* pattern = this; curr; curr = curr->next()) {
158 curr->m_attachment = pattern->m_attachment;
159 pattern = pattern->next();
160 if (pattern == curr || !pattern)
161 pattern = this;
167 // We need to fill in the remaining values with the pattern specified.
168 for (FillLayer* pattern = this; curr; curr = curr->next()) {
169 curr->m_clip = pattern->m_clip;
170 pattern = pattern->next();
171 if (pattern == curr || !pattern)
172 pattern = this;
178 // We need to fill in the remaining values with the pattern specified.
179 for (FillLayer* pattern = this; curr; curr = curr->next()) {
180 curr->m_composite = pattern->m_composite;
181 pattern = pattern->next();
182 if (pattern == curr || !pattern)
183 pattern = this;
189 // We need to fill in the remaining values with the pattern specified.
190 for (FillLayer* pattern = this; curr; curr = curr->next()) {
191 curr->m_origin = pattern->m_origin;
192 pattern = pattern->next();
193 if (pattern == curr || !pattern)
194 pattern = this;
200 // We need to fill in the remaining values with the pattern specified.
201 for (FillLayer* pattern = this; curr; curr = curr->next()) {
202 curr->m_repeatX = pattern->m_repeatX;
203 pattern = pattern->next();
204 if (pattern == curr || !pattern)
205 pattern = this;
211 // We need to fill in the remaining values with the pattern specified.
212 for (FillLayer* pattern = this; curr; curr = curr->next()) {
213 curr->m_repeatY = pattern->m_repeatY;
214 pattern = pattern->next();
215 if (pattern == curr || !pattern)
216 pattern = this;
222 // We need to fill in the remaining values with the pattern specified.
223 for (FillLayer* pattern = this; curr; curr = curr->next()) {
224 curr->m_sizeType = pattern->m_sizeType;
225 curr->m_sizeLength = pattern->m_sizeLength;
226 pattern = pattern->next();
227 if (pattern == curr || !pattern)
228 pattern = this;